/* ============================================
   DESIGN TOKENS & THEME COLORS
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #3a2d5a;
  --primary-dark: #ce8383;
  --primary-light: #d99090;

  /* Neutrals */
  --surface: #f8f6f4;
  --surface-dark: #e8e5e2;
  --background: #ffffff;
  --text: #2d2d2d;
  --text-light: #555555;
  --text-muted: #999999;

  /* Accents */
  --accent: #2d2d2d;
  --accent-light: #f0e6e6;

  /* Warm brand RGBA helpers (DRY for repeated usage) */
  --warm-strong: rgba(236, 159, 96, 0.85);
  --warm-mid: rgba(236, 159, 96, 0.55);
  --warm-soft: rgba(236, 159, 96, 0.35);
  --warm-faint: rgba(236, 159, 96, 0.08);

  /* Functional */
  --border: #e0dcd9;
  --success: #4caf50;
  --error: #f44336;
  --warning: #ffc107;

  /* Spacing & Sizing */
  --radius: 8px;
  --shadow: 0 4px 12px rgba(45, 45, 45, 0.1);
  --shadow-hover: 0 8px 20px rgba(45, 45, 45, 0.15);
}


/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}


/* ================================
   Services Section (Standalone)
   ================================ */

.services-section {
  padding: 5rem 1.5rem;
  background: white;
  color: #e5e7eb;
}

.services-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header block */
.services-section__header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.services-section__title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  color: #2d2b2b;
}

.services-section__subtitle {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3f4247;
  margin: 0;
}

/* Optional: subtle entry animation */
.services-section__header {
  opacity: 0;
  transform: translateY(12px);
  animation: services-fade-in 0.7s ease-out forwards;
}

@keyframes services-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .services-section {
    padding: 6rem 2rem;
  }

  .services-section__title {
    font-size: 2.8rem;
  }

  .services-section__subtitle {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .services-section__title {
    font-size: 3rem;
  }
}

/* ===== Services Suite Section ===== */

.services-suite {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Optional subtle background accent */
.services-suite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.services-suite .container {
    position: relative;
    z-index: 1;
}

/* Header */

.services-suite-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-suite-title {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.services-suite-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(38, 40, 42, 0.75);
    margin: 0 auto;
}

/* Grid */

.services-suite-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

/* Cards */

.services-suite-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.25rem;
    padding: 1.6rem 1.6rem 1.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    transition:
        transform 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease;
}

/* Accent strip on top edge */
.services-suite-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid transparent;
    background: linear-gradient(90deg, #6366f1, #22d3ee, #a855f7) border-box;
    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0.8;
}

/* Hover / focus state */

.services-suite-card:hover,
.services-suite-card:focus-within {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.35);
}

/* Pill label */

.services-suite-pill {
    align-self: flex-start;
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.85);
}

/* Icon + title */

.services-suite-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 0.4rem;
}

.services-suite-name {
    font-size: 1.05rem;
    margin: 0.3rem 0 0.25rem;
}

.services-suite-copy {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(39, 44, 49, 0.8);
    margin: 0;
}

/* Benefits list */

.services-suite-benefits {
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    font-size: 0.86rem;
}

.services-suite-benefits li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(35, 37, 40, 0.95);
}

.services-suite-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
}

/* Simple fade-up animation on load */

@keyframes services-suite-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-suite-card {
    opacity: 0;
    animation: services-suite-fade-up 520ms ease-out forwards;
}

.services-suite-card:nth-child(1) { animation-delay: 60ms; }
.services-suite-card:nth-child(2) { animation-delay: 120ms; }
.services-suite-card:nth-child(3) { animation-delay: 180ms; }
.services-suite-card:nth-child(4) { animation-delay: 240ms; }
.services-suite-card:nth-child(5) { animation-delay: 300ms; }
.services-suite-card:nth-child(6) { animation-delay: 360ms; }
.services-suite-card:nth-child(7) { animation-delay: 420ms; }
.services-suite-card:nth-child(8) { animation-delay: 480ms; }

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

@media (max-width: 1199px) {
    .services-suite-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .services-suite {
        padding: 3.5rem 0;
    }

    .services-suite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
    }

    .services-suite-card {
        padding: 1.4rem 1.4rem 1.25rem;
    }
}

@media (max-width: 640px) {
    .services-suite-header {
        text-align: left;
    }

    .services-suite-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-suite-card {
        border-radius: 1rem;
    }
}


/* Rating Summary Component
   This file is scoped under .rating-summary to avoid impacting global design.
*/

.rating-summary {
    padding: 3rem 0;
     background: #ffffff;
}

.rating-summary-card {
    position: relative;
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    background:   linear-gradient(135deg, var(--warm-mid), var(--background)); /* Updated to white */
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    overflow: hidden;}

/* Accent line on top */
.rating-summary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #22c55e);
    opacity: 0.9;
}

/* Header */
.rating-summary-header {
    padding-top: 0.5rem; /* accounts for the accent line */
}

.rating-summary-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.rating-summary-subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* Body layout */
.rating-summary-body {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* Score block */
.rating-summary-score {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.rating-summary-score-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.rating-summary-score-max {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Vertical divider (hidden on mobile) */
.rating-summary-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.12),
        rgba(15, 23, 42, 0.03)
    );
}

.rating-summary-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Stars */
.rating-summary-stars {
    font-size: 1.1rem;
    line-height: 1;
}

/* Text + highlight */
.rating-summary-text {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}

.rating-summary-highlight {
    font-weight: 600;
}

.rating-summary-caption {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Subtle hover/interaction if card is clickable in future */
.rating-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    transition: box-shadow 160ms ease-out, transform 160ms ease-out;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .rating-summary-card {
        padding: 1.5rem 1.5rem 1.75rem;
        border-radius: 1rem;
    }

    .rating-summary-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .rating-summary-divider {
        display: none;
    }

    .rating-summary-score-number {
        font-size: 2.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rating-summary-card,
    .rating-summary-card:hover {
        transition: none;
        transform: none;
    }
}


/* ============================
   Review Filters
   ============================ */

.review-filters {
    background: #ffffff;
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.review-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-filters-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.review-filters-subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* Filter buttons row */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition:
        background-color 140ms ease-out,
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out;
}

.filter-btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
    transition: background-color 140ms ease-out;
}

.filter-btn:hover {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border-color: rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.filter-btn:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Active state aligns with primary system color but stays neutral-friendly */
.filter-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.3);
}

.filter-btn.active::before {
    background: #22c55e;
}

/* ============================
   Reviews Section & Grid
   ============================ */

