:root {
    --aare-primary: #f5f5f7;
    --aare-overlay: rgba(43, 47, 54, 0.45);
    /* #2B2F36 with 45% */
    --card-w: 325px;
    --off-white: #f5f5f7 !important;
    --brand-navy: #122e5b;
    --brand-muted: #4a5565;
    --white: #ffffff;
    --badge-bg: #f5f5f7;
    --card-border: rgba(12, 37, 75, 0.06);
    --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    --card-border-color: rgba(12, 37, 75, 0.12);
}

html,
body {
    overflow-x: hidden;
}
body {
    background-color: #ffffff;
    color: var(--white);
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}

.text-off-white {
    color: var(--off-white) !important;
}
/* NAVBAR */
/* #mainNavbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
        color 0.3s ease;
    background-color: #ffffff;
}

#mainNavbar .nav-link,
#mainNavbar .navbar-brand {
    color: var(--brand-navy);
    font-weight: 400;
}

#mainNavbar .nav-link:hover {
    opacity: 0.8;
}
.aare-navbar-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--brand-navy);
    opacity: 0.95;
}

.aare-navbar-link i {
    font-size: 14px;
}
#mainNavbar.navbar-scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
} */

.off-white-section {
    background-color: var(--off-white);
}

/* ===== AARE Navbar behavior ===== */
.aare-navbar {
    background: transparent;
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.aare-navbar .nav-link,
.aare-navbar .navbar-brand {
    color: var(--off-white);
    transition: color 0.25s ease;
}

.aare-navbar .navbar-toggler {
    padding: 0;
    color: var(--off-white);
    font-size: 28px;
    line-height: 1;
}

.aare-navbar .nav-link:hover {
    opacity: 0.85;
}

.aare-icon-btn:hover {
    transform: translateY(-1px);
}

/* Contact button (white pill) */
.aare-nav-btn {
    border: 0;
    border-radius: 12px;
    padding: 7px 14px;
    background: var(--white);
    color: var(--brand-navy);
    font-size: 13px;
    font-weight: 400;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.aare-nav-btn:hover {
    transform: translateY(-1px);
}

/* Contact button (white pill) */
.aare-nav-btn-icon {
    border: 0;
    border-radius: 12px;
    padding: 5px 12px;
    background: var(--white);
    color: var(--brand-navy);
    font-size: 16px;
    font-weight: 300;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.aare-nav-btn-icon:hover {
    transform: translateY(-1px);
}

/* ===== Scrolled state ===== */
#mainNavbar.navbar-scrolled {
    background: var(--white);
    /* box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12); */
}

#mainNavbar.navbar-scrolled .nav-link,
#mainNavbar.navbar-scrolled .navbar-brand {
    color: var(--brand-navy);
}

#mainNavbar.navbar-scrolled .navbar-toggler {
    color: var(--brand-navy);
}

/* icons turn navy circles with white icon */
#mainNavbar.navbar-scrolled .aare-icon-btn {
    background: var(--brand-navy);
    color: #fff;
    border-color: rgba(12, 37, 75, 0.2);
}

/* contact button turns navy */
#mainNavbar.navbar-scrolled .aare-nav-btn {
    background: var(--brand-navy);
    color: #fff;
}
#mainNavbar.navbar-scrolled .aare-nav-btn-icon {
    background: var(--brand-navy);
    color: #fff;
}

/* WhatsApp icon button in navbar */
.aare-icon-btn-nav {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff; /* default state on home (transparent bg) */
    background: rgba(255, 255, 255, 0.14);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.aare-icon-btn-nav i {
    font-size: 18px;
    line-height: 1;
}

.aare-icon-btn-nav:hover {
    transform: translateY(-1px);
}

/* scrolled / inner: turn navy filled */
#mainNavbar.navbar-scrolled .aare-icon-btn-nav {
    background: var(--brand-navy);
    color: #fff;
    border-color: rgba(12, 37, 75, 0.2);
}

.aare-lang-icon {
    height: 30px;
    width: auto;
    display: block;
}

/* ===== Offcanvas sheet ===== */
.aare-contact-sheet {
    width: 380px;
    border-left: 1px solid rgba(17, 24, 39, 0.08);
}

.aare-sheet-label {
    font-size: 12px;
    color: rgba(17, 24, 39, 0.75);
    margin-bottom: 8px;
    display: block;
}

.aare-sheet-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.aare-sheet-input:focus {
    border-color: rgba(18, 46, 91, 0.45);
    box-shadow: 0 0 0 4px rgba(18, 46, 91, 0.08);
}

.aare-sheet-textarea {
    resize: none;
}

