/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-primary: #F7F3EA;       /* Soft Cream */
  --text-main: #1F2933;        /* Deep Charcoal */
  --accent-green: #3F7D4A;     /* Land Green */
  --accent-brown: #8B5E3C;     /* Earth Brown */
  --accent-blue: #1F4E79;      /* Trust Blue */
  --accent-beige: #D8C3A5;     /* Sand Beige */
  --white: #FFFFFF;
  --light-grey: #E8E8E8;
  --dark-grey: #1F2933;
  --shadow-light: 0 4px 20px rgba(31, 41, 51, 0.05);
  --shadow-medium: 0 10px 30px rgba(31, 41, 51, 0.1);
  --shadow-premium: 0 20px 40px rgba(31, 41, 51, 0.15);
  
  /* Fonts */
  --font-heading: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout constraints */
  --max-width: 1200px;
  --nav-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(15px, 1.1vw, 16px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.light-bg {
  background-color: var(--white);
}

.text-center {
  text-align: center;
}

.mb-50 {
  margin-bottom: clamp(30px, 5vw, 50px);
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.gap-20 { gap: 20px; }

/* Grid systems */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.align-center {
  align-items: center;
}

.align-stretch {
  align-items: stretch;
}

/* Component Cards */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  border: 1px solid rgba(31, 41, 51, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.green-text { color: var(--accent-green); }
.brown-text { color: var(--accent-brown); }
.blue-text { color: var(--accent-blue); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(31, 41, 51, 0.7);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(31, 41, 51, 0.85);
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 46px;
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(63, 125, 74, 0.2);
}

.btn-primary:hover {
  background-color: #33653b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 125, 74, 0.3);
}

.btn-secondary {
  background-color: var(--accent-brown);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(139, 94, 60, 0.2);
}

.btn-secondary:hover {
  background-color: #724c30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
}

.btn-outline {
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-full {
  width: 100%;
}

.icon-btn {
  gap: 10px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Responsive Image handling */
.responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rounded-corners {
  border-radius: 20px;
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background-color: rgba(247, 243, 234, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(31, 41, 51, 0.05);
}

/* Scrolled Nav styling */
.navbar.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-light);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  color: rgba(31, 41, 51, 0.8);
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1050;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-grey);
}

.drawer-logo {
  display: flex;
  flex-direction: column;
}

.drawer-close {
  font-size: 32px;
  cursor: pointer;
  color: var(--text-main);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-list {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.drawer-link:hover {
  color: var(--accent-green);
  padding-left: 8px;
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--light-grey);
}

.drawer-cta {
  width: 100%;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(31, 41, 51, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 243, 234, 0.96) 30%, rgba(247, 243, 234, 0.85) 60%, rgba(31, 41, 51, 0.4) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-left {
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(63, 125, 74, 0.1);
  color: var(--accent-green);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(63, 125, 74, 0.2);
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title-highlight {
  color: var(--accent-green);
  position: relative;
  display: inline-block;
}

.hero-brand {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-blue);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(31, 41, 51, 0.85);
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(31, 41, 51, 0.05);
}

.badge-score {
  font-weight: 700;
  color: var(--accent-brown);
}

.badge-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right Side panel */
.quick-links-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(31, 41, 51, 0.05);
}

.quick-links-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--accent-blue);
  border-bottom: 2px solid var(--bg-primary);
  padding-bottom: 12px;
}

.card-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: 10px;
  transition: background-color var(--transition-fast);
}

.card-link-item:hover {
  background-color: var(--bg-primary);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
}

.bg-green { background-color: var(--accent-green); }
.bg-brown { background-color: var(--accent-brown); }
.bg-blue { background-color: var(--accent-blue); }
.bg-sand { background-color: var(--accent-beige); }
.bg-grey { background-color: #8C96A0; }

.link-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.link-meta {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.6);
}

/* ==========================================================================
   ANTI-GRAVITY PARALLAX FLOATING EFFECTS
   ========================================================================== */
.anti-gravity-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.parallax-item {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(31,41,51,0.08);
  border: 1.5px solid rgba(63, 125, 74, 0.15);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  pointer-events: none;
  user-select: none;
  animation: float-up-down 6s ease-in-out infinite alternate;
}

.parallax-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

/* Floating Object Placements */
.float-pin     { top: 12%; left: 8%; animation-delay: 0.2s; }
.float-plot    { top: 22%; left: 55%; animation-delay: 0.8s; border-color: rgba(139, 94, 60, 0.2); }
.float-doc     { top: 48%; left: 4%; animation-delay: 1.4s; }
.float-house   { top: 15%; right: 12%; animation-delay: 2.2s; border-radius: 50%; padding: 12px; }
.float-route   { bottom: 15%; left: 10%; animation-delay: 0.5s; }
.float-key     { top: 58%; right: 45%; animation-delay: 1.9s; border-radius: 50%; padding: 12px; }
.float-price   { bottom: 22%; right: 8%; animation-delay: 2.8s; border-color: rgba(139, 94, 60, 0.2); }
.float-visit   { top: 38%; right: 40%; animation-delay: 3.1s; }
.float-compass { bottom: 35%; right: 45%; animation-delay: 1.1s; border-radius: 50%; padding: 12px; }
.float-grid    { top: 8%; left: 44%; animation-delay: 0.9s; }
.float-road    { bottom: 8%; left: 42%; animation-delay: 2.5s; }
.float-board   { bottom: 42%; left: 52%; animation-delay: 1.7s; }

/* Custom elements inside cards */
.visit-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* Keyframes animations */
@keyframes float-up-down {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-16px) rotate(1.5deg);
  }
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about .split-image {
  position: relative;
}