.reviews-section {
    background: #ffffff;
    padding: 2rem 0 3rem;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.reviews-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.reviews-subtitle {
    margin: 0.4rem 0 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* Badge on the right */

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.18);
    font-size: 0.8rem;
    white-space: nowrap;
}

.reviews-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #16a34a;
}

.reviews-badge-label {
    font-weight: 500;
    color: #000;
}

/* Reviews grid shell – cards will be injected via JS */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Provide a baseline card style for injected reviews (if you use .review-card) */

.reviews-grid .review-card {
    border-radius: 1rem;
    padding: 1.25rem 1.4rem;
    background: linear-gradient(135deg, var(--warm-mid), var(--background));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ============================
   Case Study
   ============================ */

.case-study {
    background: #f9fafb;
    padding: 3rem 0 3.5rem;
}

.case-study-card {
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    background: linear-gradient(135deg, var(--warm-mid), var(--background));
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

/* Accent border on top */

.case-study-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #22c55e);
}

/* Header */

.case-study-header {
    padding-top: 0.75rem; /* accommodate accent line */
    margin-bottom: 1.5rem;
}

.case-study-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    font-weight: 500;
}

.case-study-title {
    margin: 0.7rem 0 0.3rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.case-study-subtitle {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Layout */

.case-study-content {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: flex-start;
}

/* Metrics */

.case-key-metrics {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-key-metrics li {
    min-width: 110px;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.02);
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    color: #161414;
}

.metric-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2424;
}

/* Quote */

.case-quote {
    margin: 1.25rem 0 0;
    padding: 1rem 1rem 0.9rem;
    border-left: 3px solid #4f46e5;
    background: rgba(79, 70, 229, 0.02);
    border-radius: 0.75rem;
}

.case-quote blockquote {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #000;
}

.case-quote figcaption {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #000;
}

.case-quote figcaption span {
    display: block;
}

/* Image side */

.case-image {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.case-image-frame {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.case-image img {
    display: block;
    width: 100%;
    height: auto;
}

.case-image-caption {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

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

@media (max-width: 900px) {
    .review-filters-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-card {
        padding: 1.75rem 1.5rem;
        border-radius: 1.25rem;
    }

    .case-study-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .case-image {
        order: -1; /* surface the image first on mobile if desired */
    }
}

@media (max-width: 600px) {
    .review-filters {
        padding: 2rem 0 1.25rem;
    }

    .reviews-section {
        padding: 1.5rem 0 2.5rem;
    }

    .case-study {
        padding: 2.25rem 0 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .filter-btn,
    .filter-btn:hover {
        transition: none;
        transform: none;
        box-shadow: none;
    }
}


/* ============================
   Careers Intro
   ============================ */

.careers-intro {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center; /* Central alignment of text */
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.careers-intro-layout {
    display: flex;
    flex-direction: column; /* Stack naturally */
    align-items: center; /* Center horizontally */
    justify-content: center;
    gap: 2rem;
}

/* Copy block */

.careers-intro-copy {
       max-width: 720px;
    text-align: center;

}

.careers-intro-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.careers-intro-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.careers-intro-lead {
    margin: 0.75rem 0 0.4rem;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.careers-intro-body {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Highlights / value props */

.careers-intro-highlights {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.careers-intro-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Hover affordance if you ever make these clickable */
.careers-intro-pill:hover {
    background: #0b0909;
     color: #ffffff;
    background-color: rgba(0, 0, 0, 0.777);
}

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

@media (max-width: 768px) {
    .careers-intro {
        padding: 2.25rem 0;
    }

    .careers-intro-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-intro-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .careers-intro-highlights {
        flex-direction: column;
    }
}


/* ================================
   How We Work – Section Wrapper
   ================================ */

.how-we-work {
    padding: 4rem 0;
    background: white;
    position: relative;
    overflow: hidden;
    color: #f9fafb;
}

.how-we-work::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.35), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.how-we-work .container {
    position: relative;
    z-index: 1;
}

/* ================================
   Heading
   ================================ */

.how-we-work h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    margin: 0 0 2.4rem;
    color: #0b0909;
    text-align: center;
    letter-spacing: 0.03em;
}

/* ================================
   Process Steps Layout
   ================================ */

.how-we-work .process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

/* ================================
   Step Card
   ================================ */

.how-we-work .step {
    background: #ffffff; /* high contrast against gradient */
    color: #0f172a;
    border-radius: 1.1rem;
    padding: 1.4rem 1.3rem 1.3rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.06);

    flex: 1 1 0;
    min-width: 180px;
    max-width: 230px;

    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
    position: relative;
    overflow: hidden;

    /* base state for slow zoom */
    transform: translateY(0) scale(1);
    transition:
        transform 520ms ease,
        box-shadow 520ms ease,
        border-color 260ms ease,
         260ms ease;
}

/* subtle accent bar on top */
.how-we-work .step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    opacity: 0.9;
}

/* Slow zoom hover */
.how-we-work .step:hover,
.how-we-work .step:focus-within {
    transform: translateY(-8px) scale(1.04); /* slow zoom effect */
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.28);
    border-color: rgba(15, 23, 42, 0.16);
    background: #ffffff;
}

/* ================================
   Step Number
   ================================ */

.how-we-work .step-number {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;

    background: #ffffff;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(135deg, var(--background), var(--warm-mid));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* ================================
   Step Text
   ================================ */

.how-we-work .step h3 {
    font-size: 0.98rem;
    margin: 0.3rem 0 0.1rem;
    color: #0b1120;
}

.how-we-work .step p {
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0;
    color: #4b5563;
}

/* ================================
   Arrows Between Steps
   ================================ */

.how-we-work .step-arrow {
    align-self: center;
    font-size: 1.7rem;
    color: rgba(0, 0, 0, 0.88);
    flex: 0 0 auto;
    transform: translateY(2px);
}

/* ================================
   Fade-In Animation (for .fade-in)
   ================================ */

.how-we-work .fade-in {
    opacity: 0;
    animation: how-we-work-fade-up 520ms ease-out forwards;
}

.how-we-work .step:nth-of-type(1) { animation-delay: 60ms; }
.how-we-work .step:nth-of-type(3) { animation-delay: 140ms; }
.how-we-work .step:nth-of-type(5) { animation-delay: 220ms; }
.how-we-work .step:nth-of-type(7) { animation-delay: 300ms; }
.how-we-work .step:nth-of-type(9) { animation-delay: 380ms; }

@keyframes how-we-work-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@media (max-width: 991px) {
    .how-we-work {
        padding: 3.2rem 0;
    }

    .how-we-work .process-steps {
        flex-wrap: wrap;
        row-gap: 1.4rem;
    }

    .how-we-work .step {
        max-width: none;
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 720px) {
    .how-we-work h2 {
        text-align: left;
        margin-bottom: 2rem;
    }

    .how-we-work .process-steps {
        flex-direction: column;
        gap: 1.1rem;
    }

    .how-we-work .step {
        width: 100%;
        max-width: none;
    }

    /* hide arrows on mobile for cleaner vertical flow */
    .how-we-work .step-arrow {
        display: none;
    }
}

/* ============================
   Benefits Section
   ============================ */

.benefits-section {
    background: #f9fafb;
    padding: 3rem 0 3.5rem;
}

.benefits-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.benefits-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.benefits-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.benefits-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ============================
   Benefits Grid
   ============================ */

.benefits-grid {
    display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* Card */

.benefit-card {
    position: relative;
    border-radius: 1rem;
    padding: 1.4rem 1.4rem 1.5rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition:
        transform 140ms ease-out,
        box-shadow 140ms ease-out,
        border-color 140ms ease-out,
        background-color 140ms ease-out;
}

/* Accent on hover */

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid transparent;
    pointer-events: none;
    transition: border-color 140ms ease-out;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.18);
    background-color: #ffffff;
}

.benefit-card:hover::before {
    border-color: #4f46e5;
}

/* Icon */

.benefit-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
    background: rgba(79, 70, 229, 0.06);
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Text */

.benefit-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.benefit-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ============================
   Fade-in (optional)
   ============================ */

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: benefitsFadeIn 480ms ease-out forwards;
}

.benefit-card:nth-child(2) {
    animation-delay: 80ms;
}
.benefit-card:nth-child(3) {
    animation-delay: 160ms;
}
.benefit-card:nth-child(4) {
    animation-delay: 240ms;
}
.benefit-card:nth-child(5) {
    animation-delay: 320ms;
}
.benefit-card:nth-child(6) {
    animation-delay: 400ms;
}

@keyframes benefitsFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .benefits-section {
        padding: 2.5rem 0 3rem;
    }

    .benefits-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .benefit-card,
    .benefit-card:hover {
        transition: none;
        transform: none;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    }
}

/* ============================
   Open Positions
   ============================ */

.open-positions {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    color: #ffffff;
    padding: 3rem 0;
}

.open-positions-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.75rem;
}

/* Copy */

.open-positions-copy {
    max-width: 540px;
}

.open-positions-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.open-positions-title {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    
}

.open-positions-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Actions */

.open-positions-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.open-positions-cta-primary,
.open-positions-cta-secondary {
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 140ms ease-out,
        color 140ms ease-out,
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out;
}

/* Primary CTA */

.open-positions-cta-primary {
    background: #f97316;
    border-color: #f97316;
    color: #0f172a;
    box-shadow: 0 18px 40px rgba(248, 113, 22, 0.4);
}

.open-positions-cta-primary:hover {
    background: #fb923c;
    border-color: #fb923c;
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(248, 113, 22, 0.5);
}

/* Secondary CTA */

.open-positions-cta-secondary {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.3);
    color: #000000;
}

.open-positions-cta-secondary:hover {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(252, 248, 248, 0.5);
    transform: translateY(-1px);
}

/* Meta */

.open-positions-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.85;
}

