/* =========================================================
   AARADHYA REALTY â€” DESIGN SYSTEM
   ========================================================= */

:root {
  /* Colors */
  --navy-900: #081524;
  --navy-800: #0d2038;
  --navy-700: #12294a;
  --navy-600: #1a3a63;
  --gold-500: #c9a24b;
  --gold-400: #dab967;
  --gold-300: #e8cd8a;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --text-muted: #a9b6c9;
  --text-muted-soft: #cfd7e3;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius / Shadow */
  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-header: 0 8px 24px rgba(8, 21, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 15px; /* mobile-first base */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background-color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Base heading scale â€” mobile-first, kept compact so layout doesn't feel bulky */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0;
}

h1 { font-size: 1.65rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }
p  { font-size: 0.9rem; }


/* =========================================================
   TOP UTILITY BAR
   ========================================================= */

.topbar {
  background-color: var(--navy-900);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
  padding: 8px 0;
}

.topbar-info {
  gap: 0;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted-soft);
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.topbar-link i {
  color: var(--gold-500);
  font-size: 0.8rem;
}

.topbar-link:hover {
  color: var(--gold-300);
}

.topbar-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(201, 162, 75, 0.25);
  margin: 0 16px;
}

.topbar-address {
  cursor: default;
}

.topbar-social {
  gap: 10px;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 0.72rem;
  transition: all 0.25s ease;
}

.topbar-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}


/* =========================================================
   MAIN NAVBAR
   ========================================================= */

.main-navbar {
  background-color: var(--navy-800);
  padding: 12px 0;
  box-shadow: var(--shadow-header);
  z-index: 1030;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.main-navbar.is-scrolled {
  padding: 6px 0;
  background-color: var(--navy-900);
}

.main-navbar.is-scrolled .brand-mark img {
  height: 28px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.brand-mark img {
  height: 34px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.3px;
}

.brand-name em {
  font-style: normal;
  color: var(--gold-400);
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Nav links */
.navbar-nav .nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted-soft) !important;
  padding: 10px 16px !important;
  transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background-color: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown toggle arrow color fix */
.navbar-nav .dropdown-toggle::after {
  vertical-align: 2px;
  border-top-color: var(--gold-400);
  transition: transform 0.25s ease;
}

.mega-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* =========================================================
   MEGA DROPDOWN â€” "Our Projects" (hover reveal, desktop only)
   ========================================================= */

.mega-dropdown {
  position: static;
}

.mega-menu {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0;
  width: min(720px, 92vw);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--navy-700);
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 24px 48px rgba(4, 12, 22, 0.4);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.22s ease;
}

.mega-menu-item:hover {
  background-color: rgba(201, 162, 75, 0.1);
  border-color: rgba(201, 162, 75, 0.35);
  transform: translateX(4px);
}

.mmi-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(201, 162, 75, 0.12);
  color: var(--gold-400);
  font-size: 1rem;
}

.mega-menu-item:hover .mmi-icon {
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.mmi-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.mmi-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}

.mmi-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.mmi-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}

.badge-live {
  background-color: rgba(76, 175, 110, 0.15);
  color: #6fd99a;
}

.badge-sold {
  background-color: rgba(220, 90, 90, 0.15);
  color: #e88585;
}

.mega-menu-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  text-align: right;
}

.mega-menu-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: gap 0.2s ease, color 0.2s ease;
}

.mega-menu-footer a:hover {
  color: var(--gold-300);
  gap: 10px;
}

/* CTA / Booking button */
.btn-booking {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--gold-500);
  color: var(--navy-900) !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-booking i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.btn-booking:hover {
  background-color: var(--gold-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 162, 75, 0.35);
}

.btn-booking:hover i {
  transform: translate(2px, -2px);
}

/* Mobile call button */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(201, 162, 75, 0.12);
  color: var(--gold-400) !important;
  font-size: 0.9rem;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Custom toggler */
.navbar-toggler {
  border: none;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-400);
  transition: all 0.25s ease;
}


/* =========================================================
   MOBILE OFFCANVAS MENU
   ========================================================= */

.mobile-offcanvas {
  width: min(340px, 86vw);
  background-color: var(--navy-900);
  background-image: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-left: 1px solid rgba(201, 162, 75, 0.2);
}

.mobile-offcanvas .offcanvas-header {
  align-items: center;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
}

.mobile-offcanvas .brand-mark {
  padding: 3px 6px;
}

.mobile-offcanvas .brand-mark img {
  height: 26px;
}

.mobile-offcanvas .brand-name {
  font-size: 0.95rem;
}

.mobile-offcanvas .brand-tagline {
  font-size: 0.6rem;
}

.offcanvas-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.25);
  color: var(--gold-400);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.offcanvas-close:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.mobile-offcanvas .offcanvas-body {
  padding: 18px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 13px 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted-soft);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-400);
  padding-left: 8px;
}

.mobile-nav-link i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.accordion-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--gold-400);
}

.mobile-submenu {
  list-style: none;
  margin: 0 0 8px;
  padding: 2px 0 2px 12px;
  border-left: 2px solid rgba(201, 162, 75, 0.25);
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.mobile-submenu li a:hover {
  background-color: rgba(201, 162, 75, 0.08);
  color: var(--white);
  padding-left: 12px;
}

.mobile-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted-soft);
}

.mobile-contact-link i {
  color: var(--gold-500);
  font-size: 0.85rem;
}

.mobile-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mobile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.mobile-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE â€” MOBILE FIRST ADJUSTMENTS
   ========================================================= */

@media (min-width: 768px) {
  html { font-size: 15.5px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }
  p  { font-size: 0.95rem; }
}

@media (min-width: 992px) {
  html { font-size: 16px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
  p  { font-size: 1rem; }
}

@media (max-width: 991.98px) {
  .main-navbar {
    padding: 10px 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .brand-mark img {
    height: 28px;
  }
}

@media (max-width: 400px) {
  .mobile-offcanvas {
    width: 88vw;
  }
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
  position: relative;
  background-color: var(--navy-900);
}

.carousel-item,
.hero-slide {
  height: 88vh;
  min-height: 480px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-1 {
  background-image: url('../images/banner-1.jpg');
}

.hero-slide-2 {
  background-image: url('https://www.aaradhyarealty.co.in/images/sunshine-2.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 21, 36, 0.94) 8%, rgba(8, 21, 36, 0.78) 38%, rgba(8, 21, 36, 0.35) 68%, rgba(8, 21, 36, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 21, 36, 0.55) 0%, rgba(8, 21, 36, 0) 40%);
}




.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 90px 0 60px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.68rem, 2vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-400);
  background-color: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  opacity: 0;
}

/* Heading */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 6vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-title span {
  display: inline-block;
  opacity: 0;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--text-muted-soft);
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  opacity: 0;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-hero-ghost i {
  color: var(--gold-400);
}

.btn-hero-ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---- Animation triggers: active slide only ---- */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.carousel-item.active .hero-eyebrow {
  animation: heroReveal 0.7s ease forwards;
  animation-delay: 0.1s;
}

.carousel-item.active .hero-title span {
  animation: heroReveal 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.carousel-item.active .hero-title span:nth-child(1) { animation-delay: 0.28s; }
.carousel-item.active .hero-title span:nth-child(2) { animation-delay: 0.42s; }
.carousel-item.active .hero-title span:nth-child(3) { animation-delay: 0.56s; }
.carousel-item.active .hero-title span:nth-child(4) { animation-delay: 0.70s; }
.carousel-item.active .hero-title span:nth-child(5) { animation-delay: 0.84s; }

.carousel-item.active .hero-subtitle {
  animation: heroReveal 0.7s ease forwards;
  animation-delay: 0.75s;
}

.carousel-item.active .hero-cta-group {
  animation: heroReveal 0.7s ease forwards;
  animation-delay: 0.95s;
}

/* ---- Custom carousel controls ---- */
.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0.5);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--gold-400);
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.hero-control-prev { left: 24px; }
.hero-control-next { right: 24px; }

.hero-control:hover {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* ---- Indicators ---- */
.hero-indicators {
  z-index: 3;
  bottom: 26px;
  margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-indicators .active {
  background-color: var(--gold-500);
  width: 42px;
}

/* ---- Scroll cue ---- */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.4);
  animation: heroBounce 2.2s ease-in-out infinite;
}

@keyframes heroBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .carousel-item,
  .hero-slide {
    height: 78vh;
    min-height: 520px;
  }

  .hero-control {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .hero-control-prev { left: 12px; }
  .hero-control-next { right: 12px; }
}

@media (max-width: 575.98px) {
  .carousel-item,
  .hero-slide {
    height: 47vh;
    min-height: 430px;
  }

  .hero-content {
    padding: 16px 0 50px;
    max-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 21, 36, 0.55) 0%, rgba(8, 21, 36, 0.88) 55%, rgba(8, 21, 36, 0.96) 100%);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-hero-ghost,
  .hero-cta-group .btn-booking {
    width: 100%;
    justify-content: center;
  }

  .hero-control {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 575.98px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  p  { font-size: 0.85rem; }
}

/* =========================================================
   FEATURED PROJECTS â€” PREMIUM CARD
   ========================================================= */

.projects-section {
  padding: 75px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, #efece3 100%);
}

/* ---- Section heading ---- */
.section-heading {
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 14px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Project Card ---- */
.project-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 46px rgba(8, 21, 36, 0.18);
  border-color: rgba(201, 162, 75, 0.4);
}

/* Ribbon "New" â€” folded corner style */
.project-ribbon {
  position: absolute;
  top: 18px;
  left: -32px;
  z-index: 5;
  width: 130px;
  text-align: center;
  padding: 5px 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--navy-900);
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
}

