/* ============================
   VARIABLES
============================ */
:root {
  --deep-blue:#022b3a;
  --ocean-mid:#065a82;
  --gold:#d4af37;
  --white:#ffffff;
  --bg:#fbfbfc;
  --header-height:90px;
}

/* ============================
   UNIVERSAL
============================ */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { overflow-x:hidden; font-family:'Poppins',sans-serif; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ============================
   HEADER
============================ */
.site-header {
  position: absolute; /* over hero */
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  pointer-events: auto;
}

/* LOGO */
.hero-logo img {
  height: 50px;
  width: auto;
}

/* MENU BUTTON */
.menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(6, 90, 130, 0.8); /* semi-transparent */
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 5px;
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}
.menu-button:hover { background-color: rgba(2,43,58,0.9); }
.menu-button .menu-icon span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 4px 0;
  border-radius: 3px;
}

/* ============================
   MOBILE NAVIGATION
============================ */
.mobile-backdrop {
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.45);
  opacity:0;
  visibility:hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.mobile-backdrop.show {
  opacity:1;
  visibility:visible;
}

.mobile-nav {
  position: fixed;
  top:0;
  left:0;
  height:100vh;
  width:78%;
  max-width:300px;
  background: linear-gradient(180deg, var(--deep-blue), var(--ocean-mid));
  padding: 30px 24px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index:1000;
  overflow-y:auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.close-nav {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  position: absolute;
  top: 10px;
  right: 16px;
  cursor: pointer;
}

.mobile-nav ul {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-decoration: none !important;
}

.mobile-nav .btn-cta {
  background: var(--gold);
  color: var(--deep-blue);
  padding: 12px 16px;
  border-radius: 8px;
  border-bottom: none !important;
  display: inline-block;
}

/* ============================
   HERO SECTION
============================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-box {
  background: rgba(0,0,0,0.55);
  padding: 28px 34px;
  border-radius: 14px;
  max-width: 460px;
  text-align: center;
  color: white;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.eyebrow { font-size:14px; letter-spacing:1px; text-transform:uppercase; opacity:0.8; }
.hero-title { font-size:28px; font-weight:700; margin: 16px 0 8px; }
.hero-sub { font-size:18px; margin-top:6px; opacity:0.9; }

.btn-hero {
  display: inline-block;
  margin-top:16px;
  padding:12px 26px;
  background: var(--gold);
  color: #000;
  font-weight:700;
  border-radius:8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-hero:hover {
  background: #fff;
  color: var(--deep-blue);
}


/* -------------------------
   OVERVIEW SECTION
-------------------------- */

.overview-section {
  padding: 80px 0;
  text-align: center;
  color: #022b3a;
}

/* TOP STATS ROW */
.overview-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(2, 43, 58, 0.06);
  min-width: 180px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #04445f;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #022b3a;
}

/* TNC */
.tnc {
  font-size: 12px;
  color: #555;
  margin-top: -6px;
  margin-bottom: 40px;
  opacity: 0.75;
}

/* TITLE */
.overview-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #022b3a;
}

/* TEXT */
.overview-text {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
  color: #03364d;
}

.overview-text p {
  margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .overview-title {
    font-size: 26px;
  }
  .stat-value {
    font-size: 18px;
  }
  .overview-text {
    font-size: 15px;
  }
}





/* Sections */
.section{
  padding:84px 0;
}
.section h2{
  font-family:'Playfair Display', serif;
  font-size:30px;
  margin-bottom:10px;
  color:var(--deep-blue);
}
.section .lead{
  color:#176075;
}

/* Grids */
.destinations-grid,
.amenities-grid,
.gallery-grid,
.location-grid{
  width:100%;
}

/* DESTINATIONS SECTION */
.destinations-section {
  position: relative;
  background-image: url("../images/destination.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
  scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

.destinations-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.destinations-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 600;
}

.destinations-desc {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
}

/* GRID */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
  justify-items: center;
}

/* CARD */
.destinations-grid .card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.destinations-grid .card:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-6px);
}

.destinations-grid .card img.dest-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.destinations-grid .card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.destinations-grid .card p {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 1.5;
}