.open-positions-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

/* Focus states */

.open-positions-cta-primary:focus-visible,
.open-positions-cta-secondary:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

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

@media (max-width: 768px) {
    .open-positions {
        padding: 2.5rem 0;
    }

    .open-positions-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .open-positions-actions {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .open-positions-cta-primary,
    .open-positions-cta-secondary,
    .open-positions-cta-primary:hover,
    .open-positions-cta-secondary:hover {
        transition: none;
        transform: none;
        box-shadow: none;
    }
}



/* ============================
   Application Section
   ============================ */

.application-section {
    background: #ffffff;
    padding: 3rem 0 3.5rem;
}

.application-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.25rem 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    text-align: center;
}

/* Header / Copy */

.application-copy {
    margin-bottom: 1.5rem;
}

.application-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.application-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.application-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Form / CTA */

.application-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.application-instruction {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Primary CTA button */

.application-cta-primary {
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    outline: none;
    background: #f97316;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition:
        background-color 140ms ease-out,
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out;
}

.application-cta-primary:hover {
    background: #111827;
    border-color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
}

.application-cta-primary:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Meta text */

.application-meta {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Success message */

.application-success {
    display: none; /* will be toggled via JS */
    margin-top: 1.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    font-size: 0.9rem;
    text-align: left;
}

.application-success strong {
    display: block;
    margin-bottom: 0.2rem;
}

.application-success span {
    display: block;
}

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

@media (max-width: 768px) {
    .application-section {
        padding: 2.5rem 0 3rem;
    }

    .application-card {
        padding: 1.75rem 1.5rem;
        border-radius: 1.25rem;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .application-cta-primary,
    .application-cta-primary:hover {
        transition: none;
        transform: none;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    }
}

/* ============================
   Contact Overview
   ============================ */

.contact-overview {
    background: #f9fafb;
    padding: 3rem 0 3.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-overview-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

/* Copy / Heading */

.contact-overview-copy {
    margin-bottom: 1.5rem;
}

.contact-overview-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.contact-overview-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-overview-subtitle {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Actions / Chips */

.contact-overview-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-chip {
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f974168a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition:
        background-color 140ms ease-out,
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out;
}

.contact-chip:hover {
    background: rgba(15, 23, 42, 0.02);
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.contact-chip:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Meta */

.contact-overview-meta {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-overview-meta span {
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .contact-overview {
        padding: 2.5rem 0 3rem;
    }

    .contact-overview-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-chip,
    .contact-chip:hover {
        transition: none;
        transform: none;
        box-shadow: none;
    }
}

/* ============================
   Contact Cards Section
   ============================ */

.contact-cards-section {
    background: #ffffff;
    padding: 3rem 0 3.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-cards-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.contact-cards-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.contact-cards-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-cards-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ============================
   Cards Grid
   ============================ */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ============================
   Individual Card
   ============================ */

.contact-card {
    position: relative;
    border-radius: 1.1rem;
    padding: 1.6rem 1.5rem 1.5rem;
    background: #f9fafb;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition:
        transform 140ms ease-out,
        box-shadow 140ms ease-out,
        border-color 140ms ease-out,
        background-color 140ms ease-out;
}

/* Subtle accent on hover */

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid transparent;
    pointer-events: none;
    transition: border-color 140ms ease-out;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.18);
    background-color: linear-gradient(135deg, var(--background), var(--warm-mid));
}

.contact-card:hover::before {
    border-color: #4f46e5;
}

/* Icon */

.contact-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    background: rgba(79, 70, 229, 0.06);
}

.contact-icon {
    font-size: 1.3rem;
}

/* Text */

.contact-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-card-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Details */

.contact-card-details {
    margin-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-detail {
    margin: 0;
    font-size: 0.9rem;
}

.contact-hours {
    margin: 0.3rem 0 0;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* ============================
   Fade-in (optional)
   ============================ */

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: contactFadeIn 480ms ease-out forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 90ms;
}
.contact-card:nth-child(3) {
    animation-delay: 180ms;
}

@keyframes contactFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .contact-cards-section {
        padding: 2.5rem 0 3rem;
    }

    .contact-cards-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .contact-card,
    .contact-card:hover {
        transition: none;
        transform: none;
        box-shadow: linear-gradient(135deg, var(--background), var(--warm-mid));
    }
}





/* ================================
   FAQs – Section Wrapper
   ================================ */

.faqs-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    position: relative;
    overflow: hidden;
    color: #f9fafb;
}

.faqs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.32), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.faqs-section .container {
    position: relative;
    z-index: 1;
}

/* ================================
   Heading
   ================================ */

.faqs-section h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    margin: 0 0 2.6rem;
    color: #1f1c1c;
    text-align: center;
    letter-spacing: 0.03em;
}

/* ================================
   FAQ List Layout
   ================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* ================================
   FAQ Item Card
   ================================ */

.faq-item {
    background: #ffffff; /* strong contrast against gradient */
    color: #0f172a;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transition:
        box-shadow 360ms ease,
        border-color 260ms ease,
        transform 360ms ease;
    transform: translateY(0) scale(1);
}

/* subtle lift on hover */
.faq-item:hover {
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.26);
    border-color: rgba(15, 23, 42, 0.16);
    transform: translateY(-4px) scale(1.01);
}

/* ================================
   Question Header
   ================================ */

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 0.98rem;
    margin: 0;
    color: #0b1120;
}