/* Media */
.project-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2,0.7,0.2,1);
}

.project-card:hover .project-card-media img {
  transform: scale(1.1);
}

.project-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,21,36,0) 60%, rgba(8,21,36,0.35) 100%);
  pointer-events: none;
}

.project-badge-sale {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  background-color: var(--navy-800);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Body */
.project-card-body {
  padding: 20px 20px 4px;
  flex-grow: 1;
}

.project-quick-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

/* Glass price tag */
.project-price {
  display: block;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-800);
  background: linear-gradient(135deg, rgba(201,162,75,0.16), rgba(201,162,75,0.05));
  border: 1px solid rgba(201, 162, 75, 0.35);
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.project-price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65rem;
  color: #8a97a8;
}

.project-name {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.project-card:hover .project-name {
  color: var(--gold-500);
}

.project-loc {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8rem;
  color: #667284;
  line-height: 1.5;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px dashed rgba(8, 21, 36, 0.1);
}

.project-loc i {
  color: var(--gold-500);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Actions */
.project-card-actions {
  display: flex;
  margin-top: auto;
}

.project-card-actions a,
.project-card-actions span {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
}

.pca-view {
  background-color: var(--off-white);
  color: var(--navy-800);
}

.pca-view:hover {
  background-color: #ece8dd;
}

.pca-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.pca-enquire:hover {
  background-color: var(--gold-400);
}

/* ---- Sold Out variant ---- */
.project-card-sold { border-color: rgba(181, 67, 61, 0.2); }

.project-sold-stamp {
  position: absolute;
  top: 20px;
  left: -38px;
  z-index: 5;
  width: 150px;
  text-align: center;
  padding: 6px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, #8f302b, #b5433d);
  transform: rotate(-40deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.project-sold-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(8, 21, 36, 0.4);
}

.project-card-sold .project-card-media img {
  filter: grayscale(65%) brightness(0.85);
}

.project-card-sold .project-name { color: #55606f; }

.project-price-sold {
  color: #9aa4b2;
  text-decoration: line-through;
  text-decoration-color: rgba(181, 67, 61, 0.6);
  background: rgba(8,21,36,0.04);
  border-color: rgba(8,21,36,0.1);
}

.pca-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #e6e2d8;
  color: #9aa4b2;
  cursor: not-allowed;
}

.project-card-sold:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(8, 21, 36, 0.08);
}

.project-card-sold:hover .project-card-media img { transform: none; }
.project-card-sold:hover .project-name { color: #55606f; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .project-card-media { height: 190px; }
}

@media (max-width: 767.98px) {
  .projects-section {padding: 35px 0;}
  .section-heading { margin-bottom: 32px; }
  .project-card-media { height: 200px; }
}

@media (max-width: 575.98px) {
  .project-ribbon,
  .project-sold-stamp {
    top: 16px;
    left: -40px;
    width: 135px;
    font-size: 0.62rem;
  }

  .project-badge-sale {
    top: 12px;
    right: 12px;
    font-size: 0.62rem;
    padding: 5px 11px;
  }

  .project-card-body { padding: 16px 16px 4px; }

  .project-card-actions a,
  .project-card-actions span {
    font-size: 0.75rem;
    padding: 12px 6px;
  }
}

/* =========================================================
   ABOUT US â€” DUAL IMAGE CLUSTER STYLE
   ========================================================= */

.about-section {
  position: relative;
  padding: 75px 0 65px;
  background-color: var(--white);
  overflow: hidden;
}

/* Diagonal color block behind images */
.about-bg-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
  background-color: var(--off-white);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Image cluster ---- */
.about-media-cluster {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 40px 40px 0;
}

.amc-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(8, 21, 36, 0.16);
}

.amc-main img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  display: block;
}

.amc-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 46%;
  border: 5px solid var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(8, 21, 36, 0.22);
}

.amc-accent img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Decorative dot grid */
.amc-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  z-index: 0;
  background-image: radial-gradient(var(--gold-500) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.5;
}

/* ---- Content side ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.about-title {
  margin-bottom: 20px;
}

.about-title span {
  color: var(--gold-500);
  font-style: italic;
}

.about-text {
  color: #55606f;
  margin-bottom: 30px;
}

/* Feature list */
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.afl-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.15rem;
  box-shadow: 0 8px 16px rgba(201, 162, 75, 0.3);
}

.about-feature-list h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.about-feature-list p {
  font-size: 0.82rem;
  color: #7c879a;
  margin: 0;
  line-height: 1.5;
}

/* CTA row */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-call-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.acl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy-800);
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-call-link span:last-child {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  line-height: 1.3;
}

.about-call-link small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: #8a97a8;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .about-section {padding: 27px 0;}

  .about-bg-block {
    width: 100%;
    height: 322px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }

  .about-media-cluster {
    max-width: 380px;
    padding: 16px 32px 32px 0;
  }
}

@media (max-width: 767.98px) {
  .about-media-cluster { margin-bottom: 20px; }

  .about-feature-list { gap: 18px; }
}

@media (max-width: 575.98px) {
  .about-title { font-size: 1.5rem; }

  .about-media-cluster {
    padding: 12px 26px 26px 0;
  }

  .afl-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .about-feature-list h4 { font-size: 0.88rem; }
  .about-feature-list p { font-size: 0.78rem; }

  .about-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* =========================================================
   FUN FACTS / STATS SECTION
   ========================================================= */

.stats-section {
  position: relative;
  padding: 44px;
  background-color: transparent;
}

.stats-strip {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  border-radius: var(--radius-md);
  padding: 44px 30px;
  margin-top: 40px
  margin-bottom: 40px;
  z-index: 3;
  box-shadow: 0 24px 50px rgba(8, 21, 36, 0.28);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle decorative wave pattern inside strip */
.stats-strip::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 320px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(201,162,75,0.14) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.7;
  pointer-events: none;
}

.stats-strip::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.1) 0%, rgba(201,162,75,0) 70%);
  pointer-events: none;
}

.stat-box {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(201, 162, 75, 0.3);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number small {
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted-soft);
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(201,162,75,0.35), transparent);
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .stats-strip {
    padding: 36px 20px;
  }

  .stat-icon {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .stat-number { font-size: 1.8rem; }
  .stat-number small { font-size: 1.05rem; }
  .stat-label { font-size: 0.76rem; }
}

@media (max-width: 767.98px) {
  .stats-strip {
    flex-wrap: wrap;
    gap: 28px 0;
    margin-top: -40px;
  }
    
    .stats-section{
        padding: 30px;
        margin-top: 40px;
    }

  .stat-box {
    flex: 0 0 50%;
    padding: 0 10px;
  }

  .stat-divider {
    display: none;
  }

  /* Vertical divider between the two rows */
  .stat-box:nth-child(1),
  .stat-box:nth-child(3) {
    position: relative;
  }

  .stat-box:nth-child(1)::after,
  .stat-box:nth-child(3)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,162,75,0.3), transparent);
  }
}

@media (max-width: 575.98px) {
  .stats-strip {
    padding: 30px 16px;
    border-radius: 14px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number { font-size: 1.5rem; }
  .stat-number small { font-size: 0.9rem; }
  .stat-label { font-size: 0.7rem; }
}

/* =========================================================
   VISION & MISSION â€” TIMELINE STYLE
   ========================================================= */

.vm-section {
  padding-top:50px;
    padding-bottom: 50px;
  background-color: var(--off-white);
}

/* ---- Image ---- */
.vm-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(8, 21, 36, 0.16);
}

.vm-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.vm-media-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(8, 21, 36, 0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(201, 162, 75, 0.4);
}

.vm-media-tag i {
  color: var(--gold-400);
}

/* ---- Heading ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.vm-title {
  margin-bottom: 34px;
  position: relative;
  padding-bottom: 18px;
}

.vm-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 4px;
}

/* ---- Timeline ---- */
.vm-timeline {
  position: relative;
  margin-bottom: 34px;
}

