/* ============================================
   UniqueStays — Complete Stylesheet
   Brand: Navy #1B365B | Gold #D4A843
   ============================================ */

:root {
  --navy: #1B365B;
  --navy-dark: #132844;
  --navy-light: #2A4A73;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --gold-dark: #B8902E;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --light-gray: #F0EDE8;
  --mid-gray: #8C8C8C;
  --text: #2D2D2D;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(27,54,91,0.08);
  --shadow-md: 0 4px 20px rgba(27,54,91,0.12);
  --shadow-lg: 0 8px 40px rgba(27,54,91,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1, .hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2, .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle, .section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 12px auto 0;
}
.text-center { text-align: center; }
.gold-accent, .text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,54,91,0.35); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo .logo-img, .navbar-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .logo-img { height: 40px; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar-menu > a, .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.navbar.scrolled .navbar-menu > a,
.navbar.scrolled .nav-link,
.navbar.scrolled .dropdown-btn { color: var(--navy); }

.navbar-menu > a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar-menu > a:hover::after, .nav-link:hover::after,
.navbar-menu > a.active::after, .nav-link.active::after { width: 100%; }

.navbar-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 4px 0;
}
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a, .dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--navy) !important;
  font-size: 0.9rem;
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--light-gray); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
  display: block;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide:first-child, .hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,54,91,0.82) 0%, rgba(27,54,91,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title span, .hero-title .gold-accent { color: var(--gold); }
.hero-subtitle, .hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-buttons, .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-badges .badge, .hero-badge { text-align: center; color: var(--white); }
.hero-badges .badge-rating, .badge-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-badges .badge-label, .badge-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
  color: rgba(255,255,255,0.8);
}

/* ================================================
   SECTIONS
   ================================================ */
section { padding: 100px 0; }
.properties-section { padding: 100px 0; }
.why-section { padding: 100px 0; background: var(--off-white); }
.section-light, .section-offwhite { background: var(--off-white); }
.section-navy, .stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 80px 0;
}
.section-navy h2, .section-navy h3, .section-navy h4,
.stats-section h2 { color: var(--white); }

/* ================================================
   PROPERTY CARDS
   ================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.property-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: block;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-image, .property-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.property-image img, .property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-image img { transform: scale(1.05); }
.property-badge, .property-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-toprated { background: var(--navy); color: var(--white); }
.property-details, .property-card-body { padding: 24px 28px; }
.property-name, .property-card-body h3 { margin-bottom: 4px; font-size: 1.4rem; }
.property-location, .property-card-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.property-specs, .property-card-features {
  display: flex;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
  flex-wrap: wrap;
}
.property-specs .spec, .property-card-features .feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.property-specs .spec svg { color: var(--navy); }
.property-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.rating-stars { font-weight: 700; color: var(--gold-dark); font-size: 1rem; }
.rating-count { font-size: 0.8rem; color: var(--mid-gray); }

/* ================================================
   VALUE / ICON CARDS
   ================================================ */
.values-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon, .value-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg, .value-card-icon svg { width: 28px; height: 28px; color: var(--navy); }
.value-title, .value-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.value-desc, .value-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ================================================
   STATS
   ================================================ */
.stats-grid, .stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.stat-item, .stat { text-align: center; padding: 20px; }
.stat-number, .stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-item .stat-label, .stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ================================================
   REVIEWS & TESTIMONIALS
   ================================================ */
.reviews-section { padding: 100px 0; }

/* Platform rating cards */
.platform-ratings {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.platform-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px 40px;
  text-align: center;
  transition: all var(--transition);
  min-width: 200px;
}
.platform-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.platform-card .platform-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}
.platform-card .platform-score {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
}
.platform-card .platform-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin: 4px 0; }
.platform-card .platform-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Reviews placeholder */
.reviews-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  border: 2px dashed var(--mid-gray);
  margin: 32px 0;
  display: none; /* hidden by default, show when widget is added */
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Review card header: avatar + meta (name, stars, date) */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.testimonial-avatar-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.3;
}
.testimonial-stars {
  color: #e8457c;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}
.testimonial-date-platform {
  font-size: 0.8rem;
  color: var(--mid-gray);
  font-weight: 400;
  line-height: 1.3;
}

/* Review text */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: normal;
  margin: 0;
}
.testimonial-card p.testimonial-text { color: var(--text-light); }