/* Enquire Now */
.destinations-cta .btn-cta {
  padding: 15px 35px;
  background: #065a82;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.destinations-cta .btn-cta:hover {
  background: #022b3a;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}


/* HERO AMENITIES SECTION */
.amenities-hero {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/amenities.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.amenities-hero .container {
  max-width: 1180px;
}

.amenities-text {
  max-width: 600px;
  color: #fff;
  text-align: left;
}

.amenities-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #022b3a;
  margin-bottom: 25px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.amenities-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #133b4d;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
@media(max-width: 768px) {
  .amenities-hero {
    background-image: url("../images/amenities-mobile.jpg"); /* mobile-specific image */
    background-size: cover;
    background-position: center;
  }
}



/* FLOOR PLAN SECTION */
/* ================================
   FLOOR PLAN SECTION
================================= */
/* ================================
   FLOOR PLAN SECTION - SINGLE BOX STYLE
================================= */
.floorplan-section {
  padding: 60px 20px;
  background: #faf8f2;
  text-align: center;
}

.fp-title {
  font-size: 36px;
  font-weight: 800;
  color: #022b3a;
  margin-bottom: 10px;
}

.fp-subtitle {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* TABS */
.fp-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.fp-tab {
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 8px;
  background: #ececec;
  border: 1px solid #dcdcdc;
  cursor: pointer;
  transition: 0.3s;
}

.fp-tab.active,
.fp-tab:hover {
  background: #d4af37;
  color: #fff;
  border-color: #caa32a;
}

/* PANELS */
.fp-panels {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fp-panel {
  display: none !important;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.fp-panel.active {
  display: block !important;
  animation: fadeIn 0.35s ease-in-out;
}

/* IMAGE */
.fp-image img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: transform 0.35s ease;
}

.fp-image img:hover {
  transform: scale(1.03);
}

/* CONTENT */
.fp-content {
  padding: 20px 25px;
}

.fp-content h3 {
  font-size: 22px;
  color: #022b3a;
  margin-bottom: 12px;
}

.fp-content ul {
  list-style: disc inside;
  line-height: 1.6;
  color: #4f5b66;
  margin-bottom: 10px;
}

/* CTA BUTTON */
.fp-btn-wrapper {
  margin-top: 15px;
  text-align: center;
}

.fp-btn-wrapper .btn-primary {
  padding: 10px 26px;
  background: #065a82;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.fp-btn-wrapper .btn-primary:hover {
  background: #022b3a;
}

/* FADE IN ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =============================
   PREMIUM GOLD GALLERY SECTION
   ============================= */

.gallery-section {
  padding: 90px 0;
  background: #f7f8fa;
}

.gallery-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #022b3a;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* Gold underline */
.gallery-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f8e08e);
  margin: 12px auto 0;
  border-radius: 50px;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Gold luxury framing */
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(212,175,55,0.25); /* soft gold border */
  
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform .35s ease, 
              box-shadow .35s ease,
              border-color .35s ease,
              filter .35s ease;
  
  cursor: pointer;
  filter: brightness(0.92);
}

/* PREMIUM HOVER ZOOM + GOLD GLOW */
.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1);
  border-color: rgba(212,175,55,0.75); /* brighter gold on hover */
  box-shadow: 0 16px 38px rgba(0,0,0,0.25),
              0 0 18px rgba(212,175,55,0.6); /* gold glow */
}


/* Location */
.location-section {
  padding: 70px 0;
}

.loc-title {
  font-size: 32px;
  font-weight: 700;
  color: #022b3a;
  text-align: center;
  margin-bottom: 10px;
}

.loc-sub {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px;
  color: #4f5b66;
  font-size: 17px;
}

.location-map img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.loc-box {
  background: #fff;
  border-radius: 14px;
  padding: 25px 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.loc-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #022b3a;
  margin-bottom: 12px;
}

.loc-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loc-box ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #4f5b66;
  display: flex;
  align-items: center;
}

.loc-box ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #d4af37;
  border-radius: 50%;
  margin-right: 10px;
}

.loc-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}



/* === SPLIT SECTION BASE === */
.split-section {
  display: flex;
  align-items: stretch;
  min-height: 580px;
  margin-bottom: 20px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

/* === IMAGE SIDE === */
.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: block;          /* FIX 1 */
  width: 100%;             /* FIX 2 */
  min-height: 580px;       /* FIX 3 – ensures it always shows */
}

/* === CONTENT SIDE === */
.split-content {
  flex: 1;
  padding: 60px 50px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-title {
  font-size: 32px;
  font-weight: 700;
  color: #022b3a;
  margin-bottom: 15px;
}

.split-desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #4f5b66;
}

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* === FEATURE BOX === */
.feature-box {
  background: rgba(255,255,255,0.75);
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.35);
  padding: 20px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.14);
  border-color: #d4af37;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #022b3a;
  margin-bottom: 10px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
}

.feature-box ul li {
  padding: 5px 0;
  font-size: 15px;
  color: #4f5b66;
  display: flex;
  align-items: center;
}

.feature-box ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #d4af37;
}

/* === RESPONSIVE FIXES === */
@media(max-width: 900px) {

  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .split-image {
    height: 360px;       /* ensures image is visible */
    min-height: 360px;   /* FIX 4 */
  }

  .split-content {
    padding: 40px 28px;
  }
}




/* Form */
.form-section {
  padding: 80px 0;
  background: #ffffff;
}

.form-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #022b3a;
  margin-bottom: 30px;
}