.vm-step {
  position: relative;
  display: flex;
  gap: 22px;
  padding-bottom: 34px;
}

.vm-step:last-child {
  padding-bottom: 0;
}

/* Connecting dotted line */
.vm-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 29px;
  bottom: 6px;
  width: 2px;
  background-image: linear-gradient(180deg, var(--gold-500) 0, var(--gold-500) 6px, transparent 6px, transparent 12px);
  background-size: 2px 12px;
  background-repeat: repeat-y;
}

.vm-step-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.35rem;
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

.vm-step-body h3 {
  margin-bottom: 8px;
}

.vm-step-body p {
  color: #5c6b7f;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ---- CTA button ---- */
.vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  background-color: var(--gold-500);
  padding: 13px 30px;
  border-radius: 50px;
  border: 1px solid var(--gold-500);
  transition: all 0.3s ease;
}

.vision-btn i {
  transition: transform 0.25s ease;
}

.vision-btn:hover {
  background-color: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

.vision-btn:hover i {
  transform: translate(3px, -3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .vm-section {padding: 38px 0;}
  .vm-media { margin-bottom: 10px; }
  .vm-media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 767.98px) {
  .vm-media { max-width: 460px; margin: 0 auto 40px; }
  .vm-media img { aspect-ratio: 4 / 3; }
}

@media (max-width: 575.98px) {
  .vm-title { font-size: 1.5rem; margin-bottom: 26px; }

  .vm-step { gap: 16px; padding-bottom: 26px; }

  .vm-step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .vm-step:not(:last-child)::before {
    top: 48px;
    left: 24px;
  }

  .vm-step-body p { font-size: 0.85rem; }

  .vision-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   MEET OUR TEAM SECTION
   ========================================================= */

.team-section {
  padding: 50px 0;
  background-color: var(--white);
}

/* ---- Section heading ---- */
.section-heading {
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 14px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* =========================================================
   LEADERSHIP CARDS
   ========================================================= */

.team-lead-card {
  display: flex;
  align-items: stretch;
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-lead-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.14);
}

.team-lead-img {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
}

.team-lead-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,21,36,0.15) 100%);
}

.team-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-lead-body {
  flex: 1;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.team-lead-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-lead-role {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.team-lead-bio {
  font-size: 0.82rem;
  color: #5c6b7f;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.team-lead-social {
  display: flex;
  gap: 10px;
}

.team-lead-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.team-lead-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* =========================================================
   CORE TEAM GRID
   ========================================================= */

.team-core-heading {
  margin-bottom: 34px;
  position: relative;
}

.team-core-heading h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.team-core-heading h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 4px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(8, 21, 36, 0.07);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(8, 21, 36, 0.13);
}

.team-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.08);
}