/* Property tag at bottom */
.testimonial-property-tag {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* Legacy classes for static reviews */
.testimonial-author, p.testimonial-author {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  font-style: normal;
}
.testimonial-property {
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-weight: 400;
  margin-top: 2px;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner .container, .cta-content { text-align: center; }
.cta-title, .cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-subtitle, .cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons, .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   PAGE HEADER (inner pages)
   ================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(212,168,67,0.06);
}
.page-header h1, .page-title { color: var(--white); margin-bottom: 12px; }
.page-header p, .page-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-grid.hero-gallery {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { grid-row: 1 / -1; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,54,91,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }

/* ================================================
   PROPERTY DETAIL PAGES
   ================================================ */
.property-hero { padding-top: 100px; }
.property-info { margin-bottom: 24px; }
.property-info h1 { margin-bottom: 4px; }
.property-meta { display: flex; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.property-meta .meta-item, .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.property-description { max-width: 800px; }
.property-description p { margin-bottom: 16px; color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.property-amenities, .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.amenity, .amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.amenity svg, .amenity-item svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; }

.booking-section { padding: 60px 0; background: var(--off-white); }
.booking-section h2 { text-align: center; margin-bottom: 32px; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-image-badge, .about-image .badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.about-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }
.about-content p:first-of-type { font-size: 1.1rem; color: var(--text); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}
.founder-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.founder-role { color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; margin-bottom: 12px; }
.founder-card p:not(.founder-role) { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list, .faq-container { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--light-gray); padding: 20px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  padding: 0;
}
.faq-question svg, .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-question svg, .faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: 12px; }
.faq-answer p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ================================================
   FORMS
   ================================================ */
.form-section { max-width: 640px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group.full, .form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea,
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #DDD;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-steps, .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
  counter-reset: step;
}
.process-step, .step-item {
  text-align: center;
  counter-increment: step;
}
.process-step::before, .step-item::before {
  content: counter(step);
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step h4, .step-item h4 { margin-bottom: 8px; }
.process-step p, .step-item p { font-size: 0.9rem; color: var(--text-light); }

/* ================================================
   CREDENTIALS
   ================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.credential-item svg { color: var(--gold-dark); flex-shrink: 0; }

/* ================================================
   CONTACT CARDS
   ================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.contact-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.contact-card svg { margin: 0 auto 16px; color: var(--gold); }
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--text-light); }

.contact-details {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--light-gray);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-img, .footer-brand img, .footer .footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-desc, .footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.social-links, .footer-social { display: flex; gap: 12px; }
.social-link, .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover, .footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-heading, .footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li, .footer ul li { margin-bottom: 10px; }
.footer-links a, .footer ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover, .footer ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { opacity: 0.6; }
.footer-location { opacity: 0.6; }
.footer-bottom a:hover { color: var(--gold); }

/* ================================================
   MISSING SECTION & FORM CLASSES
   ================================================ */

/* Section Wrappers */
.value-proposition {
  padding: 100px 0;
  background: var(--white);
}
.value-proposition h2 { text-align: center; margin-bottom: 48px; }

.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}
.how-it-works h2 { text-align: center; margin-bottom: 48px; }

.faq-section {
  padding: 100px 0;
  background: var(--white);
}
.faq-section h2 { text-align: center; margin-bottom: 48px; }

/* FAQ Accordion */
.accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: all var(--transition);
}
.accordion-header:hover { background: var(--light-gray); }
.accordion-header::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.accordion-item.active .accordion-header::after { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  background: var(--off-white);
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 20px 24px;
}
.accordion-content p { color: var(--text-light); line-height: 1.7; }

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-row .form-group { margin-bottom: 0; }

/* Contact Section Classes */
.cleaner-section {
  padding: 100px 0;
  background: var(--light-gray);
}
.cleaner-section h2 { text-align: center; margin-bottom: 16px; }
.cleaner-section > .container > p { text-align: center; color: var(--text-light); margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }

.contact-options {
  padding: 80px 0;
  background: var(--white);
}
.contact-options h2 { text-align: center; margin-bottom: 48px; }

.contact-details {
  padding: 80px 0;
  background: var(--light-gray);
}
.contact-details h2 { text-align: center; margin-bottom: 48px; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.enquiry-form {
  max-width: 700px;
  margin: 0 auto;
}

/* Properties Page Classes */
.coming-soon-section {
  padding: 80px 0;
  background: var(--light-gray);
  text-align: center;
}
.coming-soon-section h3 { margin-bottom: 16px; }
.coming-soon-section p { color: var(--text-light); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

.partnership-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
}
.partnership-cta h2,
.partnership-cta p { color: var(--white); margin-bottom: 24px; }

/* Footer Variants */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 32px;
}

.footer-section {
  color: var(--text);
}
.footer-section h3,
.footer-section h4 {
  color: var(--navy);
  margin-bottom: 16px;
}
.footer-section p { color: var(--text-light); margin-bottom: 8px; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul li a { color: var(--text-light); transition: color var(--transition); }
.footer-section ul li a:hover { color: var(--gold); }

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 32px;
}

/* Property Page Classes */
.property-header {
  margin-bottom: 36px;
}
.property-header h1 { margin-bottom: 8px; }
.property-header .tagline { font-size: 1.2rem; color: var(--text-light); margin-bottom: 16px; }

.property-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-light);
}
.property-meta .location { font-weight: 500; }