.stats-badge-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--accent-green);
}

.stats-icon {
  font-size: 24px;
  color: var(--accent-brown);
}

.stats-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.stats-sub {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.6);
}

.feature-bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 35px 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(63, 125, 74, 0.1);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bullet-check.blue-bg {
  background-color: rgba(31, 78, 121, 0.1);
  color: var(--accent-blue);
}

.stats-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--light-grey);
  padding-top: 24px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.6);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}

.service-card:hover {
  border-color: var(--accent-green);
}

.service-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.service-card-desc {
  font-size: 0.95rem;
  color: rgba(31, 41, 51, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-btn {
  margin-top: auto;
}

/* ==========================================================================
   PROPERTY TYPES SECTION
   ========================================================================== */
.property-type-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.property-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.property-type-card:hover .property-card-img {
  transform: scale(1.06);
}

.property-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--accent-blue);
}

.property-card-desc {
  font-size: 0.95rem;
  color: rgba(31, 41, 51, 0.75);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ==========================================================================
   SITE VISIT SECTION
   ========================================================================== */
.site-visits .split-image {
  position: relative;
}

.visit-overlay-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--accent-blue);
  max-width: 280px;
}

.visit-bold {
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 0.95rem;
}

.visit-sub {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.7);
  margin-top: 4px;
}

/* ==========================================================================
   DOCUMENTATION & GUIDANCE
   ========================================================================== */
.feature-small-card {
  background-color: var(--white);
  padding: 18px;
  border-radius: 12px;
  border-top: 3px solid var(--accent-brown);
  box-shadow: var(--shadow-light);
}

.small-card-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-brown);
  display: inline-block;
  margin-bottom: 8px;
}

.small-card-title {
  font-size: 1rem;
  margin-bottom: 6px;
}

.small-card-desc {
  font-size: 0.85rem;
  color: rgba(31, 41, 51, 0.65);
}

.legal-disclaimer {
  margin-top: 24px;
  padding: 12px 18px;
  border-left: 3px solid var(--accent-blue);
  background-color: rgba(31, 78, 121, 0.05);
  font-size: 0.85rem;
  color: rgba(31, 41, 51, 0.75);
}

/* ==========================================================================
   PROPERTY GALLERY SECTION
   ========================================================================== */
.gallery-item {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-img-container {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(31, 41, 51, 0.95) 15%, rgba(31, 41, 51, 0.4) 60%, rgba(31, 41, 51, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-hover-content {
  width: 100%;
}

.gallery-cat {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-beige);
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 16px;
}

/* Mobile specific styling override for gallery titles */
@media (max-width: 768px) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(31, 41, 51, 0.85) 40%, rgba(31, 41, 51, 0) 100%);
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.choose-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid transparent;
}

.choose-card:nth-child(3n+1) { border-top-color: var(--accent-green); }
.choose-card:nth-child(3n+2) { border-top-color: var(--accent-brown); }
.choose-card:nth-child(3n+3) { border-top-color: var(--accent-blue); }

.choose-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.choose-card-title {
  font-size: 1.15rem;
  color: var(--text-main);
}

.choose-card-desc {
  font-size: 0.9rem;
  color: rgba(31, 41, 51, 0.7);
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 20px;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: var(--accent-beige);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(63, 125, 74, 0.3);
  margin-bottom: 20px;
  border: 4px solid var(--bg-primary);
  transition: transform var(--transition-fast);
}

.timeline-step:hover .timeline-badge {
  transform: scale(1.15);
}

.timeline-content {
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  width: 100%;
}

.step-title {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--accent-blue);
}

.step-desc {
  font-size: 0.8rem;
  color: rgba(31, 41, 51, 0.75);
}