/* Social overlay on hover */
.team-card-social {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(8,21,36,0) 40%, rgba(8,21,36,0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-card-social {
  opacity: 1;
}

.team-card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.82rem;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.team-card:hover .team-card-social a {
  transform: translateY(0);
}

.team-card-social a:hover {
  background-color: var(--white);
}

.team-card-body {
  padding: 16px 14px;
  text-align: center;
}

.team-card-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.team-card-body span {
  font-size: 0.72rem;
  color: var(--gold-500);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .team-section {padding: 19px 0;}

  .team-lead-card {
    flex-direction: column;
  }

  .team-lead-img {
    flex: none;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767.98px) {
  .section-heading { margin-bottom: 32px; }
  .team-core-heading { margin-bottom: 26px; }
}

@media (max-width: 575.98px) {
  .team-lead-body {
    padding: 20px 18px;
  }

  .team-lead-bio {
    font-size: 0.8rem;
  }

  .team-card-body {
    padding: 12px 10px;
  }

  .team-card-body h4 {
    font-size: 0.82rem;
  }

  .team-card-body span {
    font-size: 0.66rem;
  }

  /* Always show social icons on mobile (no hover) */
  .team-card-social {
    opacity: 1;
    background: linear-gradient(180deg, rgba(8,21,36,0) 55%, rgba(8,21,36,0.7) 100%);
  }

  .team-card-social a {
    transform: translateY(0);
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}

/* =========================================================
   CORE TEAM â€” SWIPER SLIDER
   ========================================================= */

.team-core-heading {
  max-width: 560px;
  margin: 0 auto 40px;
}

.team-core-heading h3 {
  position: relative;
  padding-bottom: 16px;
}

.team-core-heading h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 4px;
}

.team-slider-wrap {
  position: relative;
  padding: 0 54px;
}

.team-swiper {
  overflow: hidden;
  padding-bottom: 50px;
}

.team-swiper .swiper-slide {
  height: auto;
}

/* Pagination dots */
.team-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.team-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(8, 21, 36, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.team-pagination .swiper-pagination-bullet-active {
  background-color: var(--gold-500);
  width: 24px;
  border-radius: 4px;
}

/* Nav arrows */
.team-nav {
  position: absolute;
  top: calc(50% - 25px);
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid rgba(8, 21, 36, 0.1);
  color: var(--navy-800);
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(8, 21, 36, 0.1);
  transition: all 0.25s ease;
}

.team-nav-prev { left: 0; }
.team-nav-next { right: 0; }

.team-nav:hover {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.team-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .team-slider-wrap {
    padding: 0 0;
  }

  .team-nav {
    display: none;
  }

  .team-swiper {
    padding-bottom: 44px;
  }
}

@media (max-width: 575.98px) {
  .team-core-heading {
    margin-bottom: 28px;
  }
}

/* =========================================================
   QUICK CONTACT SECTION
   ========================================================= */

.contact-section {
  position: relative;
  padding: 55px 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201,162,75,0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Heading ---- */
.section-heading {
  max-width: 600px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Info Cards ---- */
.contact-info-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 44px 24px 28px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.14);
}

.cic-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  border: 4px solid var(--white);
  box-shadow: 0 10px 22px rgba(8, 21, 36, 0.2);
}

.cic-icon-navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.cic-icon-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: #667284;
  margin-bottom: 0;
}

.contact-info-card p a {
  color: #667284;
  transition: color 0.2s ease;
}

.contact-info-card p a:hover {
  color: var(--gold-500);
}

/* ---- Main Card (Form + Side Panel) ---- */
.contact-main-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(8, 21, 36, 0.14);
}

/* Form side */
.contact-form-wrap {
  padding: 50px 46px;
}

.contact-input {
  background-color: var(--off-white);
  border: 1px solid rgba(8, 21, 36, 0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--navy-900);
  box-shadow: none;
}

.contact-input::placeholder {
  color: #9aa4b2;
}

.contact-input:focus {
  background-color: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

textarea.contact-input {
  resize: none;
}

.contact-form .btn-booking {
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

/* Side panel â€” navy, decorative */
.contact-side-panel {
  position: relative;
  height: 100%;
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-side-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-radial-gradient(circle at 100% 0%, transparent 0, transparent 34px, rgba(201,162,75,0.08) 35px, transparent 36px);
  opacity: 0.6;
  pointer-events: none;
}

.contact-side-inner {
  position: relative;
  z-index: 1;
  padding: 50px 40px;
}

.contact-side-eyebrow {
  color: var(--gold-400);
  background-color: rgba(201, 162, 75, 0.12);
  border-color: rgba(201, 162, 75, 0.3);
}

.contact-side-title {
  color: var(--white);
  margin-bottom: 14px;
}

.contact-side-text {
  color: var(--text-muted-soft);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-side-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
}

.contact-side-list li i {
  color: var(--gold-400);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-side-social {
  display: flex;
  gap: 10px;
}

.contact-side-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.contact-side-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .contact-section {padding: 29px 0;}
  .contact-form-wrap { padding: 40px 32px; }
  .contact-side-inner { padding: 40px 32px; }
}

@media (max-width: 767.98px) {
  .section-heading { margin-bottom: 32px; }

  .cic-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    top: -26px;
  }

  .contact-info-card {
    padding: 38px 20px 24px;
  }

  .contact-form-wrap,
  .contact-side-inner {
    padding: 34px 24px;
  }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }

  .contact-info-card h3 { font-size: 0.95rem; }
  .contact-info-card p { font-size: 0.8rem; }

  .contact-form .btn-booking {
    width: 100%;
    justify-content: center;
  }

  .contact-side-title { font-size: 1.35rem; }
}


/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */

.testimonial-section {
  position: relative;
  padding: 55px 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.testimonial-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201,162,75,0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 0%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 55% 45% at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

.testimonial-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Heading ---- */
.section-heading {
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Slider wrap ---- */
.testimonial-slider-wrap {
  position: relative;
  padding: 0 56px;
}

.testimonial-swiper {
  overflow: hidden;
  padding: 6px 6px 54px;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px 26px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(8, 21, 36, 0.15);
  border-color: rgba(201, 162, 75, 0.35);
}

.tc-quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(201, 162, 75, 0.3);
}

.tc-title {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
}

.tc-text {
  font-size: 0.85rem;
  color: #5c6b7f;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Footer: avatar + name + rating */
.tc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed rgba(8, 21, 36, 0.1);
}

.tc-avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.tc-person {
  flex-grow: 1;
  min-width: 0;
}

.tc-person h4 {
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.tc-person span {
  font-size: 0.74rem;
  color: #8a97a8;
}

.tc-rating {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-800);
  background-color: rgba(201, 162, 75, 0.12);
  padding: 5px 10px;
  border-radius: 8px;
}

.tc-rating i {
  color: #f0b429;
  font-size: 0.8rem;
}

/* ---- Pagination ---- */
.testimonial-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(8, 21, 36, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: var(--gold-500);
  width: 24px;
  border-radius: 4px;
}

/* ---- Nav arrows ---- */
.testimonial-nav {
  position: absolute;
  top: calc(50% - 27px);
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border: 1px solid rgba(8, 21, 36, 0.1);
  color: var(--navy-800);
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(8, 21, 36, 0.1);
  transition: all 0.25s ease;
}

.testimonial-nav-prev { left: 0; }
.testimonial-nav-next { right: 0; }

.testimonial-nav:hover {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.testimonial-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .testimonial-section {padding: 37px 0;}
  .testimonial-card { padding: 28px 22px 22px; }
}

@media (max-width: 767.98px) {
  .testimonial-slider-wrap { padding: 0 0; }
  .testimonial-nav { display: none; }
  .section-heading { margin-bottom: 34px; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }
  .tc-title { font-size: 0.92rem; }
  .tc-text { font-size: 0.8rem; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  background-color: var(--navy-900);
  overflow: hidden;
}

.footer-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201,162,75,0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* ---- Newsletter strip ---- */
.footer-newsletter {
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  padding: 34px 0;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fn-text h3 {
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.fn-text p {
  font-size: 0.82rem;
  color: rgba(8, 21, 36, 0.75);
  margin-bottom: 0;
}

.fn-form {
  display: flex;
  background-color: var(--white);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 10px 26px rgba(8, 21, 36, 0.18);
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

.fn-form input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--navy-900);
  min-width: 0;
}

.fn-form input::placeholder {
  color: #9aa4b2;
}

.fn-form button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--navy-900);
  color: var(--white);
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
}

.fn-form button:hover {
  background-color: var(--navy-700);
}

/* ---- Main footer ---- */
.footer-main {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
}

/* Brand column */
.footer-brand {
  padding-right: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 42px;
  width: auto;
  background-color: var(--white);
  border-radius: 6px;
  padding: 4px 6px;
}

.footer-logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.footer-logo em {
  font-style: normal;
  color: var(--gold-400);
}

.footer-logo small {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-about-text {
  font-size: 0.85rem;
  color: var(--text-muted-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

/* Footer columns headings */
.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 4px;
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted-soft);
  transition: all 0.25s ease;
}

.footer-links a i {
  color: var(--gold-500);
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-links a:hover i {
  transform: translateX(2px);
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fcl-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(201, 162, 75, 0.12);
  color: var(--gold-400);
  font-size: 0.85rem;
}

.footer-contact-list li span:last-child,
.footer-contact-list li a {
  font-size: 0.84rem;
  color: var(--text-muted-soft);
  line-height: 1.5;
  padding-top: 6px;
  transition: color 0.25s ease;
}

.footer-contact-list li a:hover {
  color: var(--gold-300);
}

/* ---- Bottom bar ---- */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-inner p a {
  color: var(--gold-400);
  font-weight: 600;
}

.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted-soft);
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: var(--gold-400);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .fn-form { max-width: 100%; }

  .footer-main { padding: 50px 0 34px; }
}

@media (max-width: 767.98px) {
  .footer-brand { padding-right: 0; margin-bottom: 10px; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }
}

@media (max-width: 575.98px) {
  .fn-text h3 { font-size: 1.05rem; }
  .fn-text p { font-size: 0.78rem; }

  .fn-form {
    flex-direction: column;
    border-radius: 14px;
    padding: 8px;
  }

  .fn-form input {
    padding: 10px 12px;
    text-align: center;
  }

  .fn-form button {
    justify-content: center;
    border-radius: 10px;
    margin-top: 4px;
  }

  .footer-heading { font-size: 0.98rem; }
}


/* =========================================================
   FLOATING CONTACT BUTTONS (Call + WhatsApp)
   ========================================================= */

.floating-contact-group {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Outer button — NO overflow hidden here, so glow isn't clipped */
.fcb-btn {
  position: relative;
  display: block;
  height: 52px;
  width: 52px;
  border-radius: 50px;
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fcb-btn:hover {
  width: 168px;
}

/* Inner wrapper — holds the shape/clip/background */
.fcb-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8, 21, 36, 0.28);
  transition: box-shadow 0.3s ease;
}

.fcb-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  color: var(--white);
  z-index: 2;
}

.fcb-label {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  padding-right: 18px;
}

.fcb-btn:hover .fcb-label {
  opacity: 1;
  transform: translateX(0);
}

/* Call button — navy background on inner, glow animation on outer */
.fcb-call {
  animation: fcbGlowGold 2.4s ease-in-out infinite;
}

.fcb-call .fcb-inner {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 2px solid rgba(201, 162, 75, 0.4);
}

.fcb-call:hover {
  animation: none;
}

.fcb-call:hover .fcb-inner {
  border-color: var(--gold-500);
}

/* WhatsApp button — brand green background on inner, glow animation on outer */
.fcb-whatsapp {
  animation: fcbGlowGreen 2.4s ease-in-out infinite;
}

.fcb-whatsapp .fcb-inner {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.fcb-whatsapp:hover {
  animation: none;
}

/* Pulse ring — WhatsApp only, extra draw-attention layer */
.fcb-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.55);
  z-index: 1;
  animation: fcbPulse 2.2s ease-out infinite;
  pointer-events: none;
}

.fcb-btn:hover .fcb-pulse {
  display: none;
}

/* ---- Keyframes ---- */
@keyframes fcbPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes fcbGlowGold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.6);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 162, 75, 0);
  }
}

@keyframes fcbGlowGreen {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .floating-contact-group {
    left: 14px;
    bottom: 18px;
    gap: 12px;
  }

  .fcb-btn,
  .fcb-inner,
  .fcb-icon,
  .fcb-pulse {
    width: 46px;
    height: 46px;
  }

  .fcb-icon {
    font-size: 1.15rem;
  }

  .fcb-btn:hover {
    width: 46px;
  }

  .fcb-label {
    display: none;
  }
}

/* =========================================================
   LEADERSHIP TABS SECTION
   ========================================================= */

.leadership-tab-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* ---- Section heading ---- */
.section-heading {
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 14px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Tab Nav ---- */
.lt-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  flex-wrap: wrap;
}

.lt-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--off-white);
  border: 1.5px solid rgba(8, 21, 36, 0.1);
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lt-nav-btn i {
  font-size: 0.9rem;
  color: var(--gold-500);
  transition: color 0.3s ease;
}

.lt-nav-btn:hover {
  border-color: rgba(201, 162, 75, 0.4);
  background-color: rgba(201, 162, 75, 0.06);
}

.lt-nav-btn.active {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-color: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(8, 21, 36, 0.22);
}

.lt-nav-btn.active i {
  color: var(--gold-400);
}

/* ---- Tab content fade transition ---- */
.lt-tab-content .tab-pane {
  transition: opacity 0.3s ease;
}

/* ---- Leadership Card ---- */
.lt-card {
  display: flex;
  align-items: stretch;
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.14);
}

.lt-card-img {
  flex: 0 0 42%;
  max-width: 38%;
  position: relative;
  overflow: hidden;
}

.lt-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,21,36,0.15) 100%);
}