.aare-sheet-submit {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 12px 14px;
    background: var(--brand-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.navbar .nav-link {
    font-size: 14px;
    font-weight: 400;
}

.aare-sheet-input.is-invalid {
    border-color: #dc3545 !important;
}
.aare-invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
}
.alert {
    font-size: 14px;
}
/* HERO */
/* .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--off-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/images/hero-aare.jpg");
    background-size: cover;
    background-position: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--aare-overlay);
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(2rem, 3vw + 1.2rem, 3.2rem);
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.2rem);
    max-width: 36rem;
    margin-left: auto;
} */

.hero-section {
    /* Replace with your actual image path */
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important; /* Optional: adds a parallax feel */
    width: 100%;
    height: 100vh; /* Full screen height */
    color: white;
}

.glass-card {
    background: transparent;
}

.badge-custom {
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;

    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    backdrop-filter: blur(20px); /* The "Glass" effect */
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.hero-title {
    /* font-family: "Serif", Georgia, serif;  */
    font-weight: 500;
    line-height: 1.4;
    font-size: calc(1.5rem + 1.5vw); /* Responsive font size */
}

.property-card h5 {
    font-weight: 400 !important;
}
/* 
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.info-section {
    background-color: var(--off-white); /* or #fff if you prefer */
    color: var(--brand-navy) !important;
}

.info-block {
    max-width: 540px;
    /* margin-right: auto;  */
    /* margin-left: 0; */
}

.info-title {
    font-size: clamp(1.25rem, 1.4vw + 1rem, 1.6rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    display: inline-block; /* underline just under the text */
}

/* Color and Typography */
.text-navy {
    color: var(--brand-navy); /* Adjust to match your specific brand navy */
}

.type-subtitle {
    color: var(--brand-muted);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
}

.featured-badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--brand-navy); /* blue dot */
    border: 5px solid var(--off-white); /* white ring */
    flex: 0 0 auto;
}

.featured-badge-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--brand-navy);
}

.property-card {
    height: 240px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-radius: 15px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    /* IMPORTANT: remove border so background/overlay never looks “cut” */
    border: 0;
    outline: 0;
}

/* ✅ Overlay that ALWAYS covers 100% of the card */
.property-card::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0) 75%
    );
    z-index: 0;
    pointer-events: none;
}

/* Content above overlay */
.card-content {
    position: relative;
    z-index: 1;
    padding: 20px 15px;
    background: transparent; /* IMPORTANT: remove the second gradient */
}

.property-card:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--card-shadow);
    border-color: var(--card-border-color);
}

.property-types {
    padding-bottom: 5rem;
    padding-top: 5rem;
}

/* ✅ Active border without breaking overlay */
/* .property-card.active {
    outline: 3px solid #3498db;
    outline-offset: -3px;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
} */

.card-content h5 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ===== Swiper container ===== */

/* .featured-swiper-start{
  overflow: visible;
  padding-inline-start: 16px; 
  padding-inline-end: 0;
}

@media (min-width: 576px){ .featured-swiper-start{ padding-inline-start: calc((100vw - 540px)/2 + 12px); } }
@media (min-width: 768px){ .featured-swiper-start{ padding-inline-start: calc((100vw - 720px)/2 + 12px); } }
@media (min-width: 992px){ .featured-swiper-start{ padding-inline-start: calc((100vw - 960px)/2 + 12px); } }
@media (min-width: 1200px){ .featured-swiper-start{ padding-inline-start: calc((100vw - 1140px)/2 + 12px); } }
@media (min-width: 1400px){ .featured-swiper-start{ padding-inline-start: calc((100vw - 1320px)/2 + 12px); } } */

.featured-listings {
    padding-top: 80px;
    padding-bottom: 40px;
}
.featuredSwiper {
    width: 100%;
    padding-bottom: 40px;
    background-color: var(--off-white);
    padding-right: 25px;
}

/* IMPORTANT: let slide height be based on content */
.featuredSwiper .swiper-slide {
    height: auto;
    width: var(--card-w) !important;
}

/* ===== Card is the fixed box (3:4) ===== */
.listing-card {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    /* THIS is the core fix: card defines size */
    aspect-ratio: 3 / 4;
    /* responsive min/max so it doesn't get too small/too huge */
    /* min-height: 360px;
  max-height: 640px; */
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

/* ===== Media fills the card ===== */
.listing-media {
    position: absolute;
    inset: 0; /* fill card */
    width: 100%;
    height: 100%;
    background: #2b2f36; /* placeholder */
}

/* If you later enable real images, this will work perfectly */
.listing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Badges ===== */
.listing-badges {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px; /* RTL-safe */
    display: flex;
    gap: 8px;
    z-index: 3;
}

.listing-badge {
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    line-height: 1;
}

.listing-badge-featured {
    background: #ff9f1a;
    color: #111;
}

.listing-badge-status {
    background: var(--brand-navy);
}

/* ===== Overlay ===== */
.listing-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--off-white);

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

.listing-price {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.listing-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.25;
}

.listing-location {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 10px;
}

.listing-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===== Controls / pagination (keep if you want) ===== */
.featured-controls {
    user-select: none;
}

.featured-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.featured-nav-btn span {
    font-size: 22px;
    transform: translateY(-1px);
}

.featured-pagination {
    width: auto !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    opacity: 0.35;
    margin: 0 !important;
}

.featured-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.text-blue {
    color: #122e5b;
}

.about-section {
    background: var(--off-white);
    color: var(--brand-navy);
}

.about-wrap {
    /* max-width: 980px; */
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--badge-bg);
}

.about-badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--brand-navy); /* blue dot */
    border: 5px solid var(--white); /* white ring */
    flex: 0 0 auto;
}

.about-badge-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--brand-navy);
}

.about-title {
    font-size: clamp(1.4rem, 1.2vw + 1.1rem, 2.2rem);
    line-height: 1.5;
    margin: 0 auto;
    font-weight: 300;
}