.enquiry-form {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.form-field {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #d3d8de;
  font-size: 15px;
  background: #fff;
}

textarea.form-field {
  height: 120px;
  resize: vertical;
}

.phone-wrapper {
  margin-bottom: 18px;
}

.iti {
  width: 100%;
}

.form-btn {
  width: 100%;
  padding: 14px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  background: #d4af37;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn:hover {
  background: #b9931f;
}


/* Footer */
.site-footer {
  background-color: var(--deep-blue);
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
}


/* Floating Button Group */
/* ---------- Circular Floating Buttons ---------- */
.fab-circle-group {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  pointer-events: auto;
}

/* base shared style: perfect circle */
/* base shared style: perfect circle */
.fab-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(3,18,26,0.24);
  transition: transform .18s ease, box-shadow .18s ease, opacity .12s;
  font-size: 20px;
  line-height: 1;
  border: 3px solid rgba(255,255,255,0.06);
  background-clip: padding-box;
}

/* Corrected icon style */
.fab-circle i { 
  font-size: 28px;
  line-height: 1;
  display: block;
}

/* Colors */
.fab-whatsapp { background: #25D366; }
.fab-call     { background: #007bff; }
.fab-enquire  { background: #d4af37; color: #041018; }

/* Hover / focus */
.fab-circle:hover,
.fab-circle:focus {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 36px rgba(3,18,26,0.28);
  outline: none;
}

/* Active / pressed */
.fab-circle:active {
  transform: translateY(-2px) scale(0.99);
}

/* Accessibility focus ring */
.fab-circle:focus-visible {
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}

/* Responsive smaller size on very small screens */
@media (max-width: 420px) {
  .fab-circle { width: 48px; height: 48px; font-size: 18px; }
  .fab-circle i { font-size: 22px; }
}

/* Optional: small tooltip label on hover (visually hidden for default) */
.fab-circle[data-label]:hover::after {
  content: attr(data-label);
  position: absolute;
  right: calc(56px + 14px);
  white-space: nowrap;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  transform-origin: right center;
  opacity: 1;
  pointer-events: none;
}


/* Responsive */
@media (max-width:1024px){
  .destinations-grid{grid-template-columns:repeat(3,1fr)}
  .amenities-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:768px){
  .nav{display:none}
  .hamburger{display:flex}

  .hero h1{font-size:36px}

  .mobile-nav{display:block}

  .destinations-grid{grid-template-columns:repeat(2,1fr)}
  .amenities-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .location-grid{grid-template-columns:1fr}
  .enquiry-form .row{grid-template-columns:1fr}
}

@media (max-width:480px){
  .hero h1{font-size:26px}
  .brand a{font-size:16px}
  .gallery-grid{grid-template-columns:1fr}
  .destinations-grid{grid-template-columns:1fr}
  .fab{min-width:44px;padding:10px}
}

/* Animations */
@keyframes floatIn{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:none}
}
.section,
.card,
.gallery-grid img,
.map-placeholder,
.amenities-grid article{
  animation:floatIn .7s ease both;
}


/* FAQ SECTION */
.faq-section { background: #ffffff; padding: 48px 20px; }
.faq-inner { max-width: 980px; margin: 0 auto; }
.faq-title { font-size: 28px; text-align: center; margin-bottom: 24px; color: #022b3a; font-weight: 800; letter-spacing: .2px; }

.faq-list { border-radius: 10px; overflow: hidden; }

/* each item */
.faq-item { border-top: 1px solid rgba(0,0,0,0.06); }
.faq-item:first-child { border-top: none; }

/* question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background .18s ease, color .18s ease;
  font-size: 16px;
  color: #0b2730;
  font-weight: 700;
  border-left: 4px solid transparent;
}

.faq-question:focus { box-shadow: 0 6px 20px rgba(2,43,58,0.06); }

/* icon container */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #d4af37; /* gold */
  border: 1px solid rgba(212,175,55,0.18);
  transition: transform .22s ease, background .18s ease;
  flex-shrink: 0;
}

/* rotate icon when active */
.faq-item.open .faq-icon { background: #d4af37; color: #041018; transform: rotate(45deg); border-color: rgba(212,175,55,0.98); }

/* question active state */
.faq-item.open .faq-question { border-left-color: rgba(212,175,55,0.95); color: #041018; background: #fff; }

/* answer area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  background: #fff;
  padding: 0 20px;
  color: #263238;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  padding: 14px 20px 22px;
  max-height: 1000px; /* generous — content controls exact height */
}

/* list in answers */
.faq-answer ul { padding-left: 18px; margin: 8px 0; color: #2e3b3d; }
.faq-answer li { margin-bottom: 6px; }

/* responsive */
@media (max-width: 720px) {
  .faq-question { padding: 14px 14px; font-size: 15px; }
  .faq-icon { width: 34px; height: 34px; }
  .faq-title { font-size: 22px; }
}