.lt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lt-card-body {
  flex: 1;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.lt-card-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.lt-card-role {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.lt-card-bio {
  font-size: 0.82rem;
  color: #5c6b7f;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.lt-card-social {
  display: flex;
  gap: 10px;
}

.lt-card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--navy-800);
  color: var(--gold-400);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.lt-card-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .leadership-tab-section { padding: 60px 0; }

  .lt-card {
    flex-direction: column;
  }

  .lt-card-img {
    flex: none;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767.98px) {
  .section-heading { margin-bottom: 32px; }

  .lt-nav {
    gap: 8px;
    margin-bottom: 34px;
  }

  .lt-nav-btn {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
}

@media (max-width: 575.98px) {
  .lt-nav {
    flex-direction: column;
    width: 100%;
  }

  .lt-nav-btn {
    width: 100%;
    justify-content: center;
  }

  .lt-card-body {
    padding: 20px 18px;
  }

  .lt-card-bio {
    font-size: 0.8rem;
  }
}

/* =========================================================
   SCROLL PROGRESS LOADER
   ========================================================= */

/* Thin top progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 1060;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px rgba(201, 162, 75, 0.6);
}

/* Circular percentage badge — bottom right, doubles as scroll-to-top */
.scroll-progress-badge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1055;
  width: 52px;
  height: 52px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.scroll-progress-badge.spb-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.spb-ring {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

.spb-ring-bg {
  fill: var(--navy-900);
  stroke: rgba(201, 162, 75, 0.15);
  stroke-width: 3;
}

.spb-ring-fill {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 119.4; /* 2 * PI * r(19) */
  stroke-dashoffset: 119.4;
  transition: stroke-dashoffset 0.15s ease-out;
}

.spb-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold-300);
  transition: opacity 0.25s ease;
}

.spb-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-300);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.scroll-progress-badge:hover .spb-percent {
  opacity: 0;
}

.scroll-progress-badge:hover .spb-arrow {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .scroll-progress-badge {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .spb-ring {
    width: 46px;
    height: 46px;
  }

  .spb-percent {
    font-size: 0.56rem;
  }

  .spb-arrow {
    font-size: 1rem;
  }
}

/* =========================================================
   PROJECT DOCUMENTS / PDF DOWNLOAD SECTION (Icon Style)
   ========================================================= */

.doc-section {
  padding: 75px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- PDF Card — icon based ---- */
.doc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.15);
  border-color: rgba(201, 162, 75, 0.35);
}

.doc-card:hover::before {
  transform: scaleY(1);
}

/* File type icon block */
.doc-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220,60,60,0.12), rgba(220,60,60,0.06));
  color: #d63c3c;
  font-size: 1.7rem;
  transition: all 0.35s ease;
}

.doc-card:hover .doc-card-icon {
  background: linear-gradient(135deg, #d63c3c, #b52d2d);
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}

/* Text info */
.doc-card-info {
  flex-grow: 1;
  min-width: 0;
}

.doc-card-name {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 5px;
  line-height: 1.35;
}

.doc-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8a97a8;
}

.doc-card-meta i {
  color: var(--gold-500);
  font-size: 0.8rem;
}

/* Download action circle */
.doc-card-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--off-white);
  color: var(--gold-500);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.doc-card:hover .doc-card-action {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .doc-section { padding: 54px 0; }
  .section-heading { margin-bottom: 32px; }

  .doc-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .doc-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .doc-card-name { font-size: 0.88rem; }
  .doc-card-meta { font-size: 0.7rem; }

  .doc-card-action {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* =========================================================
   PAGE BREADCRUMB HERO (Inner Pages)
   ========================================================= */

.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--navy-900);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,21,36,0.55) 0%, rgba(8,21,36,0.75) 60%, rgba(8,21,36,0.95) 100%),
    linear-gradient(90deg, rgba(8,21,36,0.85) 0%, rgba(8,21,36,0.3) 60%);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(201,162,75,0.18) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 70%);
  mask-image: linear-gradient(180deg, black, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  background-color: rgba(201, 162, 75, 0.14);
  border: 1px solid rgba(201, 162, 75, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.page-hero-title {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.page-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted-soft);
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--gold-400);
}

.pb-sep {
  color: rgba(201, 162, 75, 0.5);
  font-size: 0.7rem;
}

.pb-current {
  color: var(--gold-400);
  font-weight: 600;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .page-hero {
    height: 240px;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    height: 210px;
  }

  .page-hero-title {
    font-size: 1.35rem;
  }

  .page-breadcrumb {
    font-size: 0.78rem;
  }
}

/* =========================================================
   PROJECT DOCUMENTS / PDF DOWNLOAD SECTION (Icon Style)
   ========================================================= */

.doc-section {
  padding: 75px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- PDF Card — icon based ---- */
.doc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.15);
  border-color: rgba(201, 162, 75, 0.35);
}

.doc-card:hover::before {
  transform: scaleY(1);
}

/* File type icon block */
.doc-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220,60,60,0.12), rgba(220,60,60,0.06));
  color: #d63c3c;
  font-size: 1.7rem;
  transition: all 0.35s ease;
}

.doc-card:hover .doc-card-icon {
  background: linear-gradient(135deg, #d63c3c, #b52d2d);
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}

/* Text info */
.doc-card-info {
  flex-grow: 1;
  min-width: 0;
}

.doc-card-name {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 5px;
  line-height: 1.35;
}

.doc-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8a97a8;
}

.doc-card-meta i {
  color: var(--gold-500);
  font-size: 0.8rem;
}

/* Download action circle */
.doc-card-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--off-white);
  color: var(--gold-500);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.doc-card:hover .doc-card-action {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .doc-section { padding: 54px 0; }
  .section-heading { margin-bottom: 32px; }

  .doc-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .doc-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .doc-card-name { font-size: 0.88rem; }
  .doc-card-meta { font-size: 0.7rem; }

  .doc-card-action {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* =========================================================
   PROJECT DOCUMENTS — AUTO-THUMBNAIL PDF CARDS (pdfx)
   ========================================================= */

.pdfx-section {
  padding: 75px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- PDF Card ---- */
.pdfx-card {
  display: block;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pdfx-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(8, 21, 36, 0.15);
  border-color: rgba(201, 162, 75, 0.4);
}

/* Thumbnail wrap — holds auto-rendered canvas */
.pdfx-thumb-wrap {
  position: relative;
  height: 300px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdfx-canvas {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.96);
}

.pdfx-canvas.pdfx-loaded {
  opacity: 1;
  transform: scale(1);
}

.pdfx-card:hover .pdfx-canvas {
  transform: scale(1.04);
}

/* Loading spinner shown until canvas renders */
.pdfx-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.pdfx-loading.pdfx-done {
  opacity: 0;
  pointer-events: none;
}

.pdfx-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(201, 162, 75, 0.2);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: pdfxSpin 0.8s linear infinite;
}

@keyframes pdfxSpin {
  to { transform: rotate(360deg); }
}

/* Hover overlay */
.pdfx-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(8, 21, 36, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pdfx-card:hover .pdfx-overlay {
  opacity: 1;
}

.pdfx-view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.3rem;
  transform: scale(0.8);
  transition: transform 0.35s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.pdfx-card:hover .pdfx-view-icon {
  transform: scale(1);
}

.pdfx-view-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* Top-left PDF badge */
.pdfx-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  background-color: rgba(214, 60, 60, 0.9);
  padding: 5px 11px;
  border-radius: 6px;
}

/* Footer */
.pdfx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.pdfx-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
}

.pdfx-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--off-white);
  color: var(--gold-500);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pdfx-card:hover .pdfx-download {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .pdfx-section { padding: 54px 0; }
  .section-heading { margin-bottom: 32px; }
  .pdfx-thumb-wrap { height: 260px; }
}

@media (max-width: 575.98px) {
  .pdfx-thumb-wrap { height: 230px; }
  .pdfx-footer { padding: 15px 16px; }
  .pdfx-name { font-size: 0.85rem; }
  .pdfx-download { width: 34px; height: 34px; font-size: 0.9rem; }
}


/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .doc-section { padding: 54px 0; }
  .section-heading { margin-bottom: 32px; }
  .doc-card-thumb { height: 200px; }
}

@media (max-width: 575.98px) {
  .doc-card-thumb { height: 190px; }
  .doc-card-footer { padding: 14px 16px; }
  .doc-card-name { font-size: 0.84rem; }
}

/* =========================================================
   PROJECT DOCUMENTS SECTION (pdoc, no JS, iframe auto-preview)
   ========================================================= */

.pdoc-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- PDF Card ---- */
.pdoc-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pdoc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(8, 21, 36, 0.14);
}

/* Preview area */
.pdoc-preview {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #eceef1;
  border-bottom: 3px solid var(--gold-500);
}

.pdoc-iframe {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  border: none;
  pointer-events: none;
}

/* Clickable cover with centered hover button */
.pdoc-link-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0);
  transition: background-color 0.3s ease;
}

.pdoc-card:hover .pdoc-link-cover {
  background-color: rgba(8, 21, 36, 0.45);
}

.pdoc-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  background-color: var(--gold-500);
  padding: 11px 22px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.pdoc-card:hover .pdoc-hover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.pdoc-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.pdoc-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220,60,60,0.12), rgba(220,60,60,0.06));
  color: #d63c3c;
  font-size: 1.35rem;
}

.pdoc-footer-text {
  flex-grow: 1;
  min-width: 0;
}