.faq-toggle {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1;

    color: #0f172a;
    background: #ffffff;
    border: 1px solid transparent;
    background-image:
        linear-gradient(#ffffff, #ffffff),
        linear-gradient(135deg, var(--background), var(--warm-mid));
    background-origin: border-box;
    background-clip: padding-box, border-box;

    transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

/* ================================
   Answer Content (Accordion)
   ================================ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.4rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        max-height 280ms ease,
        opacity 260ms ease,
        transform 260ms ease,
        padding-bottom 260ms ease;
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0.3rem 0 0.1rem;
    color: #4b5563;
}

/* ================================
   Active State (toggled via JS)
   ================================ */

/* Expect JS to add .active to .faq-item when opened */
.faq-item.active .faq-answer {
    max-height: 260px;   /* adjust if you have very long answers */
    padding-bottom: 1.1rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* + becomes × style */
}

/* Optional: bold question when active */
.faq-item.active .faq-question h3 {
    font-weight: 600;
}

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

@media (max-width: 640px) {
    .faqs-section {
        padding: 3.2rem 0;
    }

    .faqs-section h2 {
        text-align: left;
        margin-bottom: 2.1rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1rem;
    }
}



/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #cca43e;
  color: #000000;
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

.btn-light {
  background-color: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-light:hover {
  background-color: var(--surface);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 100%),
    url("./hero.jpg") center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  margin-bottom: 3rem;
  
}

.hero-content > * {
  opacity: 1;
  transform: none;
  align-items: center;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: black;
  margin-bottom: 2rem;
}

.hero-search {
  max-width: 900px;
  margin: 0 auto;
}

.hero-search .search-input,
.hero-search button {
  opacity: 1;
  transform: none;
}

.search-input {
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}


/* ============================================
   METRICS SECTION
   ============================================ */
.metrics {
  position: relative;
  padding: 4rem 2rem;
  background-image: url('./hero sketch.png');
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.metric-card {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--warm-mid);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
  opacity: 1;
  transform: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.metric-card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--warm-mid);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.category-card a {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.category-card a:hover {
  background-color: var(--primary);
  color: white;
}

/* ============================================
   PROPERTIES GRID (merged property-card rules)
   ============================================ */
.featured-listings,
.listings-main {
  padding: 4rem 2rem;
}

.featured-listings {
  background: url('./feature BG.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.properties-grid,
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.property-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 1;
  transform: none;
}

.property-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.property-info {
  padding: 1.5rem;
  background-color: var(--warm-mid);
}

.property-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.property-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}


/* TIMELINE */
.timeline {
  padding: 70px 0;
  background: #f9f7f5;
}

.timeline h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 25px;
  width: 3px;
  height: 100%;
  background: var(--warm-mid);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.timeline-marker {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--warm-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.timeline-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 22px;
  border: 1px solid var(--warm-soft);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-card h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--warm-mid);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 600px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    gap: 15px;
  }

  .timeline-marker {
    min-width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }

  .timeline-card {
    padding: 16px 18px;
  }
}

/* OVERVIEW */
.overview {
  padding: 80px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 40px;
  align-items: center;
}

.overview-header h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.overview-tagline {
  font-size: 1rem;
  max-width: 360px;
  opacity: 0.9;
}

.overview-content p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.overview-content p strong {
  font-weight: 700;
}

.overview-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(236, 159, 96, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(236, 159, 96, 0.8);
}

.stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .overview-header h2 {
    text-align: left;
  }
}


/* ============================================
   UTILITY: FADE-IN (static, animations removed)
   ============================================ */
.fade-in {
  opacity: 1;
  transform: none;
}


/* ============================================
   VALUE PROPOSITIONS
   ============================================ */
.why-us {
  padding: 4.5rem 2rem;
  background: linear-gradient(180deg, #faf8f7 0%, #f7f3f0 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.why-header {
  max-width: 920px;
  margin: 0 auto 2rem;
  text-align: center;
}

.why-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.why-sub {
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 2.25rem;
}

/* Unified value-card.alt */
.value-card.alt {
  position: relative;
  background: var(--surface);
  border-radius: 14px;
  padding: 1.6rem;
  border: 1px solid var(--warm-soft);
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
  outline: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.18s ease;
}

/* Accent glow bar */
.value-card.alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  opacity: 0.9;
}

.value-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-icon {
  font-size: 2.25rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(236, 159, 96, 0.12),
    rgba(236, 159, 96, 0.06)
  );
  color: var(--primary);
  box-shadow: inset 0 -6px 12px rgba(236, 159, 96, 0.02);
}

.value-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(58, 45, 90, 0.06);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.value-card.alt h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}

.value-card.alt p {
  margin: 0.25rem 0 0.5rem;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1 0 auto;
}

