/*
Theme Name: Sethi Real Estate
Author: Custom Theme Developer
Description: High-Fidelity Custom Real Estate & Construction Theme
Version: 2.0
*/

/* --- REGISTER ORANGE AVENUE FONT --- */
@font-face {
    font-family: 'Orange Avenue';
    src: url('fonts/OrangeAvenueDEMO-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Orange Avenue Outline';
    src: url('fonts/OrangeAvenueOutlineDEMO-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --navy: #1F2A44;
    --warm-beige: #E8DCC8;
    --soft-gold: #C6A75E;
    --white: #ffffff;
    --text-dark: #333333;
    --sky-blue: #2563eb;
    --text-gray: #64748b;
    --text-light-gray: #94a3b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Orange Avenue', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--warm-beige);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orange Avenue', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold, .btn-solid-gold {
    background-color: var(--soft-gold);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-navy, .btn-outline-navy {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn:hover, .btn-solid-gold:hover, .gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 167, 94, 0.3);
}

.btn-outline-navy:hover {
    background-color: rgba(31, 42, 68, 0.05);
}

/* Header */
.site-header {
    background-color: var(--navy);
    padding: 20px 0;
    color: var(--white);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-header {
    max-height: 80px; 
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--soft-gold);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after, 
.main-nav .current-menu-item a::after {
    width: 100%;
}

.main-nav .current-menu-item a {
    color: var(--soft-gold);
}

/* --- FIXED HERO SECTION ALIGNMENT --- */
.home-section-light {
    padding: 80px 5%;
    background-color: var(--warm-beige, #E8DCC8);
}

.home-section-light .grid-2-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.home-section-light .navy-heading {
    font-size: 2.8rem !important;
    font-family: 'Orange Avenue', serif;
    color: var(--navy, #1F2A44);
    line-height: 1.15;
    margin-bottom: 20px;
}

/* --- FEATURED PROPERTY SLIDER STYLES (Smooth Auto Fade) --- */
.property-slider-section {
    position: relative;
    overflow: hidden;
}
.property-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 460px;
}
.prop-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease-in-out;
}
.prop-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.slider-dots {
    display: flex;
    gap: 12px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.dot:hover {
    transform: scale(1.2);
}
.dot.active {
    background-color: #D4AF37;
}

/* Amenity Icons in Slider */
.amenity-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
}
.amenity-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--soft-gold);
}

/* About Section */
.home-section-slate {
    padding: 90px 5%;
    background-color: #162238;
    color: #ffffff;
}
.home-section-slate .grid-2-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.home-section-slate .gold-heading {
    color: #D4AF37;
    font-family: 'Orange Avenue', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* --- FIXED WHY CHOOSE US & GRID STYLES --- */
.home-section-dark {
    padding: 90px 5%;
    background-color: #0d1a33;
    color: #BDC3C7;
}

.home-section-dark .gold-heading {
    color: #D4AF37;
    font-family: 'Orange Avenue', serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-section-dark .sub-heading, .sub-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--soft-gold, #D4AF37);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* 6 Column Layout Fix */
.grid-6-col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #17202A;
    padding: 25px 15px;
    border-radius: 8px;
    border: 1px solid #2C3E50;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.feature-box:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #2C3E50 !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    background-color: #0d1a33;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-circle svg {
    stroke: #D4AF37;
}

.feature-box h3 {
    color: #F2F3F4;
    font-size: 0.95rem;
    font-family: 'Orange Avenue', sans-serif;
    font-weight: 500;
}

/* --- PROPERTIES PAGE ARCHITECTURAL LAYOUT STYLES --- */
.skyline-properties-page {
    background-color: var(--warm-beige, #E8DCC8);
    padding-bottom: 80px;
}

.prop-hero-section {
    padding: 80px 5% 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.prop-hero-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-gray, #64748b);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.prop-hero-title {
    font-size: 3.5rem;
    font-family: 'Orange Avenue', serif;
    color: var(--text-dark, #333333);
    line-height: 1.15;
    margin-bottom: 30px;
}

.prop-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-dark-solid {
    background-color: #0f172a;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.btn-dark-solid:hover {
    opacity: 0.85;
}

.btn-light-outline {
    background-color: transparent;
    color: var(--text-dark, #333333);
    border: 1px solid var(--text-dark, #333333);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-light-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Grid Layout for Properties */
.skyline-properties-wrapper {
    max-width: 1300px;
    margin: 40px auto 80px;
    padding: 0 5%;
}

.section-label {
    color: var(--sky-blue, #2563eb);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
}

.header-flex h2 {
    font-size: 2.5rem;
    color: var(--text-dark, #333333);
    margin: 0;
    font-family: 'Orange Avenue', serif;
}

.view-all-link {
    color: var(--sky-blue, #2563eb);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.view-all-link:hover {
    opacity: 0.8;
    transform: translateX(3px);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.prop-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e2e8f0;
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.12);
}

.prop-img-wrap {
    height: 260px;
    width: 100%;
    overflow: hidden;
    background: #e2e8f0;
}

.prop-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prop-card:hover .prop-img-wrap img {
    transform: scale(1.05);
}

.prop-info {
    padding: 25px;
}

.prop-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.prop-title-row h3 {
    font-size: 1.3rem;
    color: var(--text-dark, #333333);
    margin: 0;
    font-family: 'Orange Avenue', sans-serif;
    font-weight: 700;
}

.prop-status {
    color: var(--sky-blue, #2563eb);
    font-size: 0.85rem;
    font-weight: 600;
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 20px;
}

.prop-location {
    color: var(--text-light-gray, #94a3b8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.prop-excerpt {
    color: var(--text-gray, #64748b);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prop-price {
    font-weight: 700;
    color: var(--text-dark, #333333);
    font-size: 1.1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

/* CTA & FAQ Section */
.prop-cta-faq-section {
    max-width: 1300px;
    margin: 80px auto 0;
    padding: 0 5%;
}

.prop-cta-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.prop-cta-box, .prop-faq-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 50px;
}

.prop-cta-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-icon-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #1f2a44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.prop-cta-box h2 {
    font-size: 2.2rem;
    font-family: 'Orange Avenue', serif;
    color: var(--text-dark, #333333);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-line {
    height: 2px;
    width: 100%;
    background: var(--soft-gold, #C6A75E);
    margin-bottom: 30px;
}

.faq-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-gray, #64748b);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.prop-faq-box h3 {
    font-size: 1.8rem;
    font-family: 'Orange Avenue', serif;
    color: var(--text-dark, #333333);
    margin-bottom: 30px;
}

.faq-accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark, #333333);
    cursor: pointer;
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--text-gray, #64748b);
}

/* Footer */
.site-footer {
    background-color: var(--navy);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-footer {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--soft-gold);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .grid-6-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .home-section-light .grid-2-col,
    .home-section-slate .grid-2-col {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .prop-cta-faq-grid {
        grid-template-columns: 1fr;
    }
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-6-col {
        grid-template-columns: repeat(2, 1fr);
    }
    .prop-hero-title {
        font-size: 2.5rem;
    }
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .grid-6-col {
        grid-template-columns: 1fr;
    }
}
/* --- PROPERTIES GRID RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1199.98px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767.98px) {
    .properties-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
/* --- ADAPTED PROPERTIES PAGE STYLES --- */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #080808;
  --muted: #6f6f6f;
  --surface: #f4f4f4;
  --page-padding: clamp(20px, 3vw, 40px);
}

.properties-page {
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: #fff;
}

.properties-page .content-container {
  width: min(1120px, calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.properties-intro {
  padding: 176px 0 120px;
}

.properties-intro h1,
.faq-heading h2 {
  margin: 0;
  letter-spacing: -0.065em;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}

.properties-intro h1 {
  max-width: 810px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1.03;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  margin-top: 64px;
}

.property-card {
  color: inherit;
  text-decoration: none;
}

.property-image-wrap {
  position: relative;
  aspect-ratio: 0.755;
  overflow: hidden;
  border-radius: 12px;
  background: #e8e8e8;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.property-card:hover .property-image {
  transform: scale(1.04);
}

.property-price {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  color: var(--ink);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: #636363;
  font-size: 0.84rem;
}

.property-meta span + span {
  border-left: 1px solid #c7c7c7;
  padding-left: 12px;
}

.property-card h2 {
  margin: 18px 0 8px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", sans-serif;
}

.property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-section {
  padding: 40px 0 120px;
}

.faq-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  padding: 9px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 0.84rem;
}

.faq-heading h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 5.2vw, 4.5rem);
  line-height: 1.06;
}

.faq-heading > p {
  width: min(100%, 323px);
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

.faq-item {
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item.is-open {
  background: var(--ink);
  color: #fff;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 24px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  text-align: left;
}

.faq-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  max-width: 720px;
  margin: -6px 24px 28px;
  color: #d0d0d0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .properties-intro {
    padding-top: 130px;
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .properties-intro {
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 44px;
  }

  .property-image-wrap {
    aspect-ratio: 1.05;
  }

  .faq-section {
    padding-bottom: 76px;
  }

  .faq-list {
    margin-top: 42px;
  }

  .faq-trigger {
    padding: 21px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    margin: -2px 18px 22px;
    font-size: 0.93rem;
  }
}
/* --- ADAPTED PROPERTIES PAGE STYLES --- */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #080808;
  --muted: #6f6f6f;
  --surface: #f4f4f4;
  --page-padding: clamp(20px, 3vw, 40px);
}

.properties-page {
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: #fff;
}

.properties-page .content-container {
  width: min(1120px, calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto;
}

.properties-intro {
  padding: 176px 0 120px;
}

.properties-intro h1,
.faq-heading h2 {
  margin: 0;
  letter-spacing: -0.065em;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}

.properties-intro h1 {
  max-width: 810px;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 1.03;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  margin-top: 64px;
}

.property-card {
  color: inherit;
  text-decoration: none;
}

.property-image-wrap {
  position: relative;
  aspect-ratio: 0.755;
  overflow: hidden;
  border-radius: 12px;
  background: #e8e8e8;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.property-card:hover .property-image {
  transform: scale(1.04);
}

.property-price {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 17px;
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  color: var(--ink);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: #636363;
  font-size: 0.84rem;
}

.property-meta span + span {
  border-left: 1px solid #c7c7c7;
  padding-left: 12px;
}

.property-card h2 {
  margin: 18px 0 8px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", sans-serif;
}

.property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-section {
  padding: 40px 0 120px;
}

.faq-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  padding: 9px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 0.84rem;
}

.faq-heading h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 5.2vw, 4.5rem);
  line-height: 1.06;
}

.faq-heading > p {
  width: min(100%, 323px);
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

.faq-item {
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item.is-open {
  background: var(--ink);
  color: #fff;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 24px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  text-align: left;
}

.faq-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  max-width: 720px;
  margin: -6px 24px 28px;
  color: #d0d0d0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .properties-intro {
    padding-top: 130px;
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .properties-intro {
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 44px;
  }

  .property-image-wrap {
    aspect-ratio: 1.05;
  }

  .faq-section {
    padding-bottom: 76px;
  }

  .faq-list {
    margin-top: 42px;
  }

  .faq-trigger {
    padding: 21px 18px;
    font-size: 1rem;
  }

  .faq-answer {
    margin: -2px 18px 22px;
    font-size: 0.93rem;
  }
}
/* --- PROPERTY CARD CONTACT BUTTON STYLING --- */
.property-image-wrap {
    position: relative;
}

.property-price-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 17px;
    border-radius: 999px;
    background: #fff;
    font-size: 0.9rem;
    color: #080808;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, transform 0.2s ease;
}

.property-price-btn:hover {
    background: #f0f0f0;
    transform: scale(1.03);
}
/* --- SMOOTH INTERACTIVE FAQ STYLING --- */

.faq-item {
    background-color: var(--surface, #f4f4f4);
    border-radius: 12px;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for unselected (closed) items only */
.faq-item:not(.is-open):hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Active / Open state (Turns fully black) */
.faq-item.is-open {
    background-color: var(--ink, #080808) !important;
    color: #fff;
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.faq-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 27px 24px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 1.25rem;
    text-align: left;
}

/* Smooth expansion for the answer */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 24px;
    padding-bottom: 0;
    color: #d0d0d0;
    line-height: 1.55;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin: -6px 24px 28px 24px;
}

/* Icon rotation transition */
.faq-icon {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(90deg);
}
/* --- HOME PAGE STICKY STACKING STYLES --- */
.home-hero {
    padding: 180px 0 80px 0;
    text-align: left;
}

.home-hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    line-height: 1.03;
    letter-spacing: -0.065em;
    font-weight: 500;
    margin: 0 0 20px 0;
    font-family: "Space Grotesk", sans-serif;
}

.hero-subtext {
    color: #6f6f6f;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0;
    line-height: 1.5;
}

.section-title-wrap {
    margin-bottom: 50px;
}

.section-title-wrap h2 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 500;
    margin-top: 15px;
    font-family: "Space Grotesk", sans-serif;
}

.stacking-container {
    position: relative;
    padding: 40px 0 140px 0;
}

.sticky-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sticky-property-card {
    position: sticky;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.card-image-side {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
}

.stack-property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sticky-property-card:hover .stack-property-img {
    transform: scale(1.03);
}

.card-content-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sticky-property-card h2 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.prop-location {
    color: #6f6f6f;
    font-size: 1.05rem;
    margin: 0;
}

.prop-desc {
    color: #4d4d4d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.stack-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px 24px;
    background: #080808;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
}

.stack-contact-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.view-all-wrap {
    margin-top: 80px;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #f4f4f4;
    color: #080808;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.view-all-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .sticky-property-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
        position: relative !important;
        top: auto !important;
    }
    .card-image-side {
        height: 260px;
    }
    .sticky-property-card h2 {
        font-size: 1.6rem;
    }
}
/* --- FIX HOME PAGE CONTAINER & ALIGNMENT --- */
.home-page .content-container,
.stacking-container .content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.home-hero {
    overflow: hidden;
    position: relative;
}

.home-hero h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* --- HOME PAGE & EMBEDDED STACKING STYLING --- */
.home-page .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.home-hero {
    padding: 140px 0 80px 0;
}

.home-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #444;
}

.home-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 500;
    margin: 0 0 20px 0;
    font-family: "Space Grotesk", sans-serif;
}

.hero-subtext {
    color: #6f6f6f;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0;
    line-height: 1.5;
}

.home-featured-stack {
    padding: 60px 0 140px 0;
    background-color: transparent;
}

.section-title-wrap {
    margin-bottom: 50px;
}

.section-title-wrap h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 500;
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
}

.sticky-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sticky-property-card {
    position: sticky;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card-image-side {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background: #f0f0f0;
}

.stack-property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sticky-property-card:hover .stack-property-img {
    transform: scale(1.02);
}

.card-content-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sticky-property-card h2 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.prop-location {
    color: #6f6f6f;
    font-size: 1rem;
    margin: 0;
}

.prop-desc {
    color: #555;
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
}

.stack-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 24px;
    background: #080808;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: background 0.2s ease;
}

.stack-contact-btn:hover {
    background: #333;
}

.view-all-wrap {
    margin-top: 60px;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #eaeaea;
    color: #080808;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.view-all-btn:hover {
    background: #dedede;
}

@media (max-width: 900px) {
    .sticky-property-card {
        grid-template-columns: 1fr;
        padding: 20px;
        position: relative !important;
        top: auto !important;
    }
    .card-image-side {
        height: 240px;
    }
}
/* ==========================================================================
   HOMEPAGE CUSTOM STYLES & STICKY STACKING
   ========================================================================== */

/* Global Section Styles */
.home-section-light { padding: 80px 5%; background-color: #FFFFFF; color: #333333; }
.home-section-dark { padding: 80px 5%; background-color: #0d1a33; color: #BDC3C7; }
.home-section-slate { padding: 80px 5%; background-color: #17202A; color: #BDC3C7; border-top: 1px solid #2C3E50; border-bottom: 1px solid #2C3E50; }

/* Typography */
.navy-heading { color: #0d1a33; font-family: 'Orange Avenue', serif; margin-bottom: 15px; line-height: 1.2; font-weight: normal; }
.gold-heading { color: #D4AF37; font-family: 'Orange Avenue', serif; margin-bottom: 15px; line-height: 1.2; font-weight: normal; }
.sub-heading { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; color: #D4AF37; font-weight: bold; margin-bottom: 10px; display: block; }

/* Buttons */
.btn-solid-gold { background-color: #D4AF37; color: #0d1a33; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-block; text-transform: uppercase; transition: all 0.3s ease; border: 2px solid #D4AF37; }
.btn-solid-gold:hover { background-color: transparent; color: #D4AF37; }

.btn-outline-navy { background-color: transparent; color: #0d1a33; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-block; text-transform: uppercase; transition: all 0.3s ease; border: 2px solid #0d1a33; }
.btn-outline-navy:hover { background-color: #0d1a33; color: #D4AF37; }

/* Layout Grids */
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
.grid-3-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.grid-6-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; text-align: center; }

/* --- NEW: STICKY STACKING PROPERTIES --- */
.properties-list-container {
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
}

.property-row {
    position: sticky;
    top: 120px; /* This dictates where the card stops and sticks on the screen */
    background: #ffffff; /* Must be solid white so it covers the card behind it */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.08); /* A shadow at the TOP to emphasize layering */
    border: 1px solid #EEEEEE;
    margin-bottom: 80px; /* The scrolling distance between cards */
}

/* Ensure the stacking order is correct */
.property-row:nth-child(1) { z-index: 10; }
.property-row:nth-child(2) { z-index: 20; }
.property-row:nth-child(3) { z-index: 30; }
.property-row:nth-child(4) { z-index: 40; }
.property-row:nth-child(5) { z-index: 50; margin-bottom: 0; }

.prop-img-box {
    height: 420px; 
    background-color: #E0E0E0; 
    border-radius: 8px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px dashed #CCC;
}

.prop-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Cards & Icons */
.feature-box { display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; background: #17202A; padding: 30px 15px; border-radius: 8px; border: 1px solid #2C3E50; transition: transform 0.3s ease; }
.feature-box:hover { transform: translateY(-5px); }
.icon-circle { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #D4AF37; background-color: #0d1a33; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-circle svg { stroke: #D4AF37; }
.feature-box h3 { color: #F2F3F4; font-size: 1.05rem; font-family: 'Orange Avenue', sans-serif; font-weight: normal; }

.service-card { background-color: #F9F9F9; border: 1px solid #EEEEEE; padding: 40px 30px; text-align: center; border-radius: 8px; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card svg { stroke: #0d1a33; width: 45px; height: 45px; margin-bottom: 20px; }

.testimonial-card { background-color: #17202A; padding: 35px 25px; border-radius: 8px; border-left: 3px solid #D4AF37; text-align: left; }

.amenity-icons { display: flex; gap: 20px; margin: 25px 0; border-top: 1px solid #EEEEEE; border-bottom: 1px solid #EEEEEE; padding: 15px 0; flex-wrap: wrap; }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: bold; color: #555; }
.amenity-item svg { width: 20px; height: 20px; stroke: #D4AF37; }

/* Inline Form */
.inline-form { display: flex; gap: 15px; max-width: 1000px; margin: 40px auto 0; flex-wrap: wrap; justify-content: center; }
.inline-form input, .inline-form select { padding: 16px; border: 1px solid #CCC; border-radius: 4px; flex: 1; min-width: 220px; font-family: 'Orange Avenue', sans-serif; font-size: 1rem; background: #FFF; }
.inline-form button { background-color: #0d1a33; color: #D4AF37; border: none; padding: 16px 40px; font-weight: bold; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; font-size: 1rem; }
.inline-form button:hover { background-color: #D4AF37; color: #0d1a33; }

@media (max-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr; text-align: center; }
    .amenity-icons { justify-content: center; }
    .inline-form { flex-direction: column; }
    .property-row { position: static; margin-bottom: 50px; } /* Disable sticky on mobile for better scrolling */
}