/* ============ Reset & Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:root {
  --accent: #d9943a;
  --accent-dark: #c07e26;
  --text: #1a1a1a;
  --muted: #4b4b4b;
  --border: #e6e6e6;
  --cream: #f7e7d3;
  --card-radius: 18px;
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/* .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
} */

/* ============ Header ============ */
/* .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  background: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 14px;
}
.logo__m {
  color: #2fa84f;
}
.logo__3 {
  color: #2b78c2;
}
.logo__m2 {
  color: #1a1a1a;
}
.logo__tagline {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #444;
  white-space: nowrap;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #948e8eeb;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: var(--accent);
}
.nav__link.is-active {
  color: var(--accent);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  position: relative;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
} */

:root {
  --accent: #d9943a;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ============ Header ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  background: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
  font-family: "Inter", system-ui, sans-serif;
}

.header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav__list {
  list-style: none;
  display: flex;
  gap: 38px;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #948e8eeb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link.is-active {
  color: var(--accent);
  font-weight: 600;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1150px) {
  .nav {
    gap: 20px;
  }
  .nav__list {
    gap: 15px;
  }
  .nav__link {
    font-size: 14px;
  }
  .nav__phone {
    font-size: 14px;
  }
  .nav__btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

.nav__phone {
  font-size: 15px;
  font-weight: 600;
  color: #948e8eeb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav__phone:hover {
  color: var(--accent);
}

.nav__btn {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}

.nav__btn:hover {
  background: #c68532;
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  position: relative;
  z-index: 201;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }
}

/* ============ Global Variables (Assumed) ============ */
:root {
  --accent: #d9943a;
  /* Orange highlight color */
  --accent-dark: #b87c2f;
  --text-dark: #1a1a1a;
  --text-main: #2a2a2a;
  --card-radius: 12px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border: #e1e1e1;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 100%),
    url("/assets/images/gaur-city-center-gallery1.webp") center / cover no-repeat;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Updated Location Badge (Normal Flow Above Heading) */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  /* Gives it a neat badge look */
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-badge .pin {
  font-size: 16px;
  /* Removed the counter-rotation */
}

.hero__content {
  padding-top: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  color: #fff;
}

.hero__title-accent {
  color: var(--accent);
}

.hero__desc {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}



/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

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

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============ Form Card ============ */
.hero__form-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 460px;
  justify-self: end;
  color: var(--text-dark);
}

.form-card__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--text-dark);
}

.form-card__title .sub-title {
  font-weight: 600;
  font-size: 18px;
  color: #555;
}

.form-card__sub {
  font-size: 14px;
  color: #666;
  margin: 0 0 30px;
  line-height: 1.5;
}

.form__group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.form__group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-dark);
  background: #f9f9f9;
  transition: border-color 0.2s ease;
}

.form__group input:focus {
  outline: none;
  border-color: var(--accent);
}

.form__status {
  margin: 15px 0 0;
  font-size: 14px;
  min-height: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__form-card {
    justify-self: center;
  }

  /* Removed .location-badge overrides since it's already behaving normally now */
}

/* ============ About Section ============ */
.about {
  padding: 80px 0;
  background: #ffffff;
}

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  /* Changed from center to stretch to make both columns equal height */
  align-items: stretch;
}

/* --- Image Styling --- */
.about__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* Ensure container takes the full stretched height */
  height: 100%;
}

.about__media img {
  width: 100%;
  /* Force image to cover the full height of its stretched container */
  height: 100%;
  object-fit: cover;
  display: block;
  /* Optional: keeps the most important part of the image in view */
  object-position: center;
}

/* --- Typography & Content --- */
.about__content {
  display: flex;
  flex-direction: column;
  /* Centers the text block vertically if the image happens to be taller */
  justify-content: center;
  padding: 20px 0;
  /* Adds breathing room to prevent text from touching edges */
}

.about__title {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 24px;
  color: #0f172a;
}

.about__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 20px;
  text-align: justify;
}

.about__desc strong {
  font-weight: 700;
  color: #111111;
}

.highlight-blue {
  color: #1a6ab3;
  font-weight: 600;
}