.value-card.alt:hover,
.value-card.alt:focus {
  background: var(--warm-mid);
  border-color: #000;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.08);
}

.value-card.alt:hover h3 {
  color: var(--primary);
}

.value-card.alt:hover p {
  color: var(--text);
}

.why-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.why-cta .btn {
  min-width: 160px;
  padding: 0.75rem 1.1rem;
}

@media (max-width: 1024px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card.alt {
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .value-props {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 1.5rem;
  }

  .why-sub {
    padding: 0 1rem;
  }

  .why-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ====== Mission, Vision & Values ====== */
.mvv {
  padding: 80px 0;
  background: #0f0f0f;
  color: #fff3e9;
  position: relative;
}

.mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--warm-mid), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(236, 159, 96, 0.15), transparent 60%);
  z-index: 0;
}

.mvv .container {
  position: relative;
  z-index: 2;
}

.mvv h2 {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.mvv h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgba(236, 159, 96, 0.8);
  display: block;
  border-radius: 999px;
  margin: 14px auto 0;
}

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

.mvv-card {
  background: var(--warm-faint);
  border: 1px solid rgba(236, 159, 96, 0.25);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(236, 159, 96, 0.8);
  border-radius: 4px;
}

.mvv-card:hover {
  transform: translateY(-6px);
  background: rgba(236, 159, 96, 0.15);
  border-color: rgba(236, 159, 96, 0.45);
  box-shadow: 0 12px 40px rgba(236, 159, 96, 0.2);
}

.mvv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: rgba(236, 159, 96, 0.9);
  font-weight: 600;
  text-transform: uppercase;
}

.mvv-card p {
  color: #ffe8d7;
  line-height: 1.7;
  font-size: 1rem;
}

.values-section > h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: rgba(236, 159, 96, 0.9);
  letter-spacing: 0.06em;
}

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

.value-item {
  background: var(--warm-faint);
  border: 1px solid rgba(236, 159, 96, 0.25);
  padding: 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.value-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(236, 159, 96, 1);
  border-radius: 50%;
  position: absolute;
  top: 14px;
  left: 14px;
}

.value-item strong {
  margin-left: 18px;
  font-size: 1rem;
  color: rgba(236, 159, 96, 0.9);
}

.value-item p {
  font-size: 0.92rem;
  margin-top: 6px;
  color: #ffe8d7;
}

.value-item:hover {
  transform: translateY(-4px);
  background: rgba(236, 159, 96, 0.15);
  border-color: rgba(236, 159, 96, 0.4);
  box-shadow: 0 10px 32px rgba(236, 159, 96, 0.16);
}

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

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

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


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-preview {
  padding: 4rem 2rem;
  background: url("./hero sketch bold.png") center/cover no-repeat;
  position: relative;
  color: white;
  background-attachment: fixed;
}

.testimonials-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.testimonials-preview * {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: var(--warm-strong);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: none;
}

.stars {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  border-radius: var(--radius);
  margin: 4rem 2rem;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}


.certifications {
  padding: 70px 0;
  background: rgba(210, 203, 197, 0.55);
  backdrop-filter: blur(4px);
}

.certifications h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.cert-card {
  background: var(--warm-mid);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(236, 159, 96, 0.3);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cert-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}


/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  padding: 3rem 2rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-light);
}



/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.08),
              transparent 55%),
              var(--accent);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* subtle overlay accent */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    transparent 40%,
    rgba(0, 0, 0, 0.08)
  );
  opacity: 0.7;
}

.footer .container {
  position: relative;
  z-index: 1; /* keep content above overlay */
}

/* Layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
  margin-bottom: 2rem;
}

/* Section headings */
.footer-section h4 {
  color: #ffffff;
  margin: 0 0 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Body text */
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.45rem;
}

/* Links */
.footer-section a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    color 0.18s ease-out,
    opacity 0.18s ease-out,
    transform 0.16s ease-out;
}

.footer-section a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.18s ease-out;
  opacity: 0.9;
}

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-section a:hover::after {
  width: 100%;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

/* Responsive tuning */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1.5rem 1.25rem;
  }

  .footer-content {
    gap: 1.75rem;
  }

  .footer-section h4 {
    margin-bottom: 0.7rem;
  }
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: all 0.3s ease;
  z-index: 999;
  scroll-behavior: smooth;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}


/* ============================================
   FORMS
   ============================================ */
.search-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 122, 122, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-overview {
  padding: 2rem;
  text-align: center;
  background-color: var(--background);
}