.meta-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.meta-details span { font-size: 0.95rem; }

.amenities-section {
  padding: 60px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin: 40px 0;
}
.amenities-section h2 { text-align: center; margin-bottom: 48px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.amenity svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 12px;
  stroke-width: 1.5;
}
.amenity span { font-size: 0.95rem; font-weight: 500; color: var(--navy); }

.booking-widget-wrapper {
  padding: 40px 0;
}
.booking-widget-wrapper h2 { text-align: center; margin-bottom: 32px; }

.booking-widget-container {
  padding: 40px 0;
}
.booking-widget-container h3 { margin-bottom: 20px; text-align: center; }

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
}
.cta-section h2,
.cta-section p { color: var(--white); margin-bottom: 24px; }

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.cta-button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35);
}

/* Photos Grid */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.more-photos {
  padding: 80px 0;
  background: var(--off-white);
}
.more-photos h2 { text-align: center; margin-bottom: 48px; }

/* Contact Page Details */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.detail-item {
  text-align: center;
  padding: 24px;
}
.detail-item h4 { color: var(--navy); margin-bottom: 8px; }
.detail-item p { color: var(--text-light); }
.detail-item a { color: var(--gold); font-weight: 500; }
.detail-item a:hover { color: var(--gold-dark); }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }
  .navbar-menu.active {
    display: flex;
  }
  .navbar-menu.active > a,
  .navbar-menu.active .nav-link,
  .navbar-menu.active .dropdown-btn {
    color: var(--white) !important;
    font-size: 1.2rem;
  }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-badges { gap: 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  section { padding: 64px 0; }
  .cta-banner { padding: 56px 0; }

  .about-grid, .founders-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 360px; }

  .properties-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .gallery-item:first-child { grid-row: 1 / span 2; }

  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .stat-number { font-size: 2.4rem; }
  .platform-ratings { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: auto;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.7) !important; padding: 6px 0; }

  .page-header { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .values-grid, .value-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .property-amenities, .amenities-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