.about-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--brand-navy);
    font-size: 1rem;
    line-height: 1.9;
}

.about-image-wrap {
    max-width: 980px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 32px; /* core requirement */
    display: block;
    object-fit: cover;
}

.info-subtitle {
    font-size: 0.98rem;
    /* line-height: 1.7; */
    color: var(--brand-navy);
}

/* ===== What We Do ===== */
.aare-what-we-do {
    background: var(--white);
}

.aare-service-card {
    border-radius: 16px;
    background: var(--white);
    padding: 22px 18px;
    border: 1px solid var(--card-border);

    /* very light shadow by default */
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
    will-change: transform;
}

.aare-service-card:hover,
.aare-service-card:focus-within {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    border-color: rgba(12, 37, 75, 0.12);
}

.aare-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;

    background: #eef9ff;
    color: #122e5b;
}

.aare-service-icon i {
    font-size: 20px;
    line-height: 1;
}

.aare-service-title {
    color: var(--brand-navy);
    font-weight: 400;
    font-size: 16px;
}

.aare-service-text {
    color: #6a7282;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== Vision / Mission / Values ===== */
.aare-vmv {
    background: #ffffff;
}

.aare-vmv-title {
    color: var(--brand-navy);
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3vw, 40px);
}

/* Optional: slightly more vertical breathing room like screenshot */
.aare-vmv-card {
    padding: 26px 20px; /* a bit roomier than services */
}

.aare-vmv-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #eef9ff;
    color: #122e5b;
}

.aare-vmv-values {
    padding-inline-start: 18px; /* RTL-safe */
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
    color: #6a7282;
    font-size: 13px;
}

.aare-vmv-values li {
    line-height: 1.7;
}

/* ===== Blog Preview ===== */
.aare-blog {
    background: #fff;
}

.aare-blog-title {
    color: var(--brand-navy);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
}

.aare-blog-subtitle {
    color: rgba(17, 24, 39, 0.62);
    max-width: 760px;
    font-size: 13px;
    line-height: 1.7;
}

/* View all */
.aare-blog-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-navy);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 160ms ease,
        opacity 160ms ease;
}

.aare-blog-viewall:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

/* Card (same idea: light shadow, hover zoom + stronger shadow) */
.aare-blog-card {
    color: inherit;
}

.aare-blog-image {
    border-radius: 16px;
    overflow: hidden;
    background: #f3f5f7;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
    will-change: transform;
}

.aare-blog-image img {
    width: 100%;
    height: 330px; /* screenshot-like */
    object-fit: cover;
    display: block;
}

/* Hover effect */
.aare-blog-card:hover .aare-blog-image,
.aare-blog-card:focus-visible .aare-blog-image {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.aare-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 24, 39, 0.55);
    font-size: 12px;
}

.aare-blog-sep {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.25);
}

.aare-blog-time i {
    font-size: 12px;
    margin-inline-end: 6px; /* RTL-safe */
    vertical-align: -1px;
}

.aare-blog-card-title {
    color: var(--brand-navy);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.35;
    max-width: 95%;
}

/* Pagination dots */
.aare-blog-dots {
    display: inline-flex;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: transparent;
}

.aare-blog-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(12, 37, 75, 0.14);
}

.aare-blog-dots .dot.active {
    background: var(--brand-navy);
}

.stats-section {
    background-color: #122e5b; /* or #fff, as you prefer */
    color: #f7f7f5;
}

.stat-box {
    padding-inline: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 2.4vw + 1rem, 2.8rem);
    font-weight: 400;
    color: #f7f7f5;
    /* line-height: 1.1; */
}

.stat-label {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #f7f7f5;
}

.ceo-section {
    background-color: var(--white);
    color: #122e5b;
    overflow-x: hidden; /* <–– prevents horizontal scroll from animations */
}

.ceo-photo-wrapper {
    max-width: 90%;
}

.ceo-photo {
    border-radius: 20px;
    display: block;
    width: 75%;
    height: auto;
    margin: auto;
}

.ceo-text {
    max-width: 520px;
}

.ceo-title {
    font-size: clamp(1.4rem, 1.6vw + 1rem, 1.9rem);
    font-weight: 400;
    padding-bottom: 0.35rem;
    display: inline-block;
}

.ceo-subtitle {
    font-size: 0.95rem;
    color: #3f4a5c;
    font-weight: 300;
    line-height: 1.5;
    text-align: start; /* ensure text-start on all screens in RTL */
}

.site-footer {
    background-color: #122e5b;
    color: #f7f7f5;
    font-size: 0.9rem;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 600;
}

.footer-description {
    max-width: 360px;
    line-height: 1.8;
}