.contact-cards-section {
  padding: 4rem 2rem;
  background-color: var(--surface);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-card:hover {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-detail {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-hours {
  font-size: 0.9rem;
  color: #0b0b0b;
  margin-top: 0.5rem;
}

.offices-section {
  padding: 4rem 2rem;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.office-card {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.office-card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.contact-form-section {
  padding: 4rem 2rem;
  background-color: var(--surface);
}

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

.map-section {
  padding: 4rem 2rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.social-section {
  padding: 3rem 2rem;
  text-align: center;
  background-color: linear-gradient(135deg, var(--background), var(--warm-mid));
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background-color: rgba(219, 174, 51, 0.43);
  transform: translateY(-5px);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .details-grid,
  .case-study-content {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
  }

  .step-arrow {
    display: block;
    transform: rotate(90deg);
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    bottom: 1rem;
    right: 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.25rem;
  }

  .properties-grid,
  .services-grid,
  .benefits-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
}


/* ============================
   Contact Form Section
   ============================ */

.contact-form-section {
    background: #f9fafb;
    padding: 3rem 0 3.5rem;
}

.contact-form-shell {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.25rem 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

/* Header */

.contact-form-header {
    margin-bottom: 1.75rem;
    text-align: left;
}

.contact-form-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.contact-form-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-form-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Form layout */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

/* Labels */

.contact-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #0f172a;
}

.contact-form label span {
    color: #ef4444;
}

/* Inputs / selects / textarea */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    transition:
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        background-color 140ms ease-out;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Focus states */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.15);
}

/* Placeholder */

.contact-form textarea::placeholder {
    opacity: 0.7;
}

/* Submit button */

.contact-submit-btn {
    margin-top: 0.75rem;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out;
}

.contact-submit-btn:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
}

.contact-submit-btn:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Meta text */

.contact-form-meta {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Success message */

.contact-success {
    display: none; /* toggled via JS */
    margin-top: 1.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    font-size: 0.9rem;
}

.contact-success strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-success span {
    display: block;
}

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

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2.5rem 0 3rem;
    }

    .contact-form-shell {
        padding: 1.75rem 1.5rem;
        border-radius: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .contact-submit-btn,
    .contact-submit-btn:hover {
        transition: none;
        transform: none;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    }
}


/* ============================
   Map Section
   ============================ */

.map-section {
    background: #ffffff;
    padding: 3rem 0 3.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.map-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.25rem 2rem 2.1rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

/* Header */

.map-header {
    margin-bottom: 1.5rem;
}

.map-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    margin-bottom: 0.7rem;
}

.map-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.map-subtitle {
    margin: 0.7rem 0 0.6rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.map-address-meta {
    margin-top: 0.25rem;
}

.map-address-line {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Map container */

.map-container {
    margin-top: 1.25rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
}

/* Footer */

.map-footer {
    margin-top: 1rem;
}

.map-footer-text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .map-section {
        padding: 2.5rem 0 3rem;
    }

    .map-shell {
        padding: 1.75rem 1.5rem 1.6rem;
        border-radius: 1.25rem;
    }

    .map-container iframe {
        height: 320px;
    }
}


/* ============================
   Social Section
   ============================ */

.social-section {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    color: #f9fafb;
    padding: 3rem 0 3.5rem;
}

.social-shell {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Header */

.social-header {
    margin-bottom: 1.75rem;
}

.social-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(248, 250, 252, 0.08);
    border: 1px solid rgba(248, 250, 252, 0.16);
    margin-bottom: 0.7rem;
}

.social-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.social-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Icons row */

.social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.75rem 0 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #f9fafb;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(248, 250, 252, 0.18);
    cursor: pointer;
    transition:
        background-color 140ms ease-out,
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        transform 120ms ease-out,
        color 140ms ease-out;
}

/* You can fine-tune per-platform styling if desired */

.social-icon-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 18px 40px rgba(24, 119, 242, 0.45);
    transform: translateY(-2px);
}

.social-icon-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    box-shadow: 0 18px 40px rgba(10, 102, 194, 0.45);
    transform: translateY(-2px);
}

.social-icon-instagram:hover {
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 45%, #d6249f 75%, #285aeb 100%);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(220, 38, 127, 0.45);
    transform: translateY(-2px);
}

.social-icon-x:hover {
    background: #000000;
    border-color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Focus state */

.social-icon:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Meta */

.social-meta {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .social-section {
        padding: 2.5rem 0 3rem;
    }

    .social-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-icon,
    .social-icon:hover {
        transition: none;
        transform: none;
        box-shadow: none;
    }
}


/* ============================
   Listings Page Hero
   ============================ */

.listings-hero {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    color: #4f46e5;
    padding: 3rem 0 2.75rem;
    text-align: center; /* Centers text content */
}

.listings-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers inner items */
    justify-content: center;
    gap: 1.5rem;
}

.listings-hero-copy {
    max-width: 640px;
    text-align: center; /* Ensures copy block is centered */
}

.listings-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centers text inside pill */
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(79, 70, 229, 0.06);
    border: 1px solid rgba(248, 250, 252, 0.18);
    margin-bottom: 0.7rem;
}

.listings-hero-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center; /* Title centered */
}

.listings-hero-subtitle {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: center; /* Subtitle centered */
}

/* Meta pills */

.listings-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the pill row */
    gap: 0.6rem;
}

.listings-hero-pill {
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(248, 250, 252, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centers text inside pills */
}

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

@media (max-width: 768px) {
    .listings-hero {
        padding: 2.5rem 0 2.25rem;
    }

    .listings-hero-title {
        font-size: 1.6rem;
    }
}


/* ============================
   Filters Section – Property Listings
   ============================ */

.filters-section {
    background: #f9fafb;
    padding: 1.75rem 0 2.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.filters-shell {
    padding: 1.4rem 1.5rem 1.6rem;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

/* Header */

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.filters-header-copy {
    max-width: 460px;
}

.filters-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.filters-subtitle {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    opacity: 0.78;
}

/* Header right side: active pill + clear */

.filters-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.filters-active-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: #166534;
    white-space: nowrap;
}

.filters-active-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

/* Clear button – uses your existing .btn but tuned for this layout */

.filters-clear-btn {
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
}

/* Filters grid */

.filters-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0f172a;
}

/* Filter inputs */

.filter-input {
    width: 100%;
    border-radius: 0.55rem;
    border: 1px solid rgba(15, 23, 42, 0.18);
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
    background: #ffffff;
    outline: none;
    transition:
        border-color 140ms ease-out,
        box-shadow 140ms ease-out,
        background-color 140ms ease-out;
    appearance: none;
    /* custom dropdown arrow */
    background-image:
        linear-gradient(45deg, transparent 50%, #6b7280 50%),
        linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position:
        calc(100% - 14px) calc(50% - 3px),
        calc(100% - 10px) calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
}

.filter-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.15);
}

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

@media (max-width: 992px) {
    .filters-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .filters-shell {
        padding: 1.25rem 1.1rem 1.4rem;
        border-radius: 1rem;
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-header-actions {
        justify-content: flex-start;
    }

    .filters-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .filters-row {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .filter-input {
        transition: none;
    }
}

.filters-action-bar {
    margin-top: 20px; /* Increase value as needed for more space */
}


/* Root wrapper – keeps styles scoped to this component */
.ms-overview {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top left, #f3f6ff 0, #ffffff 45%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative subtle gradient overlay */
.ms-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(73, 133, 255, 0.08), transparent 55%);
  pointer-events: none;
}

/* Layout container */
.ms-overview__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header section */
.ms-overview__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.ms-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(31, 74, 255, 0.06);
  color: #1f4aff;
}

.ms-overview__title {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #101828;
}

.ms-overview__tagline {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #667085;
}

/* Main grid: text + stats */
.ms-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Copy block */
.ms-overview__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ms-overview__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475467;
}

.ms-overview__text strong {
  font-weight: 600;
  color: #1d2939;
}

/* Stats block */
.ms-overview__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ms-overview__stat-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(208, 213, 221, 0.8);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, border-color 150ms ease-out;
}

.ms-overview__stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  border-color: rgba(80, 112, 255, 0.5);
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
}

.ms-overview__stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #101828;
}

.ms-overview__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #667085;
}