.pdoc-footer-text h4 {
  font-size: 0.94rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.pdoc-footer-text span {
  font-size: 0.76rem;
  color: #8a97a8;
}

.pdoc-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--off-white);
  color: var(--gold-500);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.pdoc-download:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .pdoc-preview { height: 290px; }
}

@media (max-width: 767.98px) {
  .pdoc-section { padding: 58px 0; }
  .section-heading { margin-bottom: 34px; }
  .pdoc-preview { height: 260px; }
}

@media (max-width: 575.98px) {
  .pdoc-preview { height: 230px; }
  .pdoc-footer { padding: 16px 18px; }
  .pdoc-footer-text h4 { font-size: 0.86rem; }
  .pdoc-footer-text span { font-size: 0.7rem; }
  .pdoc-hover-btn { font-size: 0.76rem; padding: 9px 18px; }
}


/* =========================================================
   ABOUT US PAGE — PREMIUM CONTENT SECTIONS (abtpg)
   ========================================================= */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ---- Intro Block ---- */
.abtpg-intro {
  padding: 80px 0 0;
  background-color: var(--white);
}

.abtpg-intro-inner {
  max-width: 780px;
  margin: 0 auto 50px;
}

.abtpg-intro-title {
  margin-bottom: 20px;
}

.abtpg-intro-text {
  color: #55606f;
  line-height: 1.85;
  margin-bottom: 34px;
}

.abtpg-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.abtpg-divider span {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.abtpg-divider span:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.abtpg-divider i {
  color: var(--gold-500);
  font-size: 1rem;
}

.abtpg-vm-title {
  margin-bottom: 16px;
}

.abtpg-vm-text {
  color: #55606f;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Stats strip — same pattern used elsewhere on the site */
.abtpg-stats-strip {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  margin-bottom: 0;
  box-shadow: 0 24px 50px rgba(8, 21, 36, 0.22);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.abtpg-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.abtpg-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.2rem;
  margin-bottom: 12px;
  box-shadow: 0 10px 20px rgba(201, 162, 75, 0.3);
}

.abtpg-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.abtpg-stat-number small {
  font-size: 1.1rem;
  color: var(--gold-400);
}

.abtpg-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted-soft);
}

.abtpg-stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(201,162,75,0.35), transparent);
  flex-shrink: 0;
}

/* ---- Most Connected Place ---- */
.abtpg-connect-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.abtpg-block-title {
  margin-bottom: 18px;
}

.abtpg-block-title span {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.65em;
}

.abtpg-block-text {
  color: #55606f;
  line-height: 1.75;
  margin-bottom: 26px;
}

.abtpg-block-text-center {
  color: #55606f;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

.abtpg-value-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,162,75,0.1), rgba(201,162,75,0.04));
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.abtpg-value-badge i {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold-500);
}

.abtpg-value-badge span {
  font-size: 0.86rem;
  color: var(--navy-800);
  line-height: 1.5;
}

/* Check list */
.abtpg-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.abtpg-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #465063;
  line-height: 1.6;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(8, 21, 36, 0.08);
}

.abtpg-check-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.abtpg-check-list li i {
  flex-shrink: 0;
  color: var(--gold-500);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ---- Airport Section ---- */
.abtpg-airport-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
}

/* Feature cards */
.abtpg-feature-card {
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abtpg-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(8, 21, 36, 0.1);
}

.abtpg-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(201, 162, 75, 0.28);
}

.abtpg-feature-card h4 {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.abtpg-feature-card p {
  font-size: 0.82rem;
  color: #7c879a;
  line-height: 1.6;
  margin: 0;
}

/* Milestone timeline */
.abtpg-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 30px;
}

.abtpg-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), rgba(201,162,75,0.15));
}

.abtpg-timeline-item {
  position: relative;
  padding-bottom: 28px;
  padding-left: 24px;
}

.abtpg-timeline-item-final {
  padding-bottom: 0;
}

.abtpg-timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--gold-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px rgba(201, 162, 75, 0.4);
}

.abtpg-timeline-date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.abtpg-timeline-item p {
  font-size: 0.88rem;
  color: #465063;
  line-height: 1.6;
  margin: 0;
}

/* ---- Film City Section ---- */
.abtpg-filmcity-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.abtpg-highlight-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 14px 34px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.abtpg-hc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(8, 21, 36, 0.1);
}

.abtpg-hc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.abtpg-hc-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,75,0.14), rgba(201,162,75,0.05));
  color: var(--gold-500);
  font-size: 1.25rem;
}

.abtpg-hc-row h4 {
  font-size: 0.98rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.abtpg-hc-row span {
  font-size: 0.8rem;
  color: #7c879a;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .abtpg-intro { padding: 60px 0 0; }
  .abtpg-connect-section,
  .abtpg-airport-section,
  .abtpg-filmcity-section { padding: 60px 0; }

  .abtpg-stats-strip {
    padding: 32px 20px;
  }

  .abtpg-stat-icon { width: 42px; height: 42px; font-size: 1.05rem; }
  .abtpg-stat-number { font-size: 1.6rem; }
  .abtpg-stat-label { font-size: 0.72rem; }
}

@media (max-width: 767.98px) {
  .abtpg-stats-strip {
    flex-wrap: wrap;
    gap: 26px 0;
  }

  .abtpg-stat { flex: 0 0 50%; }
  .abtpg-stat-divider { display: none; }

  .abtpg-block-title { font-size: 1.5rem; }

  .abtpg-timeline { padding-left: 20px; }
}

@media (max-width: 575.98px) {
  .abtpg-intro-title { font-size: 1.5rem; }
  .abtpg-vm-title { font-size: 1.2rem; }
  .abtpg-intro-text,
  .abtpg-vm-text { font-size: 0.86rem; }

  .abtpg-stats-strip {
    padding: 26px 14px;
    border-radius: 14px;
  }

  .abtpg-stat-number { font-size: 1.4rem; }

  .abtpg-check-list li { font-size: 0.86rem; }

  .abtpg-feature-card { padding: 22px 16px; }

  .abtpg-timeline-dot { left: -26px; }

  .abtpg-highlight-card { padding: 22px; gap: 18px; }

  .abtpg-hc-icon { width: 42px; height: 42px; font-size: 1.05rem; }
  .abtpg-hc-row h4 { font-size: 0.88rem; }
  .abtpg-hc-row span { font-size: 0.74rem; }
}

/* =========================================================
   PROJECT DOCUMENTS — OPTIONAL THUMBNAIL, NO JS (pdfz)
   ========================================================= */

.pdfz-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 600px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- PDF Card ---- */
.pdfz-card {
  display: block;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pdfz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(8, 21, 36, 0.14);
}

/* Media box (works with or without an image) */
.pdfz-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-500);
  background-color: var(--navy-900);
}

.pdfz-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.pdfz-card:hover .pdfz-media-img {
  transform: scale(1.06);
}

/* Fallback (no image) — centered gold PDF icon on navy gradient */
.pdfz-media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
}

.pdfz-fallback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201,162,75,0.16), rgba(201,162,75,0.06));
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 2.6rem;
  transition: transform 0.4s ease;
}

.pdfz-card:hover .pdfz-fallback-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Top-left type tag */
.pdfz-media-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  background-color: rgba(214, 60, 60, 0.9);
  padding: 5px 11px;
  border-radius: 6px;
}

/* Hover overlay with view icon */
.pdfz-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pdfz-card:hover .pdfz-media-overlay {
  opacity: 1;
}

.pdfz-view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.3rem;
  transform: scale(0.8);
  transition: transform 0.35s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.pdfz-card:hover .pdfz-view-icon {
  transform: scale(1);
}

/* Footer */
.pdfz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
}

.pdfz-footer-text h4 {
  font-size: 0.94rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.pdfz-footer-text span {
  font-size: 0.76rem;
  color: #8a97a8;
}

.pdfz-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--off-white);
  color: var(--gold-500);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.pdfz-card:hover .pdfz-download {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .pdfz-media { height: 270px; }
}

@media (max-width: 767.98px) {
  .pdfz-section { padding: 58px 0; }
  .section-heading { margin-bottom: 34px; }
  .pdfz-media { height: 250px; }
  .pdfz-fallback-icon { width: 78px; height: 78px; font-size: 2.2rem; }
}

@media (max-width: 575.98px) {
  .pdfz-media { height: 220px; }
  .pdfz-fallback-icon { width: 66px; height: 66px; font-size: 1.9rem; border-radius: 16px; }
  .pdfz-footer { padding: 16px 18px; }
  .pdfz-footer-text h4 { font-size: 0.86rem; }
  .pdfz-footer-text span { font-size: 0.7rem; }
}

/* =========================================================
   SITE PLAN & PAYMENT PLAN SECTION
   ========================================================= */

.siteplan-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Card ---- */
.siteplan-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.siteplan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(8, 21, 36, 0.14);
}