.footer-social-link {
    color: #f7f7f5;
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-social-link:hover {
    opacity: 1;
}

.footer-info-block {
    line-height: 1.6;
}

.footer-info-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-info-text {
    color: #e4ebf5;
}

.footer-link {
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-nav {
    margin-top: 0.5rem;
}

.footer-nav-link {
    color: #e4ebf5;
    margin-inline: 0.4rem;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-nav-link:hover {
    text-decoration: underline;
}

.highlight-section {
    position: relative;
    height: 700px; /* adjust if you want it taller */
    overflow: hidden;
}

.highlight-bg {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/highlight-banner.png"); /* your image */
    background-size: cover;
    background-position: center;
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 47, 54, 0.45); /* same overlay as hero if you like */
    z-index: 1;
}

.highlight-section .container,
.highlight-section .row,
.highlight-section .col-12 {
    position: relative;
    z-index: 2; /* above overlay */
}

.highlight-title {
    color: #f7f7f5;
    font-size: clamp(1.6rem, 2vw + 1.2rem, 2.2rem);
    font-weight: 600;
}

.highlight-subtitle {
    color: #f7f7f5;
    font-size: 0.98rem;
    line-height: 1.8;
}

/* Hero CTA button */
.hero-cta-btn {
    border-radius: 999px;
    padding: 0.55rem 1.8rem;
    border: 1.5px solid #f7f7f5;
    background-color: transparent;
    color: #f7f7f5;
    font-weight: 500;
    font-size: 0.95rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus {
    background-color: #f7f7f5;
    color: #122e5b; /* as requested */
    transform: translateY(-1px);
}

/* Interest modal */
.interest-modal .modal-dialog {
    max-width: 520px;
    margin-inline: auto;
}

.interest-modal .modal-content {
    border-radius: 18px;
    border: none;
    padding: 1.5rem 1.75rem 1.75rem;
    background-color: #f7f7f5;
}

.interest-modal .modal-title {
    font-weight: 600;
    color: #122e5b;
}

.interest-modal .btn-close {
    box-shadow: none;
}

.interest-modal .modal-intro {
    font-size: 0.9rem;
    color: #4a5260;
}

/* Form controls */
.interest-modal .form-control {
    border-radius: 999px;
    border: 1px solid #d1d5dd;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
}

.interest-modal .form-control:focus {
    box-shadow: 0 0 0 0.16rem rgba(18, 46, 91, 0.15);
    border-color: #122e5b;
}

/* Interest pill checkboxes */
.interest-pill {
    position: relative;
    padding: 0;
    margin: 0;
}

.interest-pill .form-check-input {
    display: none;
}

.interest-pill .form-check-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #d1d5dd;
    font-size: 0.85rem;
    color: #122e5b;
    cursor: pointer;
    background-color: #ffffff;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

/* Checked state */
.interest-pill .form-check-input:checked + .form-check-label {
    background-color: #122e5b;
    color: #f7f7f5;
    border-color: #122e5b;
}

.interest-submit-btn {
    border-radius: 999px;
    padding: 0.55rem 1.8rem;
    border: 1.5px solid #122e5b;
    background-color: transparent;
    color: #122e5b;
    font-weight: 500;
    font-size: 0.95rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.interest-submit-btn:hover,
.interest-submit-btn:focus {
    background-color: #122e5b;
    color: #f5f5f7;
    transform: translateY(-1px);
}

.success-modal .modal-content {
    border-radius: 18px;
    border: none;
    padding: 1.5rem 1.75rem 1.75rem;
}

.success-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-modal-icon i {
    font-size: 2rem;
    color: #0c8a3f;
}

.success-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #122e5b;
}

.success-modal-text {
    font-size: 0.95rem;
    color: #4a5260;
}

/* Button */
.success-modal-btn {
    border-radius: 999px;
    padding: 0.5rem 1.8rem;
    border: 1.5px solid #122e5b;
    background-color: #122e5b;
    color: #f5f5f7;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 120px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.success-modal-btn:hover,
.success-modal-btn:focus {
    background-color: #f5f5f7;
    color: #122e5b;
    transform: translateY(-1px);
}

/* ===== Contact Section ===== */
.aare-contact {
    background: #ffffff;
}

/* Title */
.aare-contact-title {
    color: var(--brand-navy);
    font-weight: 400;
    letter-spacing: -0.02em;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.1;
}

.aare-contact-subtitle {
    color: rgba(17, 24, 39, 0.6);
    font-size: 13px;
}

/* Outer big card */
.aare-contact-wrap {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    overflow: hidden;

    /* visually similar spacing from screenshot */
    padding: 22px;
}

/* Left navy card */
.aare-contact-left {
    height: 100%;
    background: var(--brand-navy);
    border-radius: 12px;
    padding: 34px 28px;
    color: #f7f7f5;
}

.aare-contact-left-title {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 6px;
}

.aare-contact-left-sub {
    color: rgba(247, 247, 245, 0.75);
    font-size: 12px;
}

/* Left items */
.aare-contact-left-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aare-contact-item {
    /* display: grid; */
    /* grid-template-columns: 26px 1fr; */
    align-items: start;
    /* gap: 14px; */
    color: var(--off-white);
    font-size: 12.5px;
    line-height: 1.6;
}

.aare-contact-ico {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #f7f7f5;
    opacity: 0.95;
}

.aare-contact-ico i {
    font-size: 14px;
}

/* Right form area */
.aare-contact-right {
    padding: 22px 26px;
}

/* Labels + underline inputs like screenshot */
.aare-f-label {
    font-size: 11px;
    color: rgba(17, 24, 39, 0.75);
    margin-bottom: 7px;
    display: block;
}

.aare-f-input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.14);
    padding-bottom: 10px;
    outline: none;
    font-size: 12.5px;
    color: rgba(17, 24, 39, 0.88);
    background: transparent;
    transition: border-color 150ms ease;
}

.aare-f-input:focus {
    border-bottom-color: rgba(12, 37, 75, 0.55);
}

.aare-f-textarea {
    resize: none;
    padding-top: 6px;
}

/* Inquiry radios (small dots, inline) */
.aare-radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.aare-radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    color: rgba(17, 24, 39, 0.7);
}

.aare-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.aare-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1.5px solid rgba(17, 24, 39, 0.35);
    display: inline-block;
    position: relative;
}

