/* Property Sparkle – Premium Light Real Estate Aesthetic */

:root {
  /* Color Palette - Clean, high-end light theme */
  --color-bg: #ffffff;
  --color-surface: #fcfcfc;
  --color-surface-soft: #f5f5f5;
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-accent: #b8964b; /* Slightly deeper gold for better contrast on white */
  --color-accent-hover: #a6853d;
  --color-accent-soft: rgba(184, 150, 75, 0.08);
  --color-border: rgba(0, 0, 0, 0.06);
  --color-border-bright: rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body:
    "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing & Misc */
  --container-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --glass: blur(12px) saturate(180%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* ----- Utility Classes ----- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent {
  color: var(--color-accent);
}
.text-muted {
  color: var(--color-text-muted);
}

/* ----- Header & Nav ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff; /* Solid white to match logo background perfectly */
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.main-content {
  padding-top: 110px; /* Offset for fixed header */
}

.header-inner {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.logo {
  display: block;
  height: 80px;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem; /* Increased spacing between nav items */
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav li.active a {
  color: var(--color-accent);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 220px;
  width: max-content;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block !important;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.dropdown-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(184, 150, 75, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: #000000;
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: #000;
}

/* ----- Hero Section ----- */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin-top: -110px; /* Matched with header height */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hero carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel-track {
  position: absolute;
  inset: 0;
  background: #111;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-carousel-slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-carousel-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) blur(3px);
  transform: scale(1.04); /* slightly upscale to hide blur edges */
  opacity: 1;
}

.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.05);
}

.hero-carousel-arrow--prev {
  left: 1.5rem;
}

.hero-carousel-arrow--next {
  right: 2rem;
  left: auto;
}

@media (max-width: 768px) {
  .hero-carousel-arrow--next {
    right: 1rem;
  }
  .hero-carousel-arrow--prev {
    left: 1rem;
  }
}

.hero-carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 5;
  justify-content: center;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-carousel-dot--active {
  background: #fff;
  transform: scale(1.2);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(0.95);
}

@keyframes cinematicZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark gradient overlay for text readability */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  width: 100%;
  max-width: 800px;
  padding: 0 1.5rem;
  text-align: center;
  animation: heroFadeIn 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-content span.established {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #e2b96f;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(
    2.5rem,
    6vw,
    3.8rem
  );
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-content h1 span.landmarks {
  display: block;
  font-size: 0.22em;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  color: #e2b96f;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(226, 185, 111, 0.4);
  padding-top: 1rem;
  width: fit-content;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Section Base ----- */
.section {
  padding: 8rem 0; /* Slightly tighter spacing */
}

/* ----- Our Partners ----- */
.section-partners {
  background: var(--color-surface-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo {
  flex: 0 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  min-height: 180px;
}

/* Dark background for white/light logos (e.g. Madhuvan Group) */
.partner-logo--light {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: rgba(255, 255, 255, 0.1);
}

.partner-logo--light:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo--light .partner-name {
  color: rgba(255, 255, 255, 0.9);
}

.partner-logo:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.partner-logo img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: var(--transition);
}

.partner-logo--light img {
  filter: brightness(0) invert(1);
}

.partner-logo:hover img {
  filter: grayscale(0);
}

.partner-logo--light:hover img {
  filter: brightness(0) invert(1);
}

.partner-name {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
  transition: var(--transition);
}

.partner-logo:hover .partner-name {
  color: var(--color-accent);
}

/* Dealer profile: dark bg for white logo (e.g. Madhuvan Group) */
.dealer-profile-image--light {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border-color: rgba(0, 0, 0, 0.1);
}
.dealer-profile-image--light img {
  filter: brightness(0) invert(1);
}

.section-projects {
  background: #ffffff;
}

.section-about-preview {
  background: #f9f9f9;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-cta {
  background: #ffffff;
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ----- Dealer/Project Cards ----- */
.dealer-cards,
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.dealer-card,
.project-card {
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-form-container {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.dealer-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.dealer-card-image,
.project-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-soft);
}

/* Dark background for light/white logos (e.g. Madhuvan Group) */
.dealer-card-image--light {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
}

.dealer-card-image img,
.dealer-card-image--light img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dealer-card-image--light img {
  filter: brightness(0) invert(1);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card-image--contain {
  background: #fff;
}

.project-card-image--contain img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

/* If background images are used via style attribute */
.dealer-card-image[style*="background-image"],
.project-card-image[style*="background-image"] {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dealer-card:hover .dealer-card-image img,
.project-card:hover .project-card-image img,
.dealer-card:hover .dealer-card-image,
.project-card:hover .project-card-image {
  transform: scale(1.05);
}

.dealer-card-body,
.project-card-body {
  padding: 2.5rem;
}

.dealer-card-body h3,
.project-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.dealer-card-body p,
.project-card-body p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Dealer project sections: visual separation between Active / Completed / Future */
.section-dealer-projects {
  border-radius: var(--radius-md);
  padding: 3rem 0;
  margin-bottom: 0;
}
.section-dealer-projects--active {
  background: rgba(146, 116, 51, 0.06);
  border: 1px solid rgba(146, 116, 51, 0.2);
  border-left: 4px solid var(--color-accent);
}
.section-dealer-projects--completed {
  background: #f5f5f4;
  border: 1px solid var(--color-border);
  border-left: 4px solid #2d2d2d;
  margin-top: 2rem;
}
.section-dealer-projects--future {
  background: rgba(100, 120, 160, 0.06);
  border: 1px solid rgba(100, 120, 160, 0.25);
  border-left: 4px solid #4a6fa5;
  margin-top: 2rem;
}

.section-dealer-projects .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* View more: hide extra project cards until section is expanded */
.section-dealer-projects .project-card--more {
  display: none;
}
.section-dealer-projects.expanded .project-card--more {
  display: block;
}

.section-view-more {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}
.view-more-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.25rem 0;
}
.view-more-toggle:hover {
  opacity: 0.85;
}

.dealer-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dealer-card-link::after {
  content: "→";
  transition: var(--transition);
}

.dealer-card:hover .dealer-card-link::after {
  transform: translateX(5px);
}

/* Project detail: make cards clickable (anchor) */
a.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ----- Project Detail Page ----- */
.project-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.project-hero-image {
  position: absolute;
  inset: 0;
}
.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.project-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.project-breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.project-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.project-breadcrumb a:hover {
  color: #fff;
}
.project-breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.project-breadcrumb .text-accent {
  color: var(--color-accent);
}
.project-hero-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.project-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  color: #fff;
}
.project-hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}
.project-hero-location svg {
  flex-shrink: 0;
}

.project-about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.project-about-text .lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-text);
}
.project-about-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-meta-card {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.project-meta-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.project-meta-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text);
}

.project-amenities-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.project-amenity-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

@media (max-width: 768px) {
  .project-about-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Page Specific Headers ----- */
.page-hero {
  padding: 12rem 0 6rem;
  text-align: center;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.dealer-breadcrumb {
  margin-bottom: 2rem !important;
}

/* ----- Contact Form ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-surface-soft);
}

/* ----- Footer ----- */
.site-footer {
  padding: 5rem 0;
  background: #fcfcfc;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-inner p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.footer-copy {
  margin-top: 3rem !important;
  font-size: 0.8rem !important;
  opacity: 0.5;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .partners-logos {
    gap: 2rem;
  }
  .partner-logo {
    flex: 0 1 100%;
    min-height: 140px;
  }
  .partner-logo img {
    max-height: 90px;
  }

  .site-header .header-inner {
    height: 70px;
  }
  .header-inner .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    padding: 0.75rem;
    z-index: 1200;
  }
  .header-inner .main-nav.is-open {
    display: block;
  }
  .header-inner .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .header-inner .main-nav li {
    width: 100%;
  }
  .header-inner .main-nav a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.5rem;
  }
  .header-inner .main-nav a::after {
    display: none;
  }
  .header-inner .nav-dropdown .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0.35rem 0;
    border: 0;
    border-top: 1px solid var(--color-border);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .header-inner .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
  }

  .section {
    padding: 5rem 0;
  }
  .section-header h2 {
    font-size: 2.25rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}