/* --- Button Styling --- */
.about__cta {
  margin-top: 10px;
  align-self: flex-start;
  background: #d9943a;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

.about__cta:hover {
  background: #bf6640;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ============ Responsive Breakpoints ============ */
@media (max-width: 992px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    /* Revert back to center for stacked layout */
  }

  .about__media {
    max-width: 600px;
    margin: 0 auto;
    /* Give image a fixed aspect ratio or height on smaller screens */
    height: auto;
    aspect-ratio: 4/3;
  }

  .about__content {
    padding: 0;
  }

  .about__title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about__media {
    aspect-ratio: 1/1;
    /* Square image for mobile */
  }

  .about__desc {
    text-align: left;
    font-size: 14px;
  }

  .about__cta {
    align-self: center;
    width: 100%;
    text-align: center;
  }
}

/* Specification section */
/* ============ Project Details Section ============ */
.project-details {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: inherit;
}

.details__inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Heading --- */
.details__title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: #0f172a;
  /* Muted green matching your design theme */
  margin: 0 0 24px;
  letter-spacing: 0.5px;
}

.details__title .uppercase {
  text-transform: uppercase;
}

/* --- Table Wrapper for Overflow Protection --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1.5px solid #dcdcdc;
  border-bottom: 1.5px solid #dcdcdc;
  margin-bottom: 36px;
}

/* --- Table Styling --- */
.details-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
}

.details-table tr {
  border-bottom: 1px solid #ebebeb;
  transition: background-color 0.15s ease;
}

.details-table tr:last-child {
  border-bottom: none;
}

.details-table tr:hover {
  background-color: #fcfcfc;
  /* Subtle hover effect for scannability */
}

.details-table th,
.details-table td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.5;
}

/* Left Column (Labels) */
.details-table th {
  width: 38%;
  font-weight: 700;
  color: #1a1a1a;
  border-right: 1px solid #ebebeb;
  /* Vertical divider matching image */
  vertical-align: top;
}

/* Right Column (Values) */
.details-table td {
  width: 62%;
  font-weight: 400;
  color: #444444;
  vertical-align: top;
}