.aare-radio input:checked + .aare-radio-dot {
    border-color: rgba(12, 37, 75, 0.95);
}

.aare-radio input:checked + .aare-radio-dot::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--brand-navy);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Button (navy, small, right aligned) */
.aare-contact-btn {
    background: var(--brand-navy);
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(12, 37, 75, 0.18);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        opacity 160ms ease;
}

.aare-contact-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(12, 37, 75, 0.22);
}

/* =========================
   AARE Elegant Footer
   ========================= */
.aare-footer {
    background: var(--brand-navy);
    color: rgba(247, 247, 245, 0.92);
    padding: 56px 0 30px;
}

/* Top area */
.aare-footer-top {
    padding-bottom: 24px;
}

/* Logo + tagline */
.aare-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.aare-footer-logo {
    height: 46px;
    width: auto;
    display: block;
}

.aare-footer-desc {
    color: rgba(247, 247, 245, 0.92);
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
    max-width: 520px;
}

/* Mini blocks under description */
.aare-footer-mini-title {
    font-size: 11px;
    color: rgba(247, 247, 245, 0.6);
    margin-bottom: 10px;
}

.aare-footer-link {
    color: rgba(247, 247, 245, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 12px;
}

.aare-footer-link:hover {
    color: rgba(247, 247, 245, 1);
}

/* Legal images */
.aare-footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.aare-footer-legal img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
}

/* Right columns */
.aare-footer-col-title {
    font-size: 11px;
    color: rgba(247, 247, 245, 0.65);
    margin-bottom: 14px;
}

/* Links list */
.aare-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.aare-footer-list a {
    color: rgba(247, 247, 245, 0.9);
    text-decoration: none;
    font-size: 12px;
}

.aare-footer-list a:hover {
    color: rgba(247, 247, 245, 1);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.aare-footer-social {
    display: grid;
    grid-template-columns: repeat(3, 32px); /* 3 per row */
    gap: 12px 14px; /* row gap / column gap */
    align-items: center;
    justify-content: start; /* RTL-safe: "start" */
}

.aare-footer-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #f7f7f5;
    text-decoration: none;
    opacity: 0.95;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.aare-footer-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.aare-footer-social i {
    font-size: 16px;
    line-height: 1;
}

/* Divider line */
.aare-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 24px 0 18px;
}

/* Bottom bar */
.aare-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: rgba(247, 247, 245, 0.7);
}

.aare-footer-bottom-left {
    justify-self: start;
}

.aare-footer-bottom-mid {
    justify-self: center;
}

.aare-footer-bottom-right {
    justify-self: end;
}

.aare-footer-bottom-link {
    color: rgba(247, 247, 245, 0.75);
    text-decoration: none;
}

.aare-footer-bottom-link:hover {
    color: rgba(247, 247, 245, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Back to top */
.aare-footer-backtotop {
    color: rgba(247, 247, 245, 0.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.aare-footer-backtotop:hover {
    color: rgba(247, 247, 245, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== For Buyers & Tenants ===== */
.aare-benefits {
    background: #fff;
}

.aare-benefits-title {
    color: var(--brand-navy);
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.5;
}

/* Image with blue outline like screenshot */
.aare-benefits-image {
    border-radius: 22px;
    /* border: 3px solid #2D8CFF;  */
    overflow: hidden;
    max-width: 520px;
}

.aare-benefits-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.aare-benefits-desc {
    color: rgba(17, 24, 39, 0.62);
    font-size: 13px;
    line-height: 1.75;
    max-width: 620px;
}

/* List container (keeps items aligned) */
.aare-benefits-list {
    margin-top: 6px;
    max-width: 620px;
}

/* Row */
.aare-benefit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;

    /* default rows are "flat" with subtle divider */
    background: transparent;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.aare-benefit-row:last-child {
    border-bottom: 0;
}

.aare-benefit-text {
    color: rgba(17, 24, 39, 0.78);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

/* Active row looks like a card with shadow (first item in screenshot) */
.aare-benefit-row:hover {
    background: #ffffff;
    border-bottom: 0;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
    margin-bottom: 10px;
}

/* Icon container */
.aare-benefit-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}

.aare-benefit-ico i {
    font-size: 18px;
    line-height: 1;
}

/* Icon background colors + icon colors (match screenshot vibe) */
.aare-benefit-ico.bg-blue {
    background: rgba(45, 140, 255, 0.12);
    color: #2d8cff;
}
.aare-benefit-ico.bg-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}
.aare-benefit-ico.bg-orange {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}
.aare-benefit-ico.bg-purple {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}
.aare-benefit-ico.bg-pink {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
}

.aare-wa-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
    filter: brightness(1.03);
}

.aare-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Alexandria", sans-serif;
    font-size: 12px; /* matches the screenshot scale */
    line-height: 1.2;
    padding: 18px 0; /* gives the airy spacing */
    width: 100%;
    background: white;
    margin-top: 100px;
}

.aare-breadcrumb-link {
    color: #9aa3b2; /* light grey like “Home” */
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.15s ease;
}
.aare-breadcrumb-link:hover {
    opacity: 0.85;
}

.aare-breadcrumb-sep {
    color: var(--brand-muted); /* same light grey slash */
    font-weight: 400;
}

.aare-breadcrumb-current {
    color: var(--brand-navy); /* your brand navy */
    font-weight: 500; /* slightly stronger but not bold */
}

.aare-work {
    background: #ffffff;
}

.aare-work-wrap {
    padding-block: 10px;
}

.aare-work-row {
    margin-bottom: 60px;
}
.aare-work-row:last-child {
    margin-bottom: 0;
}

.aare-work-img {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}
.aare-work-img img {
    width: 100%;
    height: auto;
    display: block;
}

.aare-work-card {
    background: inherit;
    padding: 22px;
    max-width: 420px;
}

.aare-work-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.aare-work-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;

    background: #eef9ff;
    color: #122e5b;
}
.aare-work-ico i {
    font-size: 20px;
    line-height: 1;
}

.aare-work-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: #122e5b;
}

.aare-work-list {
    padding: 0;
    margin: 0 0 16px;
    list-style: none;
    color: var(--brand-muted);
    font-size: 0.92rem;
}
.aare-work-list li {
    position: relative;
    padding-inline-start: 16px; /* RTL-safe */
    margin-bottom: 8px;
    color: var(--brand-muted);
    font-weight: 400;
}
.aare-work-list li:last-child {
    margin-bottom: 0;
}
.aare-work-list li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0; /* RTL-safe */
    top: 0;
    color: rgba(18, 46, 91, 0.7);
}