/* Timeline second row offset for responsive desktop */
@media (min-width: 1025px) {
  .timeline-container {
    grid-template-rows: repeat(2, auto);
    row-gap: 80px;
  }
  
  .timeline-step:nth-child(n+5) {
    grid-row: 2;
  }
  
  /* Additional timeline node line for second row */
  .timeline-container::after {
    content: '';
    position: absolute;
    bottom: 120px;
    left: 5%;
    width: 90%;
    height: 4px;
    background-color: var(--accent-beige);
    z-index: 1;
  }
  
  .timeline-step:nth-child(n+5) .timeline-badge {
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-header-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.big-rating {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.rating-stars-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gold-stars {
  font-size: 1.5rem;
  color: #F4B400;
  line-height: 1;
}

.review-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(31, 41, 51, 0.6);
  margin-top: 4px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-heading);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.reviewer-loc {
  font-size: 0.75rem;
  color: rgba(31, 41, 51, 0.5);
}

.card-stars {
  margin-left: auto;
  color: #F4B400;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: rgba(31, 41, 51, 0.8);
  font-style: italic;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-details-box {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid var(--accent-green);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-box-title {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.contact-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(31, 41, 51, 0.5);
  font-weight: 700;
  margin-bottom: 4px;
}

.info-val {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-link:hover {
  color: var(--accent-green);
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.action-btn {
  padding: 12px 10px;
  font-size: 0.85rem;
  min-height: 44px;
}

/* Quick Lead Form block */
.lead-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.9rem;
  color: rgba(31, 41, 51, 0.65);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(31, 41, 51, 0.75);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-primary);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  color: var(--text-main);
}

.form-control::placeholder {
  color: rgba(31, 41, 51, 0.4);
}

.form-control:focus {
  background-color: var(--white);
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(63, 125, 74, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231F2933'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-grey);
  color: rgba(247, 243, 234, 0.7);
  padding-top: 80px;
  border-top: 1px solid rgba(247, 243, 234, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.brand-col {
  padding-right: 20px;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-rating-widget {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
}

.footer-rating-widget .rating-val {
  font-weight: 700;
  color: var(--accent-beige);
}

.footer-rating-widget .rating-sub {
  font-size: 0.75rem;
}

.footer-col-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-green);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(247, 243, 234, 0.7);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}

.contact-detail-item {
  line-height: 1.5;
}

.contact-detail-item strong {
  color: var(--white);
}

.footer-link-txt {
  color: var(--accent-green);
  font-weight: 600;
}

.footer-link-txt:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  background-color: #151C23;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-txt {
  font-size: 0.85rem;
}

.disclaimer-txt {
  font-size: 0.75rem;
  color: rgba(247, 243, 234, 0.4);
  max-width: 500px;
  text-align: right;
}

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--accent-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 78, 121, 0.3);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background-color: #173b5b;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 54px;
  height: 54px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-svg-icon {
  width: 28px;
  height: 28px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-light);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-fade, .reveal-slide-left, .reveal-slide-right {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-fade {
  transform: translateY(30px);
}

.reveal-slide-left {
  transform: translateX(-40px);
}

.reveal-slide-right {
  transform: translateX(40px);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Desktop Extra Wide */
@media (min-width: 1440px) {
  :root {
    --max-width: 1300px;
  }
}

/* Medium Desktop / Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
  }
  
  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .quick-links-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .grid-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .split-image {
    order: 2;
  }
  
  .split-content {
    order: 1;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  
  .footer-grid .footer-col:last-child {
    grid-column: span 3;
  }
  
  .disclaimer-txt {
    text-align: left;
  }
  
  .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-line {
    display: none;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none; /* Hide standard nav on mobile */
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .badge-item {
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  /* Disable anti-gravity cards on tablets/mobiles to improve rendering and layout clutter */
  .anti-gravity-container {
    display: none;
  }
  
  .feature-bullets-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid .footer-col {
    grid-column: span 1 !important;
  }
}

/* Mobile Screen (480px and below) */
@media (max-width: 480px) {
  .logo-title {
    font-size: 1.15rem;
  }
  
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
    padding-left: 20px;
    border-left: 3px solid var(--accent-beige);
    margin-left: 10px;
  }
  
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  
  .timeline-badge {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    margin-left: -38px;
  }
  
  .timeline-content {
    padding: 14px;
  }
  
  .contact-details-box {
    padding: 24px;
  }
  
  .lead-form {
    padding: 24px;
  }
  
  .action-btn {
    font-size: 0.9rem;
    padding: 14px 16px;
  }
  
  .floating-whatsapp {
    bottom: 74px;
    right: 16px;
  }
  
  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
  
  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .disclaimer-txt {
    text-align: center;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  
  .anti-gravity-container, .parallax-item {
    animation: none !important;
  }
  
  .reveal-fade, .reveal-slide-left, .reveal-slide-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