/* Card header */
.siteplan-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.siteplan-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(201, 162, 75, 0.28);
}

.siteplan-card-head h3 {
  font-size: 1.1rem;
  margin: 0;
}

/* Image frame — gold border, zoom overlay */
.siteplan-frame {
  position: relative;
  border: 3px solid var(--gold-500);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--white);
  margin-bottom: 18px;
}

.siteplan-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: contain;
  background-color: #fdfcf9;
  transition: transform 0.4s ease;
}

.siteplan-card:hover .siteplan-img {
  transform: scale(1.02);
}

.siteplan-zoom-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0);
  transition: background-color 0.3s ease;
}

.siteplan-card:hover .siteplan-zoom-link {
  background-color: rgba(8, 21, 36, 0.35);
}

.siteplan-zoom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.siteplan-card:hover .siteplan-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* Download button */
.siteplan-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--off-white);
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(8, 21, 36, 0.08);
  transition: all 0.3s ease;
}

.siteplan-download-btn:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .siteplan-section { padding: 60px 0; }
  .siteplan-img { max-height: 380px; }
}

@media (max-width: 767.98px) {
  .section-heading { margin-bottom: 32px; }
  .siteplan-card { padding: 20px; }
  .siteplan-card-head h3 { font-size: 1rem; }
}

@media (max-width: 575.98px) {
  .siteplan-img { max-height: 320px; }

  .siteplan-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .siteplan-download-btn {
    font-size: 0.8rem;
    padding: 11px;
  }
}

/* Zoom overlay — cursor indicates clickable */
.siteplan-frame {
  cursor: zoom-in;
}

/* Overlay always positioned, no longer wrapped in <a> */
.siteplan-zoom-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.siteplan-card:hover .siteplan-zoom-link {
  background-color: rgba(8, 21, 36, 0.35);
}

/* ---- Modal / Lightbox styling ---- */
.siteplan-modal .modal-content {
  background-color: var(--navy-900);
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.siteplan-modal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
  overflow: auto;
  background-color: #fdfcf9;
}

.siteplan-modal-img {
  width: 100%;
  height: auto;
  display: block;
}

.siteplan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold-500);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.siteplan-modal-close:hover {
  background-color: var(--gold-400);
  transform: rotate(90deg);
}

.siteplan-modal-close::before {
  content: none;
}

.siteplan-modal-footer {
  display: flex;
  justify-content: center;
  padding: 16px;
  background-color: var(--navy-900);
}

.siteplan-modal-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  padding: 11px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.siteplan-modal-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 162, 75, 0.3);
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
  .siteplan-modal .modal-dialog {
    margin: 12px;
  }

  .siteplan-modal-close {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* =========================================================
   MEDIA GALLERY SECTION (mediagal)
   ========================================================= */

.mediagal-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }
.section-subtitle { color: #5c6b7f; margin-bottom: 0; }

/* ---- Masonry-style grid ---- */
.mediagal-grid {
  column-count: 4;
  column-gap: 18px;
}

.mediagal-item {
  break-inside: avoid;
  margin-bottom: 18px;
}

.mediagal-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 8px 22px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mediagal-trigger:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(8, 21, 36, 0.16);
}

.mediagal-trigger img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mediagal-trigger:hover img {
  transform: scale(1.05);
}

.mediagal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(8, 21, 36, 0);
  transition: background-color 0.35s ease;
}

.mediagal-trigger:hover .mediagal-overlay {
  background-color: rgba(8, 21, 36, 0.4);
}

.mediagal-zoom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 1.15rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.mediagal-trigger:hover .mediagal-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ---- Lightbox Modal ---- */
.mediagal-modal .modal-content {
  background-color: var(--navy-900);
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.mediagal-modal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
  overflow: hidden;
  background-color: #10192a;
}

.mediagal-modal-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.mediagal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold-500);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.mediagal-modal-close:hover {
  background-color: var(--gold-400);
  transform: rotate(90deg);
}

.mediagal-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-400);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.mediagal-modal-prev { left: 16px; }
.mediagal-modal-next { right: 16px; }

.mediagal-modal-nav:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.mediagal-modal-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(8, 21, 36, 0.6);
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
  .mediagal-grid { column-count: 3; }
}

@media (max-width: 767.98px) {
  .mediagal-section { padding: 58px 0; }
  .section-heading { margin-bottom: 32px; }
  .mediagal-grid { column-count: 2; column-gap: 12px; }
  .mediagal-item { margin-bottom: 12px; }
}

@media (max-width: 575.98px) {
  .mediagal-modal-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .mediagal-modal-prev { left: 8px; }
  .mediagal-modal-next { right: 8px; }

  .mediagal-modal-counter {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

/* =========================================================
   CONTACT US PAGE (ctp)
   ========================================================= */

.ctp-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.ctp-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201,162,75,0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 60% 45% at 50% 0%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 45% at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

.ctp-section .container {
  position: relative;
  z-index: 1;
}

.ctp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ---- Info Cards ---- */
.ctp-info-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 44px 24px 28px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(8, 21, 36, 0.08);
  border: 1px solid rgba(8, 21, 36, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ctp-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 21, 36, 0.14);
}

.ctp-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  border: 4px solid var(--white);
  box-shadow: 0 10px 22px rgba(8, 21, 36, 0.2);
}

.ctp-icon-navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.ctp-icon-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
}

.ctp-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ctp-info-card p {
  font-size: 0.85rem;
  color: #667284;
  margin-bottom: 0;
}

.ctp-info-card p a {
  color: #667284;
  transition: color 0.2s ease;
}

.ctp-info-card p a:hover {
  color: var(--gold-500);
}

/* ---- Main Card (Form + Side Panel) ---- */
.ctp-main-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(8, 21, 36, 0.14);
  margin-bottom: 50px;
}

.ctp-form-wrap {
  padding: 50px 46px;
}

.ctp-form-title {
  margin-bottom: 10px;
}

.ctp-form-subtitle {
  color: #5c6b7f;
  font-size: 0.88rem;
  margin-bottom: 26px;
}

.ctp-input {
  background-color: var(--off-white);
  border: 1px solid rgba(8, 21, 36, 0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.88rem;
  color: var(--navy-900);
  box-shadow: none;
}

.ctp-input::placeholder {
  color: #9aa4b2;
}

.ctp-input:focus {
  background-color: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

textarea.ctp-input {
  resize: none;
}

.ctp-form .btn-booking {
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

/* Side panel */
.ctp-side-panel {
  position: relative;
  height: 100%;
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ctp-side-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-radial-gradient(circle at 100% 0%, transparent 0, transparent 34px, rgba(201,162,75,0.08) 35px, transparent 36px);
  opacity: 0.6;
  pointer-events: none;
}

.ctp-side-inner {
  position: relative;
  z-index: 1;
  padding: 50px 40px;
}

.ctp-side-eyebrow {
  color: var(--gold-400);
  background-color: rgba(201, 162, 75, 0.12);
  border-color: rgba(201, 162, 75, 0.3);
}

.ctp-side-title {
  color: var(--white);
  margin-bottom: 14px;
}

.ctp-side-text {
  color: var(--text-muted-soft);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.ctp-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ctp-side-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
}

.ctp-side-list li i {
  color: var(--gold-400);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ctp-side-social {
  display: flex;
  gap: 10px;
}

.ctp-side-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-400);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.ctp-side-social a:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

/* ---- Map ---- */
.ctp-map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(8, 21, 36, 0.12);
  border: 4px solid var(--white);
}

.ctp-map-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ctp-map-tag i {
  color: var(--gold-400);
}

.ctp-map-frame {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .ctp-section { padding: 65px 0; }
  .ctp-form-wrap { padding: 40px 32px; }
  .ctp-side-inner { padding: 40px 32px; }
}

@media (max-width: 767.98px) {
  .ctp-info-card {
    padding: 38px 20px 24px;
  }

  .ctp-icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    top: -26px;
  }

  .ctp-form-wrap,
  .ctp-side-inner {
    padding: 34px 24px;
  }

  .ctp-map-frame { height: 300px; }
}

@media (max-width: 575.98px) {
  .ctp-form-title { font-size: 1.4rem; }
  .ctp-form .btn-booking { width: 100%; justify-content: center; }
  .ctp-side-title { font-size: 1.3rem; }
  .ctp-map-frame { height: 260px; }
  .ctp-map-tag { font-size: 0.72rem; padding: 8px 14px; top: 12px; left: 12px; }
}


/* =========================================================
   ONLINE APPLICATION FORM PAGE (regfm)
   ========================================================= */

.regfm-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--off-white);
  overflow: hidden;
}

.regfm-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(201,162,75,0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 0%, black, transparent 70%);
  mask-image: radial-gradient(ellipse 55% 45% at 50% 0%, black, transparent 70%);
  pointer-events: none;
}