.aare-work-btn {
    background: #122e5b;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 0.92rem;
}
.aare-work-btn:hover {
    background: var(--brand-navy);
    color: #fff;
}

/* card alignment (RTL-safe) */
.aare-work-card--right {
    margin-inline-start: auto;
}
.aare-work-card--left {
    margin-inline-end: auto;
}

.aare-testimonials {
    background: #fff;
}

.aare-test-h2 {
    color: var(--brand-navy, #122e5b);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.aare-test-sub {
    color: var(--brand-muted, #4a5565);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 620px;
}

.aare-test-divider {
    height: 1px;
    background: #e5e7eb7a;
    margin-top: 18px;
}

.aare-test-left {
    padding-top: 6px;
}

.aare-test-quote {
    font-size: 56px;
    line-height: 1;
    color: var(--brand-navy, #122e5b);
    opacity: 0.9;
    margin-bottom: 14px;
}

.aare-test-title {
    color: var(--brand-navy, #122e5b);
    font-weight: 400;
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.aare-test-text {
    color: var(--brand-muted, #4a5565);
    font-size: 0.92rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 420px;
}

.aare-test-author {
    color: var(--brand-navy, #122e5b);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Right image */
.aare-test-image {
    border-radius: 14px;
    overflow: hidden;
}
.aare-test-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Pagination dots EXACT vibe */
.aare-test-pagination {
    text-align: start; /* RTL-safe: start = right in RTL */
}
.aare-test-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 6px 0 0 !important;
    opacity: 0.25;
}
.aare-test-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.05);
}

/* Swiper should not add weird height jumps */
.testimonialsSwiper .swiper-slide {
    height: auto;
}

.aare-property-show {
    background: #fff;
}

/* Title row */
.aare-prop-title {
    color: #122e5b;
    font-weight: 600;
    font-size: 2rem;
    margin: 0;
}

.aare-prop-meta {
    color: var(--brand-muted);
    font-size: 0.92rem;
}
.aare-prop-loc i {
    margin-inline-end: 6px;
}
.aare-prop-sep {
    opacity: 0.4;
}

.aare-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
}
.aare-pill-featured {
    background: #ff8a00;
    color: #fff;
}

.aare-prop-actions .aare-icon-action {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(18, 46, 91, 0.12);
    background: #fff;
    color: #122e5b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.aare-prop-actions .aare-icon-action:hover {
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.aare-prop-pricebox {
    min-width: 120px;
}
.aare-prop-price {
    color: #122e5b;
    font-weight: 700;
    font-size: 1.3rem;
}
.aare-prop-pp {
    color: var(--brand-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* =========================
   Property Gallery (Show) - FIXED GRID
   ========================= */
.aare-property-show .aare-prop-gal {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;

    /* this guarantees all 5 images align perfectly */
    height: clamp(320px, 36vw, 520px);
}

.aare-property-show .aare-prop-gal__item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f7;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.aare-property-show .aare-prop-gal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* positions */
.aare-property-show .aare-prop-gal__main {
    grid-column: 1 / span 8;
    grid-row: 1 / span 2;
}

.aare-property-show .aare-prop-gal__t1 {
    grid-column: 9 / span 2;
    grid-row: 1;
}
.aare-property-show .aare-prop-gal__t2 {
    grid-column: 11 / span 2;
    grid-row: 1;
}
.aare-property-show .aare-prop-gal__t3 {
    grid-column: 9 / span 2;
    grid-row: 2;
}
.aare-property-show .aare-prop-gal__t4 {
    grid-column: 11 / span 2;
    grid-row: 2;
}

/* show all overlay */
.aare-property-show .aare-prop-gal__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(2px);
}
.aare-property-show .aare-prop-gal__overlay-sub {
    font-weight: 600;
    opacity: 0.9;
}

/* =========================
   Modal gallery (no borders)
   ========================= */
.aare-prop-gal-modal .aare-prop-gal-modal__content {
    background: transparent;
    border: 0;
}
.aare-prop-gal-modal .aare-prop-gal-modal__body {
    position: relative;
    padding: 0;
}
.aare-prop-gal-modal .aare-prop-gal-modal__close {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    z-index: 5;
}
.aare-prop-gal-modal .aare-prop-gal-modal__img {
    width: 100%;
    height: min(78vh, 760px);
    object-fit: contain;
    background: transparent;
}

/* Cards */
.aare-card {
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: inherit;
    padding: 18px;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
    will-change: transform;
}
.aare-card-title {
    color: #122e5b;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

/* Overview row */
.aare-overview {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.aare-overview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}
.aare-overview-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(18, 46, 91, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #122e5b;
    background: #fff;
}
.aare-overview-label {
    color: #122e5b;
    font-size: 0.92rem;
}
.aare-overview-val {
    color: var(--brand-muted);
    font-weight: 400;
    font-size: 0.95rem;
}

/* Description */
.aare-desc {
    color: var(--brand-muted);
    line-height: 1.9;
    font-size: 0.92rem;
}

/* Form */
.aare-form-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(18, 46, 91, 0.12);
    padding: 11px 12px;
    font-size: 0.9rem;
    outline: none;
    background: #fff;
}
.aare-form-input:focus {
    border-color: rgba(18, 46, 91, 0.45);
    box-shadow: 0 0 0 4px rgba(18, 46, 91, 0.08);
}
.aare-form-textarea {
    resize: none;
}

.aare-date-ico {
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(18, 46, 91, 0.65);
    pointer-events: none;
}

.aare-btn-navy {
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    background: #122e5b;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}
.aare-btn-navy:hover {
    background: var(--brand-navy);
}

/* Property details (KV grid) */
.aare-property-show .aare-prop-kv__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 18px;
}

.aare-property-show .aare-prop-kv__item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: baseline;
}

.aare-property-show .aare-prop-kv__label {
    color: #122e5b;
    font-weight: 400;
    font-size: 0.92rem;
}

.aare-property-show .aare-prop-kv__value {
    color: var(--brand-muted);
    font-size: 0.92rem;
    text-align: start;
}

/* Floor Plans */
.aare-property-show .aare-floorplans {
    --aareFpBorder: rgba(18, 46, 91, 0.1);
}

/* each accordion item looks like a card */
.aare-property-show .aare-floorplans__item {
    border: 1px solid var(--aareFpBorder);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.aare-property-show .aare-floorplans__item + .aare-floorplans__item {
    margin-top: 14px;
}

/* button/header */
.aare-property-show .aare-floorplans__btn {
    background: #fff;
    color: #122e5b;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 14px 16px;
    box-shadow: none !important;
    border: 0;
}

.aare-property-show .aare-floorplans__btn:not(.collapsed) {
    background: #fff;
}

/* keep Bootstrap arrow but make it subtle */
.aare-property-show .aare-floorplans__btn::after {
    opacity: 0.65;
}

/* body */
.aare-property-show .aare-floorplans__body {
    padding: 14px 16px 16px;
}

/* image */
.aare-property-show .aare-floorplans__imgwrap {
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f7;
}
.aare-property-show .aare-floorplans__img {
    width: 100%;
    height: clamp(180px, 22vw, 260px);
    object-fit: cover;
    display: block;
}

/* features row */
.aare-property-show .aare-floorplans__features {
    margin-top: 12px;
    padding-top: 12px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.aare-property-show .aare-floorplans__feat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-muted);
    font-size: 0.86rem;
    white-space: nowrap;
}
.aare-property-show .aare-floorplans__feat i {
    color: #122e5b;
}

/* Map section */
.aare-property-show .aare-prop-map {
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f7;
    border: 1px solid rgba(18, 46, 91, 0.08);
}

.aare-property-show .aare-prop-map__frame {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

/* Nearby Places */
.aare-property-show .aare-nearby {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.aare-property-show .aare-nearby__item {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: #fff;
    padding: 14px 14px 12px;
}

.aare-property-show .aare-nearby__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.aare-property-show .aare-nearby__left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.aare-property-show .aare-nearby__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #eef9ff;
    color: var(--brand-navy);
}

.aare-property-show .aare-nearby__titlewrap {
    min-width: 0;
}

.aare-property-show .aare-nearby__title {
    color: #122e5b;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* distance badge (point #2) */
.aare-property-show .aare-nearby__dist {
    border: 1px solid rgba(18, 46, 91, 0.12);
    color: var(--brand-muted);
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    flex: 0 0 auto;
}

/* chips row (point #1) */
.aare-property-show .aare-nearby__chips {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.aare-property-show .aare-nearby__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: #fff;
    color: var(--brand-muted);
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
}

.aare-nearby__icon i {
    font-size: 20px;
}
.aare-property-show .aare-nearby__chip i {
    color: #122e5b;
}

/* highlight fastest (point #4) */
.aare-property-show .aare-nearby__chip.is-fastest {
    border-color: var(--card-border);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    color: #122e5b;
}

.aare-property-show .aare-nearby__chip.is-fastest strong {
    color: #122e5b;
}

.aare-property-show .aare-nearby__min {
    opacity: 0.85;
}
.aare-lang-switch {
    text-decoration: none;
    border: 0;
    background: transparent;
    padding: 0;
    color: inherit;
    font-weight: 400;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.aare-lang-switch:hover {
    text-decoration: underline;
}

/* Amenities */
.aare-property-show .aare-amenities {
    list-style: disc;
    margin: 0;
    padding-inline-start: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 36px;
}

.aare-property-show .aare-amenities__item {
    color: #4a5565;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .aare-property-show .aare-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 28px;
    }
}

@media (max-width: 575.98px) {
    .aare-property-show .aare-amenities {
        grid-template-columns: 1fr;
    }
}

/* ===== Responsive Styles ===== */

@media (max-width: 992px) {
    .aare-test-h2 {
        font-size: 1.6rem;
    }
    .aare-test-text {
        max-width: 100%;
    }
    .aare-test-image {
        border-radius: 12px;
    }

    .aare-prop-title {
        font-size: 1.6rem;
    }
    .aare-work-card {
        max-width: 100%;
    }
    .aare-work-row {
        margin-bottom: 36px;
    }

    .aare-footer {
        padding: 44px 0 26px;
    }

    .aare-footer-desc {
        font-size: 18px;
    }

    .aare-footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aare-footer-bottom-left,
    .aare-footer-bottom-mid,
    .aare-footer-bottom-right {
        justify-self: center;
    }

    .aare-contact-wrap {
        padding: 7px;
    }
    .aare-blog-image img {
        height: 280px;
    }

    .aare-benefits-image {
        max-width: 100%;
    }
    .aare-benefits-image img {
        height: 320px;
    }

    .aare-contact-wrap {
        padding: 7px;
    }
    .aare-contact-right {
        padding: 18px 10px 6px;
    }

    .aare-property-show .aare-prop-gal {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        height: auto;
    }

    .aare-property-show .aare-prop-gal__item {
        height: auto;
    }

    .aare-property-show .aare-prop-gal__main {
        grid-column: 1 / -1;
        grid-row: 1;
        aspect-ratio: 16 / 10;
    }

    .aare-property-show .aare-prop-gal__t1 {
        grid-column: 1;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }
    .aare-property-show .aare-prop-gal__t2 {
        grid-column: 2;
        grid-row: 2;
        aspect-ratio: 1 / 1;
    }
    .aare-property-show .aare-prop-gal__t3 {
        grid-column: 1;
        grid-row: 3;
        aspect-ratio: 1 / 1;
    }
    .aare-property-show .aare-prop-gal__t4 {
        grid-column: 2;
        grid-row: 3;
        aspect-ratio: 1 / 1;
    }
    .aare-property-show .aare-nearby {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
/* @media (max-width: 576px) {
    .aare-breadcrumb {
        font-size: 20px;
        padding: 24px 0;
    }
} */

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-content p {
        margin-right: auto;
        margin-left: auto;
    }

    .info-block {
        max-width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .info-title {
        border-bottom-width: 2px;
    }

    .stat-box {
        text-align: center;
    }

    .ceo-photo-wrapper {
        max-width: 90%; /* smaller image on small screens */
        margin-bottom: 0.75rem;
    }

    .ceo-text {
        padding-inline: 1rem; /* give some side breathing room */
    }

    .footer-logo-block {
        text-align: center;
    }

    .footer-description {
        margin-inline: auto;
    }
    .highlight-section {
        height: 400px;
    }

    .highlight-title {
        font-size: 1.4rem;
    }

    .highlight-subtitle {
        padding-inline: 1rem;
    }
}

/* Small screens: keep it slightly smaller */
@media (max-width: 576px) {
    .aare-wa-float {
        width: 50px;
        height: 50px;
        bottom: 14px;
        inset-inline-end: 14px;
    }
    .aare-wa-float i {
        font-size: 24px;
    }

    .aare-work-img {
        border-radius: 18px;
    }
    .aare-work-card {
        border-radius: 14px;
        padding: 18px;
    }
    .interest-modal .modal-content {
        padding-inline: 1.25rem;
    }

    .aare-blog-image img {
        height: 240px;
    }

    .listing-overlay {
        padding: 14px;
    }
    .aare-contact-sheet {
        width: 100%;
    }
    .aare-property-show .aare-prop-kv__grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .aare-property-show .aare-prop-kv__item {
        grid-template-columns: 140px 1fr;
    }
    .aare-property-show .aare-floorplans__features {
        justify-content: flex-start;
    }
    .aare-property-show .aare-prop-map__frame {
        height: 280px;
    }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .aare-service-card {
        transition: none;
    }
    .aare-service-card:hover,
    .aare-service-card:focus-within {
        transform: none;
    }

    .aare-blog-image,
    .aare-blog-viewall {
        transition: none;
    }
    .aare-blog-card:hover .aare-blog-image {
        transform: none;
    }
}