/* Responsive behavior */
@media (max-width: 900px) {
  .ms-overview {
    padding: 3rem 1.25rem;
  }

  .ms-overview__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ms-overview__stats {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .ms-overview {
    padding: 2.5rem 1rem;
  }

  .ms-overview__title {
    font-size: 1.6rem;
  }

  .ms-overview__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* Wrapper */
.ms-mvv {
  padding: 4rem 1.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background accent */
.ms-mvv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(79, 70, 229, 0.06), transparent 55%);
  pointer-events: none;
}

.ms-mvv__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.ms-mvv__header {
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.ms-mvv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(79, 70, 229, 0.06);
  color: #4f46e5;
}

.ms-mvv__title {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #101828;
}

.ms-mvv__subtitle {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #667085;
}

/* Mission / Vision grid */
.ms-mvv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ms-mvv__card {
  background-color: linear-gradient(135deg, var(--background), var(--warm-mid));
  border-radius: 1rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(0, 41, 106, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
}

.ms-mvv__card--primary {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  color: linear-gradient(135deg, var(--background), var(--warm-mid));
}

.ms-mvv__card--primary .ms-mvv__card-title {
  color: #000000;
}

.ms-mvv__card--primary .ms-mvv__card-text {
  color: #000000;
}

.ms-mvv__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border-color: rgba(79, 70, 229, 0.5);
  background: white;
}

.ms-mvv__card-title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
}

.ms-mvv__card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #000000;
}

/* Values section */
.ms-mvv__values {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-top: 2.25rem;
}

.ms-mvv__values-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.ms-mvv__values-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #101828;
}

.ms-mvv__values-subtitle {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #667085;
}

/* Values grid */
.ms-mvv__values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.ms-mvv__value-item {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(78, 150, 243, 0.9);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background-color 140ms ease-out, border-color 140ms ease-out, transform 140ms ease-out;
}

.ms-mvv__value-item:hover {
  background: white;
  border-color: rgba(79, 70, 229, 0.45);
  transform: translateY(-2px);
}

.ms-mvv__value-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.ms-mvv__value-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #4b5563;
}

/* Optional local fade-in animation (isolated from global .fade-in) */
.ms-mvv .ms-mvv__header,
.ms-mvv .ms-mvv__grid,
.ms-mvv .ms-mvv__values {
  opacity: 0;
  transform: translateY(10px);
  animation: ms-mvv-fade-in 0.7s ease-out forwards;
}

.ms-mvv .ms-mvv__grid {
  animation-delay: 0.1s;
}

.ms-mvv .ms-mvv__values {
  animation-delay: 0.2s;
}

@keyframes ms-mvv-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ms-mvv {
    padding: 3rem 1.25rem;
  }

  .ms-mvv__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ms-mvv__values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ms-mvv {
    padding: 2.5rem 1rem;
  }

  .ms-mvv__title {
    font-size: 1.6rem;
  }

  .ms-mvv__values-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Wrapper */
.ms-leadership {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay */
.ms-leadership::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.ms-leadership__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #e5e7eb;
}

/* Header */
.ms-leadership__header {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.ms-leadership__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #bfdbfe;
}

.ms-leadership__title {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #000000;
}

.ms-leadership__subtitle {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #1f2128;
}

/* Grid */
.ms-leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

/* Card */
.ms-leadership__card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  backdrop-filter: blur(10px);
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    150ms ease-out;
}

.ms-leadership__card:hover {
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(96, 165, 250, 0.85);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.8);
}

/* Avatar */
.ms-leadership__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.6);
  flex-shrink: 0;
}

.ms-leadership__avatar-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eff6ff;
}

/* Content */
.ms-leadership__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ms-leadership__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.ms-leadership__role {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93c5fd;
}

.ms-leadership__bio {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* Optional local animation */
.ms-leadership__card {
  opacity: 0;
  transform: translateY(12px);
  animation: ms-leadership-fade-in 0.7s ease-out forwards;
}

.ms-leadership__card:nth-child(2) {
  animation-delay: 0.08s;
}
.ms-leadership__card:nth-child(3) {
  animation-delay: 0.16s;
}
.ms-leadership__card:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes ms-leadership-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .ms-leadership {
    padding: 3.5rem 1.25rem;
  }

  .ms-leadership__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ms-leadership {
    padding: 3rem 1rem;
  }

  .ms-leadership__title {
    font-size: 1.7rem;
  }

  .ms-leadership__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Wrapper */
.ms-timeline {
  padding: 4rem 1.5rem;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

/* Soft gradient accent */
.ms-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(37, 99, 235, 0.12), transparent 55%);
  pointer-events: none;
}

.ms-timeline__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.ms-timeline__header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.ms-timeline__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.ms-timeline__title {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.ms-timeline__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Timeline track */
.ms-timeline__track {
  position: relative;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

/* Central vertical line */
.ms-timeline__track::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.9), rgba(148, 163, 184, 0));
}

/* Timeline item */
.ms-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin-bottom: 2rem;
}

/* Alternate layout: odd on left, even on right */
.ms-timeline__item:nth-child(odd) .ms-timeline__year {
  grid-column: 1;
  justify-self: flex-end;
}
.ms-timeline__item:nth-child(odd) .ms-timeline__card {
  grid-column: 2;
}

.ms-timeline__item:nth-child(even) .ms-timeline__year {
  grid-column: 2;
  justify-self: flex-start;
}
.ms-timeline__item:nth-child(even) .ms-timeline__card {
  grid-column: 1;
}

/* Year marker */
.ms-timeline__year {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4b5563;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid rgba(156, 163, 175, 0.4);
}

/* Dot on center line */
.ms-timeline__year::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  transform: translateY(-50%);
}

.ms-timeline__item:nth-child(odd) .ms-timeline__year::after {
  right: -2.4rem;
}

.ms-timeline__item:nth-child(even) .ms-timeline__year::after {
  left: -2.4rem;
}

/* Card */
.ms-timeline__card {
  background: linear-gradient(135deg, var(--background), var(--warm-mid));
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  margin: 0 1.5rem;
  border: 1px solid rgba(105, 158, 239, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    background-color 150ms ease-out;
}

.ms-timeline__card:hover {
  background: white;
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.ms-timeline__card-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.ms-timeline__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Local fade-in animation */
.ms-timeline__item {
  opacity: 0;
  transform: translateY(12px);
  animation: ms-timeline-fade-in 0.7s ease-out forwards;
}

.ms-timeline__item:nth-child(1) {
  animation-delay: 0.05s;
}
.ms-timeline__item:nth-child(2) {
  animation-delay: 0.12s;
}
.ms-timeline__item:nth-child(3) {
  animation-delay: 0.19s;
}
.ms-timeline__item:nth-child(4) {
  animation-delay: 0.26s;
}
.ms-timeline__item:nth-child(5) {
  animation-delay: 0.33s;
}
.ms-timeline__item:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes ms-timeline-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ms-timeline {
    padding: 3rem 1.25rem;
  }

  .ms-timeline__track::before {
    left: 0.6rem;
    transform: none;
  }

  .ms-timeline__item {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 1.8rem;
  }

  .ms-timeline__year {
    grid-column: 1 !important;
    justify-self: flex-start !important;
    margin-left: 1.5rem;
  }

  .ms-timeline__year::after {
    left: -1.8rem;
    right: auto;
  }

  .ms-timeline__card {
    margin: 0.8rem 0 0 1.5rem;
  }
}

@media (max-width: 600px) {
  .ms-timeline {
    padding: 2.5rem 1rem;
  }

  .ms-timeline__title {
    font-size: 1.6rem;
  }

  .ms-timeline__year {
    margin-left: 1.25rem;
  }

  .ms-timeline__card {
    margin-left: 1.25rem;
  }

  .ms-timeline__track::before {
    left: 0.5rem;
  }
}

/* Wrapper */
.ms-certifications {
  padding: 4rem 1.5rem 4.5rem;
  background: linear-gradient(135deg, var(--background), var(--warm-mid))
  /* position: relative;
  overflow: hidden; */
}

/* Subtle top accent */
.ms-certifications::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(37, 99, 235, 0.07),
    transparent 40%
  );
  pointer-events: none;
}