/* --- Center Button --- */
.details__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.details__cta {
  background-color: #d9943a;
  /* Warm terracotta/orange accent */
  color: #ffffff;
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(214, 122, 83, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.details__cta:hover {
  background-color: #bf6640;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 122, 83, 0.35);
  color: #ffffff;
}

.details__cta:active {
  transform: translateY(0);
}

/* ============ Responsive Breakpoints ============ */

/* Tablet Screens */
@media (max-width: 768px) {
  .project-details {
    padding: 60px 0;
  }

  .details-table th,
  .details-table td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* Mobile Screens (Phones) */
@media (max-width: 576px) {
  .project-details {
    padding: 50px 0;
  }

  .details__title {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Adjust column widths and padding for smaller screens */
  .details-table th,
  .details-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .details-table th {
    width: 45%;
  }

  .details-table td {
    width: 55%;
  }

  .details__cta {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}

/* Ultra-small screens (under 380px) - Stacks cells vertically for readability */
@media (max-width: 380px) {

  .details-table th,
  .details-table td {
    display: block;
    width: 100%;
    border-right: none;
  }

  .details-table th {
    padding-bottom: 4px;
    background-color: #f9f9f9;
    border-bottom: none;
    color: #000;
  }

  .details-table td {
    padding-top: 4px;
    padding-bottom: 14px;
  }
}

/* ============ Amenities ============ */
/* Container & Base Settings */
.container {
  max-width: 1280px;
  /* Slightly wider to match the clean promo section width */
  margin: 0 auto;
  padding: 0 20px;
}

.highlights {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header Styling */
.highlights__main-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  /* Deepened the sage green slightly for better readability/contrast */
  margin: 0 0 45px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-text {
  font-weight: 800;
}

/* Layout Alignment */
.highlights__content {
  display: flex;
  gap: 80px;
  /* Increased gap for a more breathable, premium layout */
  align-items: flex-start;
  /* Keeps text at the top */
  justify-content: space-between;
}

.highlights__text-column {
  flex: 1;
  max-width: 55%;
  display: flex;
  flex-direction: column;
}

.highlights__image-column {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  /* Nudges the image down slightly to visually align with the first text block */
}

/* Text Items Styling */
.highlight-item {
  margin-bottom: 22px;
}

.highlight-item__title {
  font-size: 17px;
  font-weight: 600;
  color: #222222;
  margin: 0 0 6px 0;
}

.highlight-item__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Button Styling */
.btn-more-details {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background-color: #d9943a;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  /* Matched border-radius to the promo section for consistency */
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.btn-more-details:hover {
  background-color: #b3643d;
  transform: translateY(-2px);
}

/* Image Column Styling */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}

.interior-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  /* Slightly sharper corners to look modern */
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  /* Softer, wider shadow for depth */
  position: relative;
  z-index: 2;
}

/* Decorative Dots Styling */
.decorative-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#e6d3c3 3px, transparent 4px);
  background-size: 20px 20px;
  z-index: 0;
}

.dots-top {
  top: -25px;
  right: -25px;
}

.dots-bottom {
  bottom: -25px;
  left: -25px;
}

/* Responsive Design for Mobile/Tablets */
@media (max-width: 992px) {
  .highlights__content {
    flex-direction: column;
    gap: 50px;
  }

  .highlights__text-column {
    max-width: 100%;
  }

  .highlights__image-column {
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  .image-wrapper {
    margin-top: 30px;
    max-width: 100%;
  }
}

/* Mr Beast */
/* Base Resets & Variables */
:root {
  --brand-color: #cf7954;
  /* Terracotta/Orange color */
  --brand-color-hover: #b86744;
  --text-dark: #222222;
  --text-body: #4a4a4a;
  --bg-color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Layout Container */
.promo-section {
  padding: 60px 20px;
  background-color: var(--bg-color);
}

.container {
  max-width: 1280px;
  /* Slightly wider to give content room to breathe */
  margin: 0 auto;
}

.promo-wrapper {
  display: flex;
  align-items: flex-start;
  /* Aligns items to the top */
  justify-content: space-between;
  gap: 50px;
  /* Increased gap for better visual separation */
}

/* Image Column */
.promo-image-col {
  flex: 1;
  max-width: 50%;
  /* Ensures the image doesn't overpower the text */
}

.promo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Content Column */
.promo-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-title {
  background-color: var(--brand-color);
  color: #ffffff;
  font-size: 18px;
  /* Adjusted to match reference scale */
  font-weight: 600;
  padding: 14px 20px;
  margin: 0 0 20px 0;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.promo-intro {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 20px;
}

/* List Styling */
.promo-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.promo-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Custom Checkmark using pseudo-element */
.promo-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  /* Tweaked to align perfectly with the first line of text */
  color: var(--text-dark);
  font-weight: bold;
  font-size: 14px;
}

/* Button Styling */
.btn-explore {
  display: inline-block;
  background-color: #d9943a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-explore:hover {
  background-color: var(--brand-color-hover);
  transform: translateY(-2px);
}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 992px) {
  .promo-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .promo-image-col,
  .promo-content-col {
    max-width: 100%;
    width: 100%;
  }

  .promo-title {
    font-size: 17px;
  }
}

/* Site Plan CSS */
:root {
  --sp-navy: #0f172a;
  --sp-gold: #d4af37;
  --sp-bg: #fafaf8;
  --sp-text: #475569;
}

.sp-section-wrapper {
  background-color: var(--sp-bg);
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: var(--sp-navy);
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-header {
  text-align: center;
  margin-bottom: 50px;
}

.sp-eyebrow {
  color: var(--sp-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.sp-main-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.sp-sub-heading {
  color: var(--sp-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.sp-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.sp-image-frame {
  background: #fff;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  cursor: zoom-in;
}

.sp-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.sp-plan-img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s;
}

.sp-image-frame:hover .sp-plan-img {
  transform: scale(1.05);
}

.sp-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  color: #fff;
  gap: 10px;
  font-weight: 700;
}

.sp-image-frame:hover .sp-img-overlay {
  opacity: 1;
}

.sp-master-tags {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.sp-master-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.sp-highlights-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
}

.sp-card-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

.sp-highlights-grid {
  display: grid;
  gap: 15px;
}

.sp-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--sp-text);
}

.sp-gold-text {
  color: var(--sp-gold);
}

.sp-cta-box {
  margin-top: 25px;
}

.sp-download-btn {
  width: 100%;
  padding: 16px;
  background: var(--sp-gold);
  color: var(--sp-navy);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sp-download-btn:hover {
  background: var(--sp-navy);
  color: #fff;
}

.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.sp-stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #f1f5f9;
}

.sp-stat-icon {
  color: var(--sp-gold);
  background: rgba(212, 175, 55, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.sp-stat-value {
  font-size: 1rem;
  font-weight: 800;
}

.sp-stat-label {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
}

.sp-info-strip {
  background: var(--sp-navy);
  padding: 25px 40px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.sp-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Lightbox */
.sp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sp-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.sp-lightbox-content {
  max-width: 1100px;
  width: 100%;
}

.sp-full-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Reveal Animation */
.sp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

.sp-reveal.sp-active {
  opacity: 1;
  transform: translateY(0);
}

.sp-delay-1 {
  transition-delay: 0.2s;
}

.sp-delay-2 {
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
  .sp-main-grid {
    grid-template-columns: 1fr;
  }

  .sp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-info-strip {
    border-radius: 20px;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .sp-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Site Plan css End */

/* Floor Plan */
:root {
  --fp-navy: #0f172a;
  --fp-gold: #d4af37;
  --fp-blue-glass: rgba(15, 23, 42, 0.85);
}

.fp-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.fp-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.fp-header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-line-decor {
  width: 60px;
  height: 3px;
  background: var(--fp-gold);
  margin: 0 auto 20px;
}

.fp-main-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--fp-navy);
  letter-spacing: 2px;
}

.fp-sub-title {
  color: #64748b;
  margin-top: 10px;
  font-size: 1rem;
}

/* Grid */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fp-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: zoom-in;
  /* Shows the user they can click to zoom */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f1f5f9;
  transition: transform 0.3s ease;
}

.fp-image-box {
  position: relative;
  aspect-ratio: 3/4;
}

.fp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay Interaction */
.fp-overlay {
  position: absolute;
  inset: 0;
  background: var(--fp-blue-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  /* Visible blue like your reference */
  transition: 0.4s;
  padding: 20px;
  text-align: center;
}

.fp-card:hover .fp-overlay {
  opacity: 1;
  background: rgba(15, 23, 42, 0.95);
}

.fp-card:hover .fp-img {
  transform: scale(1.1);
}

.fp-overlay-content h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fp-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Lightbox Modal */
.fp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.fp-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 45px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.fp-lightbox-container {
  max-width: 1000px;
  /* width: 100%; */
  text-align: center;
}

.fp-lightbox-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  border: 5px solid #fff;
}

#fp-caption {
  color: var(--fp-gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 20px;
}

/* Staggered Reveal Animation */
.fp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

.fp-reveal.fp-active {
  opacity: 1;
  transform: translateY(0);
}

.fp-delay-1 {
  transition-delay: 0.1s;
}

.fp-delay-2 {
  transition-delay: 0.2s;
}

.fp-delay-3 {
  transition-delay: 0.3s;
}

.fp-delay-4 {
  transition-delay: 0.4s;
}

/* Full Responsiveness */
@media (max-width: 1024px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fp-grid {
    grid-template-columns: 1fr;
  }

  .fp-section {
    padding: 60px 15px;
  }

  .fp-main-title {
    font-size: 1.8rem;
  }

  .fp-close {
    top: 20px;
    right: 20px;
  }
}

/* Floor Plan End */

/* ============ Services ============ */
.services {
  padding: 80px 0 100px;
  background: #fff;
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}

.services__heading {
  padding-top: 0;
}

.services__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #1a1a1a;
}

.services__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
  text-align: justify;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f3f3;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.service-card__title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: #1a1a1a;
}

.service-card__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: #2a2a2a;
  text-align: justify;
}

/* ============ Sizes ============ */

/* --- Container & Section Base --- */
.campaign {
  padding: 60px 0 100px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Wrapper for Split Layout --- */
.campaign__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  background: #f8f9fa;
  /* Light background to make content pop */
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* --- Image Column --- */
.campaign__image-col {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign__image-col img {
  max-width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* --- Content Column --- */
.campaign__content-col {
  flex: 1 1 500px;
}

.campaign__header {
  margin-bottom: 20px;
}

.campaign__title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.campaign__description {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* --- Highlights Grid --- */
.campaign__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.highlight-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #1a1a1a;
  /* Change to var(--accent) if using a theme color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.highlight-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.highlight-card__text {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* --- CTA Button --- */
.campaign__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: #d9943a;
  /* Professional blue complementing the character */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(11, 61, 145, 0.2);
}

.campaign__cta:hover {
  background-color: #082d6b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 61, 145, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .campaign__wrapper {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .highlight-card {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .campaign__highlights {
    grid-template-columns: 1fr;
  }

  .campaign__title {
    font-size: 28px;
  }
}

/* ============ Gallery ============ */
.gallery {
  padding: 80px 0;
  background: #fff;
}

.gallery__header {
  margin-bottom: 56px;
}

.gallery__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #1a1a1a;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(170px, 22vw, 280px);
  gap: 22px;
}

/* Row 1: three equal items spanning 2 cols each */
.gallery__item {
  grid-column: span 2;
}

/* Row 2: wide (4 cols) + narrow (2 cols) */
.gallery__item--wide {
  grid-column: span 4;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  background: #f3f3f3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

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

.gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.gallery__item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ============ Specification ============ */
.ps-section {
  background: #0c1424;
  padding: clamp(64px, 10vw, 110px) 20px;
  overflow: hidden;
  position: relative;
}

.ps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ─── Header ─────────────────────────────────────────── */
.ps-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.ps-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 16px;
}

.ps-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.ps-rule {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  margin: 0 auto;
}

/* ─── Summary grid (4 stat cards) ───────────────────── */
.ps-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.ps-summary-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ps-summary-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.35);
}

.ps-summary-card--highlight {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
}

.ps-summary-icon {
  width: 36px;
  height: 36px;
  color: #D4AF37;
  margin-bottom: 4px;
}

.ps-summary-icon svg {
  width: 100%;
  height: 100%;
}

.ps-summary-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.ps-summary-value {
  font-size: 29px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ps-summary-value--sm {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
}

.ps-summary-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.ps-floor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.ps-pill {
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ─── Accordion ──────────────────────────────────────── */
.ps-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.ps-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-accordion-item:last-child {
  border-bottom: none;
}

.ps-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  color: inherit;
}

.ps-accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ps-accordion-trigger[aria-expanded="true"] {
  background: rgba(212, 175, 55, 0.05);
}

.ps-accordion-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #D4AF37;
  min-width: 22px;
  flex-shrink: 0;
}

.ps-accordion-title {
  flex: 1;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.ps-accordion-chevron {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}

.ps-accordion-trigger[aria-expanded="true"] .ps-accordion-chevron {
  transform: rotate(180deg);
  color: #D4AF37;
}

/* ─── Panel (animated) ───────────────────────────────── */
.ps-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps-accordion-panel.ps-open {
  max-height: 800px;
}

.ps-spec-intro {
  padding: 0 28px 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ─── Spec grid inside panel ─────────────────────────── */
.ps-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 28px 24px;
  border-radius: 10px;
  overflow: hidden;
}

.ps-spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.ps-spec-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ps-spec-key {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4AF37;
}

.ps-spec-val {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .ps-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ps-summary-grid {
    grid-template-columns: 1fr;
  }

  .ps-spec-grid {
    grid-template-columns: 1fr;
    margin: 0 16px 20px;
  }

  .ps-accordion-trigger {
    padding: 18px 16px;
    gap: 12px;
  }

  .ps-accordion-title {
    font-size: 0.88rem;
  }

  .ps-spec-intro {
    padding: 0 16px 4px;
  }

  .ps-section {
    padding: 56px 16px;
  }
}

@media (max-width: 420px) {
  .ps-summary-card {
    padding: 22px 18px 20px;
  }

  .ps-summary-value {
    font-size: 2rem;
  }
}

/* ============ Why Choose Us ============ */
.why {
  padding: 40px 0 100px;
  background: #fff;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.why__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin: 16px 0 24px;
  color: #1a1a1a;
}

.why__lead {
  margin: 0 0 32px;
  font-size: 14.5px;
  line-height: 1.85;
  color: #2a2a2a;
  text-align: justify;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.why-feature__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}

.why-feature__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: #444;
  text-align: justify;
}

.why__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 14px;
}

.why__cta .btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.why__cta:hover .btn__arrow {
  transform: translateX(4px);
}

.why__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.why__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============ FAQ ============ */
:root {
  --faq-navy: #0f172a;
  --faq-gold: #d9943a;
  --faq-bg: #ffffff;
  --faq-muted: #64748b;
  --faq-border: #f1f5f9;
}

.faq-section-wrapper {
  background-color: var(--faq-bg);
  padding: clamp(60px, 10vw, 100px) 24px;
  overflow: hidden;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-eyebrow {
  color: var(--faq-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
}

.faq-main-title {
  color: var(--faq-navy);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 15px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}

.faq-gold-divider {
  width: 60px;
  height: 4px;
  background-color: var(--faq-gold);
  margin-bottom: 25px;
}

.faq-sub-heading {
  color: var(--faq-muted);
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.6;
}

/* Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Styling */
.faq-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--faq-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-card.active {
  border-color: var(--faq-gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.faq-btn {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question-text {
  color: var(--faq-navy);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-icon-wrapper {
  flex-shrink: 0;
  background: #f8fafc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faq-gold);
  transition: all 0.3s ease;
}

.faq-card.active .faq-icon-wrapper {
  background: var(--faq-navy);
  color: var(--faq-gold);
  transform: rotate(180deg);
}

/* Answer Area Animation */
.faq-answer-wrapper {
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-answer-wrapper {
  max-height: 500px;
  /* High enough value to fit content */
  opacity: 1;
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-section-wrapper {
    padding: 60px 20px;
  }

  .faq-btn {
    padding: 20px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer-content {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-header {
    margin-bottom: 40px;
  }

  .faq-main-title {
    font-size: 1.8rem;
  }
}

/* ============ FAQ ============ */

/* ============ CTA Banner ============ */
.cta-banner {
  padding: 30px 0 80px;
  background: #fff;
}

.cta-banner__card {
  position: relative;
  background: linear-gradient(135deg, #d9943a 0%, #c98832 60%, #b9772a 100%);
  color: #fff;
  border-radius: 14px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  isolation: isolate;
}

.cta-banner__rings {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,
      transparent 0 78px,
      rgba(255, 255, 255, 0.08) 78px 80px,
      transparent 80px 138px,
      rgba(255, 255, 255, 0.08) 138px 140px,
      transparent 140px 198px,
      rgba(255, 255, 255, 0.08) 198px 200px,
      transparent 200px 258px,
      rgba(255, 255, 255, 0.08) 258px 260px,
      transparent 260px);
  z-index: -1;
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
}

.cta-banner__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a1a1a;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-banner__btn svg {
  width: 16px;
  height: 16px;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ============ Footer ============ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  color: #4a4a4a;
}

.footer__link {
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__link:hover {
  color: var(--accent);
}

/* ============ Floating Action Buttons ============ */
.fab,
.back-to-top {
  position: fixed;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 40;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.fab svg,
.back-to-top svg {
  width: 22px;
  height: 22px;
}

.fab:hover,
.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
}

.fab--left {
  left: 24px;
}

.fab--right {
  right: 80px;
}

.back-to-top {
  right: 24px;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #f5f5f5;
  color: var(--accent);
}

/* ============ Responsive ============ */

/* Tablet & below */
@media (max-width: 992px) {
  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__form-card {
    justify-self: stretch;
    max-width: 100%;
  }

  /* Collapse nav into off-canvas menu */
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 30%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 28px 28px;
    z-index: 150;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }

  .nav__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }

  .nav__link {
    font-size: 17px;
    display: block;
    padding: 6px 0;
  }

  .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .header.is-scrolled {
    background: #fff;
  }

  /* Overlay behind open nav — z-index BELOW nav and header */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 120;
  }

  .nav-overlay.is-visible {
    display: block;
  }

  /* About */
  .about {
    padding: 70px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 680px;
    margin: 0 auto;
  }

  .about__media {
    aspect-ratio: 16 / 11;
  }

  /* Amenities */
  .amenities {
    padding: 60px 0 70px;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }

  /* Services */
  .services {
    padding: 60px 0 80px;
  }

  .services__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Sizes */
  .sizes {
    padding: 20px 0 80px;
  }

  .sizes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Gallery */
  .gallery {
    padding: 20px 0 80px;
  }

  .gallery__header {
    margin-bottom: 36px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(170px, 30vw, 240px);
    gap: 18px;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: auto;
  }

  .gallery__item:last-child {
    grid-column: span 2;
  }

  /* Collection */
  .collection {
    padding: 20px 0 80px;
  }

  .collection__header {
    margin-bottom: 36px;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Why */
  .why {
    padding: 30px 0 80px;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why__map {
    aspect-ratio: 16 / 10;
    max-width: 720px;
  }

  /* CTA Banner */
  .cta-banner__card {
    padding: 44px 40px;
  }

  .cta-banner__rings {
    right: -160px;
    width: 480px;
    height: 480px;
  }
}

/* Small tablets / large phones */
@media (max-width: 700px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__form-card {
    padding: 24px;
  }

  .form-card__title {
    font-size: 19px;
  }

  .logo {
    font-size: 26px;
  }

  .nav {
    left: 20%;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .about__media {
    aspect-ratio: 4 / 3;
  }

  .about__stat {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px 18px;
  }

  .about__stat-text {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 0 0;
  }

  .about__desc {
    font-size: 14.5px;
    line-height: 1.7;
    text-align: justify;
  }

  /* Amenities */
  .amenities__header {
    margin-bottom: 36px;
  }

  .amenity__icon {
    width: 56px;
    height: 56px;
  }

  .amenity__icon svg {
    width: 24px;
    height: 24px;
  }

  .amenity__label {
    font-size: 13px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 520px;
    margin: 0 auto;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__desc {
    font-size: 14px;
    line-height: 1.75;
  }

  /* Sizes */
  .sizes__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 420px;
    margin: 0 auto;
  }

  .size-card__panel {
    width: 58%;
  }

  /* Gallery */
  .gallery__grid {
    grid-auto-rows: clamp(170px, 38vw, 220px);
    gap: 16px;
  }

  /* Collection */
  .collection__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .collection__cta {
    padding: 12px 22px;
    font-size: 13.5px;
  }

  .collection__grid {
    gap: 16px;
  }

  /* Why */
  .why {
    padding: 20px 0 70px;
  }

  .why__features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* CTA Banner */
  .cta-banner__card {
    grid-template-columns: 1fr;
    padding: 36px 30px;
    text-align: left;
    gap: 24px;
  }

  .cta-banner__rings {
    right: -240px;
    opacity: 0.6;
  }

  .cta-banner__btn {
    justify-self: flex-start;
  }

  /* Footer */
  .footer__inner {
    gap: 16px;
  }

  /* Floating buttons */
  .fab,
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 18px;
  }

  .fab svg,
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .fab--left {
    left: 18px;
  }

  .fab--right {
    right: 72px;
  }

  .back-to-top {
    right: 18px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero__title {
    letter-spacing: -0.5px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero__content .btn {
    display: block;
  }

  .nav {
    left: 0;
    padding-top: 80px;
  }

  /* About */
  .about {
    padding: 50px 0;
  }

  .about__media {
    aspect-ratio: 1 / 1;
  }

  .about__title {
    font-size: 24px;
  }

  .about__cta {
    float: none;
    display: block;
  }

  /* Amenities */
  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }

  /* Services */
  .services {
    padding: 50px 0 70px;
  }

  .service-card__media {
    aspect-ratio: 16 / 11;
  }

  /* Sizes */
  .sizes {
    padding: 10px 0 60px;
  }

  .size-card__panel {
    width: 64%;
    padding: 16px;
    border-radius: 12px;
  }

  .size-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .size-card__title {
    font-size: 16px;
  }

  /* Gallery */
  .gallery {
    padding: 10px 0 60px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(180px, 55vw, 240px);
    gap: 14px;
  }

  .gallery__item:last-child {
    grid-column: auto;
  }

  /* Collection */
  .collection {
    padding: 10px 0 60px;
  }

  .collection__title {
    font-size: 22px;
  }

  .collection__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 14px;
  }

  /* Why */
  .why {
    padding: 10px 0 60px;
  }

  .why__lead {
    font-size: 13.5px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 20px 0 60px;
  }

  .cta-banner__card {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .cta-banner__title {
    font-size: 22px;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Floating buttons */
  .fab--right {
    right: 64px;
  }
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* ============ Blogs Section ============ */
.blogs-section {
  padding: 60px 0 80px;
  background: #fdfdfd;
}

.blogs-main-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-card__excerpt {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  text-decoration: none;
  align-self: flex-start;
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* Responsive Blogs */
@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ Pop-up Modal ============ */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.popup-modal.is-active {
  display: flex;
}

/* .popup-content {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 960px;
  width: 100%;
  display: flex;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: popupFadeIn 0.3s ease-out forwards;
} */

.popup-content {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: popupFadeIn 0.3s ease-out forwards;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  font-weight: 300;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
} */

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: 300;
  color: black;
  background: rgba(218, 211, 211, 0.4);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* .popup-left {
  width: 50%;
  background: #120701; 
  display: flex;
  align-items: center;
} */

.popup-left {
  width: 58%;
  /* more width for the image */
  position: relative;
  overflow: hidden;
  background: #120701;
  min-height: 560px;
  /* enough height so tall poster isn't squeezed */
}

/* .popup-img {
  width: 100%;
  height: auto;
  display: block;
} */

.popup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* shows full image, no cropping */
  object-position: center;
}

/* .popup-right {
  width: 50%;
  padding: 50px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
} */

.popup-right {
  width: 42%;
  /* narrower form column */
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.popup-title {
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 1.2;
}

.popup-title-main {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.popup-subtitle {
  font-size: 19px;
  font-weight: 400;
}

.popup-form .form__group {
  margin-bottom: 20px;
}

.popup-form .form__group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.2s ease;
}

.popup-form .form__group input:focus {
  outline: none;
  border-color: #d67a53;
}

.popup-btn-wrap {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.popup-btn {
  background-color: #c46d42;
  color: #fff;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.popup-btn:hover {
  background-color: #b05c34;
  transform: translateY(-2px);
}

.popup-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 11px;
  color: #333;
  line-height: 1.5;
}

.popup-consent input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  /* .popup-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  } */

  .popup-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    max-width: 420px;
    /* keeps modal from looking too wide on tablets */
  }

  /* .popup-left {
    display: none;
  } */

  .popup-left {
    display: block;
    width: 100%;
    position: relative;
    background: #120701;
    min-height: 0;
    /* let it size to the image, not a fixed box */
  }

  .popup-img {
    position: static;
    /* remove absolute positioning from earlier */
    width: 100%;
    height: auto;
    /* natural aspect ratio, nothing cropped */
    display: block;
    object-fit: initial;
  }

  /* .popup-right {
    padding: 40px 25px;
  } */

  .popup-right {
    width: 100%;
    padding: 24px 22px 30px;
  }

  .popup-title {
    margin-bottom: 20px;
  }

  .popup-title-main {
    font-size: 21px;
  }

  .popup-subtitle {
    font-size: 18px;
  }

  .popup-form .form__group {
    margin-bottom: 14px;
  }

  .popup-form .form__group input {
    padding: 13px 14px;
    font-size: 15px;
  }

  .popup-btn {
    padding: 13px 32px;
    font-size: 15px;
  }

  .popup-consent {
    font-size: 11px;
    margin-top: 16px;
  }

  .popup-close {
    top: 8px;
    right: 12px;
    font-size: 26px;
    color: #333;
  }
}