.regfm-section .container {
  position: relative;
  z-index: 1;
}

.regfm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-400);
  background-color: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ---- Outer card ---- */
.regfm-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(8, 21, 36, 0.14);
}

.regfm-card .row {
  --bs-gutter-x: 0;
  margin: 0;
}

.regfm-card .row > [class*="col-"] {
  padding: 0;
}

/* ---- Left side panel ---- */
.regfm-side-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
  overflow: hidden;
}

.regfm-side-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-radial-gradient(circle at 100% 0%, transparent 0, transparent 34px, rgba(201,162,75,0.08) 35px, transparent 36px);
  opacity: 0.6;
  pointer-events: none;
}

.regfm-side-inner {
  position: relative;
  z-index: 1;
  padding: 50px 42px;
  width: 100%;
}

.regfm-side-title {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.regfm-side-text {
  color: var(--text-muted-soft);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Offer badge */
.regfm-offer-badge {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(201,162,75,0.16), rgba(201,162,75,0.05));
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
}

.regfm-offer-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold-300);
  line-height: 1;
}

.regfm-offer-amount small {
  font-size: 1rem;
  font-weight: 500;
}

.regfm-offer-label {
  font-size: 0.75rem;
  color: var(--text-muted-soft);
  margin-top: 6px;
}

/* Steps */
.regfm-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.regfm-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.regfm-step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.regfm-steps h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.regfm-steps p {
  font-size: 0.78rem;
  color: var(--text-muted-soft);
  margin: 0;
  line-height: 1.5;
}

/* Side contact */
.regfm-side-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regfm-side-contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(201, 162, 75, 0.14);
  color: var(--gold-400);
  font-size: 1rem;
}

.regfm-side-contact small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted-soft);
  margin-bottom: 2px;
}

.regfm-side-contact a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Trust badges */
.regfm-trust-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regfm-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 10px;
  transition: background-color 0.25s ease;
}

.regfm-trust-item:hover {
  background-color: rgba(201, 162, 75, 0.08);
}

.regfm-trust-item i {
  flex-shrink: 0;
  color: var(--gold-400);
  font-size: 1.1rem;
}

.regfm-trust-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted-soft);
}

/* ---- Right form ---- */
.regfm-form-wrap {
  width: 100%;
  padding: 50px 46px;
}

.regfm-form-title {
  margin-bottom: 8px;
}

.regfm-form-subtitle {
  color: #8a97a8;
  font-size: 0.82rem;
  margin-bottom: 22px;
}

.regfm-section-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-500);
  padding-bottom: 8px;
  margin-top: 8px;
  border-bottom: 1px dashed rgba(8, 21, 36, 0.12);
}

.regfm-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.regfm-input {
  background-color: var(--off-white);
  border: 1px solid rgba(8, 21, 36, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--navy-900);
  box-shadow: none;
}

.regfm-input::placeholder {
  color: #9aa4b2;
}

.regfm-input:focus {
  background-color: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

textarea.regfm-input {
  resize: none;
}

select.regfm-input {
  cursor: pointer;
}

/* Gender radio pills */
.regfm-radio-group {
  display: flex;
  gap: 12px;
}

.regfm-radio-pill {
  position: relative;
  cursor: pointer;
}

.regfm-radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.regfm-radio-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-800);
  background-color: var(--off-white);
  border: 1.5px solid rgba(8, 21, 36, 0.1);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.regfm-radio-pill span i {
  color: var(--gold-500);
}

.regfm-radio-pill input:checked + span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.regfm-radio-pill input:checked + span i {
  color: var(--navy-900);
}

/* Submit button */
.regfm-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  padding: 15px 34px;
  border-radius: 50px;
  box-shadow: 0 14px 28px rgba(201, 162, 75, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 6px;
}

.regfm-submit-btn i {
  transition: transform 0.25s ease;
}

.regfm-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(201, 162, 75, 0.4);
}

.regfm-submit-btn:hover i {
  transform: translate(3px, -3px);
}

.regfm-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #8a97a8;
  margin: 14px 0 0;
}

.regfm-privacy-note i {
  color: var(--gold-500);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .regfm-section { padding: 60px 0; }
  .regfm-side-inner { padding: 40px 32px; }
  .regfm-form-wrap { padding: 40px 32px; }
}

@media (max-width: 767.98px) {
  .regfm-side-title { font-size: 1.4rem; }
  .regfm-side-inner,
  .regfm-form-wrap { padding: 34px 24px; }

  .regfm-form-title { font-size: 1.4rem; }
}

@media (max-width: 575.98px) {
  .regfm-offer-amount { font-size: 1.4rem; }
  .regfm-steps { gap: 18px; }

  .regfm-radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .regfm-radio-pill span {
    width: 100%;
    justify-content: center;
  }

  .regfm-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .regfm-trust-row { gap: 10px; }
  .regfm-trust-item { padding: 10px 14px; }
  .regfm-trust-item span { font-size: 0.76rem; }
}


/* =========================================================
   LEGAL / POLICY PAGE (legalpg) — Privacy Policy, T&C, Refund
   ========================================================= */

.legalpg-section {
  padding: 70px 0 90px;
  background-color: var(--white);
}

.legalpg-top {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.legalpg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.legalpg-title {
  margin-bottom: 18px;
}

.legalpg-intro {
  color: #55606f;
  line-height: 1.8;
  margin-bottom: 0;
}

.legalpg-intro a {
  color: var(--gold-500);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 162, 75, 0.4);
}

/* ---- Sticky TOC sidebar ---- */
.legalpg-toc {
  position: sticky;
  top: 100px;
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  border: 1px solid rgba(8, 21, 36, 0.06);
}

.legalpg-toc h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(8, 21, 36, 0.08);
}

.legalpg-toc h4 i {
  color: var(--gold-500);
}

.legalpg-toc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legalpg-toc a {
  display: block;
  font-size: 0.83rem;
  color: #5c6b7f;
  padding: 8px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.legalpg-toc a:hover {
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.08);
  border-left-color: var(--gold-500);
  padding-left: 14px;
}

.legalpg-toc-cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.legalpg-toc-cta p {
  font-size: 0.8rem;
  color: var(--text-muted-soft);
  margin-bottom: 12px;
}

.legalpg-toc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-900);
  background-color: var(--gold-500);
  padding: 9px 18px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
}

.legalpg-toc-btn:hover {
  background-color: var(--gold-400);
}

/* ---- Content ---- */
.legalpg-content > p {
  color: #55606f;
  line-height: 1.8;
  margin-bottom: 30px;
}

.legalpg-block {
  scroll-margin-top: 100px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(8, 21, 36, 0.07);
}

.legalpg-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legalpg-block-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold-500);
  background-color: rgba(201, 162, 75, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.legalpg-block h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.legalpg-block p {
  color: #55606f;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legalpg-block p:last-child {
  margin-bottom: 0;
}

/* Checklist inside content */
.legalpg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legalpg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #465063;
  line-height: 1.6;
}

.legalpg-list li i {
  flex-shrink: 0;
  color: var(--gold-500);
  font-size: 1rem;
  margin-top: 3px;
}

/* Final contact block highlight */
.legalpg-block-contact {
  background-color: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(201, 162, 75, 0.15);
}

.legalpg-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.legalpg-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(8, 21, 36, 0.08);
  transition: all 0.25s ease;
}

.legalpg-contact-item i {
  color: var(--gold-500);
}

.legalpg-contact-item:hover {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .legalpg-section { padding: 40px 0 50px; }
  .legalpg-toc { position: static; margin-bottom: 10px; }
}

@media (max-width: 767.98px) {
  .legalpg-section { padding: 32px 0 40px; }

  .legalpg-top { margin-bottom: 32px; }

  .legalpg-toc {
    padding: 18px 16px;
  }

  .legalpg-block {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .legalpg-block-contact {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .legalpg-section { padding: 24px 0 32px; }

  .legalpg-top { margin-bottom: 26px; }

  .legalpg-title { font-size: 1.5rem; }
  .legalpg-intro { font-size: 0.86rem; }

  .legalpg-toc {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .legalpg-toc h4 {
    font-size: 0.84rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .legalpg-toc a {
    font-size: 0.78rem;
    padding: 6px 8px;
  }

  .legalpg-toc-cta {
    padding: 14px;
  }

  .legalpg-block h2 { font-size: 1.05rem; }
  .legalpg-block p,
  .legalpg-list li { font-size: 0.86rem; }

  .legalpg-block-num {
    font-size: 0.72rem;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .legalpg-block-contact {
    padding: 16px;
    border-radius: 10px;
  }

  .legalpg-contact-row {
    flex-direction: column;
  }

  .legalpg-contact-item {
    width: 100%;
    justify-content: center;
  }
}