.ms-certifications__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.ms-certifications__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.ms-certifications__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

.ms-certifications__title {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #101828;
}

.ms-certifications__subtitle {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #667085;
}

/* Grid */
.ms-certifications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

/* Card */
.ms-certifications__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(208, 213, 221, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    background-color 150ms ease-out;
}

.ms-certifications__card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
  background-color: #f9fbff;
}

/* Icon */
.ms-certifications__icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, #eff6ff, #dbeafe);
  margin-bottom: 0.15rem;
}

.ms-certifications__icon span {
  font-size: 1.4rem;
}

/* Text */
.ms-certifications__card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.ms-certifications__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Local entrance animation */
.ms-certifications__card {
  opacity: 0;
  transform: translateY(10px);
  animation: ms-certifications-fade-in 0.7s ease-out forwards;
}

.ms-certifications__card:nth-child(1) {
  animation-delay: 0.05s;
}
.ms-certifications__card:nth-child(2) {
  animation-delay: 0.12s;
}
.ms-certifications__card:nth-child(3) {
  animation-delay: 0.19s;
}
.ms-certifications__card:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes ms-certifications-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .ms-certifications {
    padding: 3.5rem 1.25rem 4rem;
  }

  .ms-certifications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ms-certifications {
    padding: 3rem 1rem 3.5rem;
  }

  .ms-certifications__title {
    font-size: 1.6rem;
  }

  .ms-certifications__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



.property-hero {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    color: #000000;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    align-items: center;
        flex-direction: column;
    align-items: center;
}

.property-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.property-title {
  display: block;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
}

.property-title span {
    display: block;
    font-size: 22px;
    font-weight: 400;
    opacity: 0.85;
    text-align: center;
}

.property-highlights {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.property-price {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.property-price span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #ffb703;
    color: #000;
}

.btn.primary:hover {
    background: #ffa200;
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.1);
}


/* =========================
   Property Gallery
   ========================= */

.property-gallery {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
}

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

/* Featured Image */

.gallery-feature {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gallery-feature img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-feature:hover img {
    transform: scale(1.03);
}

/* Thumbnail Navigation */

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumbnail {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.thumbnail:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnail.active img {
    opacity: 1;
    outline: 3px solid #2563eb;
    outline-offset: -3px;
}


/* =========================
   Property Overview
   ========================= */

.property-overview {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

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

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Header */

.overview-header h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.overview-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Specs Card */

.specs-card {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    padding: 2rem;
    border-radius: 16px;
}

.spec-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.spec-item strong {
    font-size: 1rem;
    color: #111827;
}

/* Content Sections */

.overview-section {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    padding: 60px 40px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
}

.overview-section h3 {
    font-size: 28px;
    margin-bottom: 35px;
    letter-spacing: 1px;
    color: #ffd27d; /* strategic contrast against body text */
    text-transform: uppercase;
}

/* Amenities Grid */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.amenities-list span {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 16px;
    color: #332424; /* different from body copy */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
/* Location */

.amenities-list span:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.location-points {
    padding-left: 1.2rem;
}

.location-points li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Sidebar Placeholder */

.overview-sidebar {
    background: #ffffff;
    border-radius: 16px;
    min-height: 300px;
}

/* Responsive */

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


/* =========================
   EMI / Finance Widget
   ========================= */

.finance-widget {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */

.finance-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.finance-header p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Body */

.finance-body {
    margin-top: 2rem;
}

/* Inputs */

.finance-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.input-block label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    color: #6b7280;
}

.input-block input {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

/* Action */

.finance-action {
    margin-top: 2rem;
    text-align: center;
}

.finance-btn {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Results */

.finance-result {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
    display: none;
}

.result-card {
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
}

.result-card span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.result-card strong {
    font-size: 1.2rem;
    color: #111827;
}

.result-card.highlight {
    background: #eef2ff;
}

.result-card.highlight strong {
    font-size: 1.6rem;
    color: #2563eb;
}

/* Responsive */

@media (max-width: 600px) {
    .finance-widget {
        padding: 2rem 1.5rem;
    }
}


/* =========================
   Lead Capture / Enquiry
   ========================= */

.lead-capture {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 3rem 1.5rem;
}

.lead-card {
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    padding: 2.5rem;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Header */

.lead-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.lead-header p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Form */

.lead-form {
    margin-top: 2rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Action */

.lead-action {
    margin-top: 1.75rem;
    text-align: center;
}

.lead-btn {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.privacy-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 480px) {
    .lead-card {
        padding: 2rem 1.75rem;
    }
}


/* =========================
   Related Listings
   ========================= */

.related-listings {
    padding: 5rem 1.5rem;
    background-color: #f9fafb;
}

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

/* Header */

.listings-header {
    margin-bottom: 2.5rem;
}

.listings-header h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.listings-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Grid */

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Card */

.listing-card {
    background: linear-gradient(135deg, var(--background), var(--warm-mid));
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Media */

.listing-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Body */

.listing-body {
    padding: 1.5rem;
}

.listing-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.listing-location {
    font-size: 0.85rem;
    color: #4884fe;
    margin-bottom: 0.75rem;
}

/* Metrics */

.listing-metrics {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.listing-metrics span {
    background: #000000;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

/* Footer */

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-price {
    font-size: 1.1rem;
    color: #111827;
}

.listing-cta {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    transition:  0.2s ease;
}

.listing-cta:hover {
    background: #1e40af;
}

/* Responsive */

@media (max-width: 600px) {
    .listings-header h2 {
        font-size: 1.7rem;
    }
}
