:root {
    --navy: #307cb5;
    --navy-soft: #245f8f;
    --gold: #8cc34a;
    --gold-soft: #b7d97a;
    --white: #ffffff;
    --ink: #4d5058;
    --slate: #70747d;
    --mist: #f3f8fb;
    --border: rgba(48, 124, 181, 0.12);
    --shadow-lg: 0 30px 70px rgba(48, 124, 181, 0.18);
    --shadow-md: 0 18px 40px rgba(48, 124, 181, 0.12);
    --radius-lg: 1.75rem;
    --radius-md: 1rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fbfcfe 0%, #eef2f8 100%);
}

body.preloader-active {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

.site-shell {
    min-height: 100vh;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(140, 195, 74, 0.18) 0%, rgba(140, 195, 74, 0) 36%),
        linear-gradient(160deg, rgba(17, 56, 88, 0.98) 0%, rgba(36, 95, 143, 0.97) 55%, rgba(100, 152, 49, 0.95) 100%);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-frame {
    position: relative;
    z-index: 2;
    width: 122px;
    height: 122px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 18px 42px rgba(15, 38, 58, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation: preloader-float 1.9s ease-in-out infinite;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: preloader-pulse 1.9s ease-in-out infinite;
}

.preloader-logo-orbit {
    position: absolute;
    width: 172px;
    height: 172px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(255, 255, 255, 0.88);
    border-right-color: rgba(140, 195, 74, 0.78);
    animation: preloader-spin 2.4s linear infinite;
}

.preloader-glow {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 195, 74, 0.24) 0%, rgba(140, 195, 74, 0) 68%);
    filter: blur(6px);
    animation: preloader-breathe 2.1s ease-in-out infinite;
}

@keyframes preloader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes preloader-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes preloader-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}

@keyframes preloader-breathe {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.66;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.topbar {
    background: #7bb93b;
}

.topbar-content,
.topbar-content span,
.topbar-content a {
    color: var(--white);
}

.topbar-content i {
    color: #524ac3; !important;
}

.topbar-link {
    color: var(--white);
}

.topbar-link:hover {
    color: var(--gold-soft);
}

.luxury-navbar {
    backdrop-filter: blur(18px);
    background: rgb(44 136 209);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-logo-wrap {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.4rem;
    box-shadow: 0 12px 30px rgba(36, 95, 143, 0.22);
}

.brand-logo-wrap-admin {
    width: 4.2rem;
    height: 4.2rem;
    background: rgba(255, 255, 255, 0.98);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name,
.display-title,
.section-title,
.hero-title,
.footer-title,
.admin-heading,
.page-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
}

.brand-name {
    font-size: 1.1rem;
    line-height: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.navbar-dropdown-menu {
    min-width: 260px;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(17, 57, 91, 0.96);
    box-shadow: 0 18px 38px rgba(11, 33, 58, 0.22);
}

.navbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 500;
}

.navbar-dropdown-item i {
    flex: 0 0 1.1rem;
    color: var(--gold-soft);
    font-size: 1rem;
}

.navbar-dropdown-item:hover,
.navbar-dropdown-item:focus,
.navbar-dropdown-item.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
}

.btn-gold {
    color: var(--white);
    background: linear-gradient(135deg, #7bb93b 0%, var(--gold) 55%, #61952c 100%);
    border: 0;
    box-shadow: 0 16px 28px rgba(140, 195, 74, 0.3);
}

.btn-gold:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light:hover,
.btn-outline-dark:hover {
    transform: translateY(-1px);
}

.btn-outline-gold {
    border: 1px solid rgba(140, 195, 74, 0.55);
    color: #6ea733;
    background: transparent;
}

.btn-outline-gold:hover {
    background: rgba(140, 195, 74, 0.12);
    color: #5f922b;
}

.section-space {
    padding: 5.5rem 0;
}

.section-space-sm {
    padding: 4rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: var(--gold);
    font-weight: 700;
}

.eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}

.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(20, 55, 86, 0.92) 5%, rgba(36, 95, 143, 0.82) 46%, rgba(111, 162, 61, 0.45) 100%),
        url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-section-gif {
    background:
        linear-gradient(110deg, rgba(20, 55, 86, 0.62) 5%, rgba(36, 95, 143, 0.5) 50%, rgba(79, 120, 36, 0.36) 100%),
        var(--hero-media) center/cover no-repeat;
}

.hero-section-video {
    background: linear-gradient(110deg, rgba(20, 55, 86, 0.46) 5%, rgba(36, 95, 143, 0.38) 46%, rgba(79, 120, 36, 0.24) 100%);
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: auto -10% -18% auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 195, 74, 0.28) 0%, rgba(140, 195, 74, 0) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.96;
    margin: 1rem 0 1.4rem;
}

.hero-overlay-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-overlay-left {
    margin: 0;
    max-width: 660px;
    text-align: left;
}

.hero-title-overlay {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.02;
    max-width: 780px;
    margin: 1rem auto 0;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.hero-overlay-left .hero-title-overlay {
    max-width: 660px;
    margin: 1rem 0 0;
}

.showcase-strip {
    margin-top: 1.25rem;
    padding: 0 0 2.75rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

.showcase-carousel {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 26px 60px rgba(35, 83, 122, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.showcase-slide {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 55, 82, 0.12) 0%, rgba(28, 55, 82, 0.04) 36%, rgba(28, 55, 82, 0.55) 100%),
        linear-gradient(180deg, rgba(24, 36, 49, 0.04) 0%, rgba(24, 36, 49, 0.3) 100%);
}

.showcase-glass-card {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    margin-left: auto;
    padding: 1.6rem 1.7rem 1.45rem;
    border-radius: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(18px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 18px 40px rgba(22, 43, 62, 0.28);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    margin: 0 0 1rem;
}

.showcase-price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
}

.showcase-price-value {
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1.35rem;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.showcase-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.94);
}

.showcase-list li::before {
    content: '';
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.12);
}

.showcase-indicators {
    bottom: 0.9rem;
    margin-bottom: 0;
    z-index: 3;
}

.showcase-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.42);
}

.showcase-indicators .active {
    background: var(--navy);
}

.about-feature-section {
    padding: 1.25rem 0 4.5rem;
}

.about-feature-shell {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: 3.25rem clamp(1.4rem, 5vw, 5rem);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 2px, transparent 2px) 0 0/18px 18px,
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px) 0 0/16px 16px,
        linear-gradient(120deg, #1f57a6 0%, #2d76bf 55%, #214f90 100%);
    box-shadow: 0 28px 60px rgba(33, 79, 144, 0.2);
}

.about-feature-shell::before,
.about-feature-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.about-feature-shell::before {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -90px;
}

.about-feature-shell::after {
    width: 240px;
    height: 240px;
    right: -70px;
    bottom: -70px;
}

.about-feature-copy,
.about-feature-media {
    position: relative;
    z-index: 2;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #255ea7;
    font-weight: 600;
    font-size: 0.98rem;
}

.about-kicker::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #f58b23;
}

.about-feature-title {
    margin: 1.6rem 0 1.25rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 0.95;
    color: var(--white);
}

.about-feature-text {
    max-width: 560px;
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.about-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.6rem;
}

.about-stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.about-stat-card span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
}

.about-feature-btn {
    margin-top: 2.4rem;
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8f20 0%, #ff7a00 100%);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.25);
}

.about-feature-btn:hover {
    color: var(--white);
}

.about-feature-media {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 22px 50px rgba(16, 44, 82, 0.28);
}

.about-feature-media img,
.about-feature-media video {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.about-feature-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #245dd0 0%, #315bea 100%);
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 18px 42px rgba(36, 93, 208, 0.35);
}

.about-feature-play:hover {
    color: var(--white);
}

.about-crumb-hero {
    padding: 2rem 0 1.2rem;
    background: linear-gradient(180deg, rgba(244, 248, 252, 0.96) 0%, rgba(240, 246, 252, 0.82) 100%);
}

.about-crumb-shell {
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(15, 46, 78, 0.94) 0%, rgba(34, 95, 152, 0.9) 100%),
        url('../img/project2.webp') center/cover no-repeat;
    box-shadow: 0 18px 40px rgba(18, 42, 79, 0.12);
    color: var(--white);
}

.about-crumb-path {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.about-crumb-path a {
    color: rgba(255, 255, 255, 0.86);
}

.about-crumb-title {
    margin: 0 0 0.45rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1;
}

.about-crumb-copy {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.about-story-hero {
    padding: 0.6rem 0 4.25rem;
}

.about-story-shell {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 2px, transparent 2px) 0 0/18px 18px,
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px) 0 0/16px 16px,
        linear-gradient(125deg, #1c4aa4 0%, #245fc3 56%, #1a4a87 100%);
    color: var(--white);
}

.about-story-shell::before,
.about-story-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
}

.about-story-shell::before {
    width: 280px;
    height: 280px;
    top: -100px;
    left: -110px;
}

.about-story-shell::after {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -90px;
}

.about-story-copy,
.about-story-media,
.about-editorial-copy,
.about-editorial-media {
    position: relative;
    z-index: 1;
}

.about-story-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #245fc3;
    font-weight: 600;
    font-size: 0.98rem;
}

.about-story-kicker::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #ff8a1f;
}

.about-story-title {
    margin: 1.35rem 0 1.1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 0.95;
}

.about-story-text {
    max-width: 590px;
    margin-bottom: 1rem;
    font-size: 1.12rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.4rem;
}

.about-story-stat strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--white);
}

.about-story-stat span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
}

.about-story-media {
    overflow: hidden;
    min-height: 520px;
    border-radius: 2rem;
    box-shadow: 0 24px 52px rgba(12, 38, 82, 0.28);
}

.about-story-media video,
.about-story-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.about-story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #245dd0 0%, #315bea 100%);
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(26, 73, 176, 0.35);
}

.about-editorial-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-editorial-section-alt {
    background: linear-gradient(180deg, rgba(235, 243, 251, 0.88) 0%, rgba(240, 246, 252, 0.96) 100%);
}

.about-editorial-media {
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow: 0 22px 46px rgba(18, 42, 79, 0.12);
}

.about-editorial-media img {
    width: 100%;
    height: auto;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.about-editorial-mark {
    display: inline-flex;
    margin-bottom: 1.2rem;
    color: #245fc3;
    font-size: 2.3rem;
}

.about-editorial-title {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    color: #0f1d33;
}

.about-editorial-text {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #48596e;
}

.about-editorial-callout {
    max-width: 430px;
    padding: 1.45rem 1.5rem;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, #1d4ea9 0%, #245fc3 100%);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(29, 78, 169, 0.18);
}

.about-editorial-callout h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    color: var(--white);
}

.about-editorial-callout p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.about-values-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-values-heading {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.about-values-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #245fc3;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-values-title {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 4.1rem);
    line-height: 0.98;
    color: #0f1d33;
}

.about-values-copy {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5c6b7c;
}

.about-value-card {
    height: 100%;
    padding: 2.2rem 2rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(48, 124, 181, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 44px rgba(20, 44, 78, 0.08);
}

.about-value-icon {
    width: 3.3rem;
    height: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border-radius: 1rem;
    background: #3f51b5;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 14px 26px rgba(255, 107, 0, 0.18);
}

.about-value-card h3 {
    margin-bottom: 0.95rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: #0f1d33;
}

.about-value-card p {
    color: #536476;
    line-height: 1.9;
}

.projects-section {
    padding-top: 2.25rem;
    padding-bottom: 4.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 241, 248, 0.92) 100%);
}

.projects-section-secondary {
    padding-top: 0;
}

.projects-heading {
    margin-bottom: 3.2rem;
}

.projects-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 12px 26px rgba(48, 124, 181, 0.18);
}

.projects-kicker::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #ff8a1f;
}

.projects-shell {
    width: 100%;
    padding: clamp(1.6rem, 3vw, 3rem) clamp(1.2rem, 4vw, 4rem);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(237, 244, 250, 0.94) 0%, rgba(229, 238, 247, 0.96) 100%);
    box-shadow: 0 26px 58px rgba(34, 76, 116, 0.12);
}

.projects-section-secondary .projects-shell {
    background: linear-gradient(180deg, rgba(229, 238, 247, 0.98) 0%, rgba(242, 247, 251, 0.96) 100%);
}

.projects-section-tertiary .projects-shell {
    background: linear-gradient(180deg, rgba(242, 247, 251, 0.98) 0%, rgba(235, 244, 236, 0.96) 100%);
}

.home-services-section {
    padding-top: 0;
    padding-bottom: 4.25rem;
}

.home-services-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.4rem) 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 2px, transparent 2px) 0 0/18px 18px,
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px) 0 0/16px 16px,
        linear-gradient(145deg, #19479f 0%, #1f57a6 48%, #173c86 100%);
}

.home-services-shell::before,
.home-services-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
}

.home-services-shell::before {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -90px;
}

.home-services-shell::after {
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -110px;
}

.home-services-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 2.8rem;
}

.home-services-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.96);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-services-title {
    margin: 1.25rem 0 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    line-height: 0.96;
    color: var(--white);
}

.home-services-copy {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
}

.home-service-card {
    position: relative;
    z-index: 1;
    padding: 2rem 1.95rem 1.85rem;
    border-radius: 1.7rem;
    background: linear-gradient(180deg, rgba(241, 246, 252, 0.96) 0%, rgba(229, 237, 248, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow:
        0 20px 44px rgba(12, 35, 76, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.44) 0, rgba(255, 255, 255, 0.44) 2px, transparent 2px) 0 0/14px 14px;
    opacity: 0.42;
    pointer-events: none;
}

.home-service-icon-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.35rem;
}

.home-service-letter,
.home-service-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.95rem;
    border: 1px solid rgba(48, 124, 181, 0.16);
    background: rgba(255, 255, 255, 0.86);
    color: #245fc3;
}

.home-service-letter {
    font-weight: 700;
    font-size: 1rem;
}

.home-service-icon {
    font-size: 1.1rem;
}

.home-service-title-card {
    position: relative;
    z-index: 1;
    margin-bottom: 0.95rem;
    font-size: 1.7rem;
    line-height: 1.15;
    color: #0f1d33;
    font-family: 'Playfair Display', Georgia, serif;
}

.home-service-text {
    position: relative;
    z-index: 1;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #4f6278;
}

.projects-section-quaternary .projects-shell {
    background: linear-gradient(180deg, rgba(238, 244, 236, 0.98) 0%, rgba(248, 249, 243, 0.96) 100%);
}

.project-carousel {
    position: relative;
}

.project-slide-frame {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 1.7rem;
    box-shadow: 0 22px 44px rgba(28, 57, 89, 0.18);
}

.project-slide-frame img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.project-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 58, 0.04) 0%, rgba(7, 27, 58, 0.26) 100%);
}

.project-indicators {
    bottom: 1rem;
    margin-bottom: 0;
}

.project-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    background: rgba(255, 255, 255, 0.48);
}

.project-indicators .active {
    width: 28px;
    border-radius: 999px;
    background: var(--white);
}

.project-copy {
    padding-inline: clamp(0rem, 1.2vw, 1rem);
}

.project-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff922c 0%, #ff7600 100%);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(255, 122, 0, 0.18);
}

.project-pill::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
}

.project-title {
    margin: 1.4rem 0 1.2rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    line-height: 0.96;
    color: #1747a4;
}

.project-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #5f6976;
    margin-bottom: 1rem;
}

.project-block {
    margin-top: 1.65rem;
}

.project-block h4 {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

.project-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.95rem;
}

.project-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: #30455f;
}

.project-feature-list i {
    color: #1747a4;
    font-size: 1.05rem;
    margin-top: 0.2rem;
}

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

.project-price-card {
    padding: 1.1rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(48, 124, 181, 0.12);
    box-shadow: 0 14px 30px rgba(34, 76, 116, 0.08);
}

.project-price-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: #657487;
    font-size: 0.92rem;
}

.project-price-card strong {
    font-size: 1.45rem;
    line-height: 1.1;
    color: #0f2442;
}

.project-buy-btn {
    margin-top: 1.9rem;
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.8rem;
    color: var(--white);
    background: linear-gradient(135deg, #1747a4 0%, #245fc3 100%);
    box-shadow: 0 16px 30px rgba(23, 71, 164, 0.22);
}

.project-buy-btn:hover {
    color: var(--white);
}

.hero-subtitle {
    max-width: 42rem;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-hero-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-search-panel {
    margin-top: 2rem;
    padding: 1.4rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.quick-search-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 0.85rem;
}

.hero-metrics {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric-card {
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.hero-media-stack {
    display: grid;
    gap: 1rem;
}

.hero-logo-card,
.hero-slider-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px rgba(30, 71, 108, 0.24);
}

.hero-logo-card {
    padding: 1.4rem;
}

.hero-brand-logo {
    width: 100%;
    max-width: 260px;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.2rem;
    padding: 0.7rem;
}

.hero-slider-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.2rem 0;
}

.slider-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--gold-soft);
    margin-bottom: 0.2rem;
}

.slider-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 0.82rem;
}

.hero-slider-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 0 0 1.75rem 1.75rem;
}

.hero-slider-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.metric-card strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
}

.surface-card,
.property-card,
.service-card,
.testimonial-card,
.contact-card,
.stats-card,
.admin-card,
.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.surface-card {
    padding: 2rem;
}

.property-card,
.blog-card,
.testimonial-card,
.service-card {
    overflow: hidden;
    height: 100%;
}

.card-media {
    position: relative;
    height: 255px;
    overflow: hidden;
}

.card-media img,
.property-hero-gallery img,
.gallery-tile img,
.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-media .property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--white);
    background: rgba(7, 27, 58, 0.9);
}

.property-card-body,
.blog-card-body,
.testimonial-card-body,
.service-card-body {
    padding: 1.5rem;
}

.property-meta,
.feature-grid,
.icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.property-meta span,
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    background: var(--mist);
    color: var(--slate);
    font-size: 0.9rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.85rem;
}

.section-copy {
    max-width: 43rem;
    color: var(--slate);
}

.trust-strip {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.stat-band {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 248, 252, 0.98) 100%);
}

.hero-signal-card {
    padding: 1rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(48, 124, 181, 0.03) 0%, rgba(140, 195, 74, 0.1) 100%);
    border: 1px solid rgba(48, 124, 181, 0.08);
    height: 100%;
}

.hero-signal-card strong {
    display: block;
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.7rem;
}

.signal-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.trust-badge {
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(7, 27, 58, 0.1);
    border: 1px solid rgba(7, 27, 58, 0.06);
    font-weight: 600;
}

.trust-badge i,
.icon-circle {
    width: 2.9rem;
    height: 2.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(140, 195, 74, 0.18), rgba(48, 124, 181, 0.08));
    color: var(--gold);
}

.stats-panel {
    background: linear-gradient(135deg, #2d6fa5 0%, #245a85 55%, #457f28 100%);
    color: var(--white);
}

.stats-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.stats-card .value {
    font-size: 2rem;
    font-weight: 700;
}

.content-slab {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cta-banner {
    padding: 3rem;
    border-radius: 2rem;
    background:
        linear-gradient(120deg, rgba(36, 95, 143, 0.94) 0%, rgba(40, 84, 123, 0.9) 65%, rgba(90, 132, 40, 0.86) 100%),
        url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(140, 195, 74, 0.18), transparent);
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.diaspora-panel,
.contact-card,
.admin-card {
    padding: 2rem;
}

.timeline-step {
    position: relative;
    padding-left: 4.2rem;
    margin-bottom: 2rem;
}

.timeline-step .step-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.page-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(180deg, rgba(36, 95, 143, 0.97) 0%, rgba(36, 95, 143, 0.84) 100%);
    color: var(--white);
    position: relative;
}

.page-hero.with-image {
    background:
        linear-gradient(110deg, rgba(20, 55, 86, 0.9), rgba(36, 95, 143, 0.76)),
        var(--page-hero-image, url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1600&q=80')) center/cover;
}

.page-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.filter-panel {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-top: -2rem;
    position: relative;
    z-index: 4;
}

.results-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.form-control,
.form-select,
.form-check-input {
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    border-color: rgba(100, 116, 139, 0.24);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: rgba(140, 195, 74, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(140, 195, 74, 0.15);
}

.property-hero-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.property-hero-gallery .stacked {
    display: grid;
    gap: 1rem;
}

.property-hero-gallery > div,
.property-hero-gallery .stacked > div,
.gallery-tile {
    border-radius: 1.4rem;
    overflow: hidden;
    min-height: 220px;
}

.info-list {
    display: grid;
    gap: 1rem;
}

.info-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.estimator-card .planner-output {
    padding: 1.2rem 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(48, 124, 181, 0.05) 0%, rgba(140, 195, 74, 0.14) 100%);
    border: 1px solid rgba(48, 124, 181, 0.08);
}

.faq-slab .accordion-button {
    font-weight: 600;
}

.gallery-tile {
    position: relative;
    min-height: 270px;
}

.gallery-tile::after {
    content: attr(data-caption);
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    color: var(--white);
    background: linear-gradient(180deg, transparent 0%, rgba(36, 95, 143, 0.85) 100%);
}

.footer-section {
    padding: 3.15rem 0 5rem;
    background:
        linear-gradient(135deg, rgba(17, 57, 91, 0.94) 0%, rgba(34, 88, 145, 0.88) 50%, rgba(27, 71, 49, 0.72) 100%),
        url('../img/hm1.webp') center/cover no-repeat;
    color: rgba(255, 255, 255, 0.74);
}

.footer-logo-wrap {
    width: 150px;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.65rem;
}

.footer-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-compact-shell {
    padding-bottom: 1.5rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.62rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-tagline {
    max-width: 320px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.footer-base {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-base a {
    color: var(--gold-soft);
}

.floating-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.3rem;
    z-index: 1050;
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.8rem;
    display: flex;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.admin-body {
    background: #eef3f9;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.admin-sidebar {
    background: linear-gradient(180deg, #285a83 0%, #224f76 60%, #467f29 100%);
    color: rgba(255, 255, 255, 0.76);
    padding: 2rem 1.4rem;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.admin-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}

.admin-nav {
    display: grid;
    gap: 0.55rem;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.76);
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-user-card {
    margin-top: auto;
    padding: 1.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.2rem;
}

.admin-main {
    padding: 2rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-content .table {
    vertical-align: middle;
}

.table-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.stats-tile {
    padding: 1.5rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-md);
}

.stats-tile .label {
    color: var(--slate);
    display: block;
    margin-bottom: 0.6rem;
}

.stats-tile .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        linear-gradient(120deg, rgba(36, 95, 143, 0.96) 0%, rgba(36, 95, 143, 0.82) 65%, rgba(86, 127, 37, 0.78) 100%),
        url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.auth-card {
    width: min(100%, 460px);
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.auth-logo-wrap {
    width: 180px;
    margin-bottom: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.6rem;
}

.auth-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.feature-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--slate);
}

.feature-checklist i {
    color: var(--gold);
    margin-top: 0.15rem;
}

.badge-soft {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.alert {
    border-radius: 1rem;
}

@media (max-width: 1199.98px) {
    .luxury-navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

    .luxury-navbar .navbar-toggler {
        order: 1;
        flex: 0 0 auto;
        margin: 0 0.85rem 0 0;
        padding: 0.35rem;
    }

    .luxury-navbar .navbar-brand {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
        gap: 0.8rem !important;
    }

    .luxury-navbar .navbar-brand > span:last-child {
        min-width: 0;
    }

    .luxury-navbar .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        margin-top: 0.8rem;
    }

    .luxury-navbar .brand-logo-wrap {
        width: 3.35rem;
        height: 3.35rem;
        flex: 0 0 auto;
    }

    .luxury-navbar .brand-name {
        font-size: 1rem;
    }

    .luxury-navbar .brand-subtitle {
        display: block;
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .about-crumb-shell {
        padding: 1.15rem 1.2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 6rem 0 5rem;
    }

    .about-story-shell {
        padding: 2.6rem 0;
    }

    .about-story-media,
    .about-story-media video,
    .about-story-media img {
        min-height: 420px;
    }

    .about-editorial-media img {
        min-height: 360px;
    }

    .showcase-slide {
        min-height: 350px;
        padding: 1.5rem;
    }

    .about-feature-shell {
        padding: 2.4rem;
    }

    .project-slide-frame,
    .project-slide-frame img {
        min-height: 430px;
    }

    .about-feature-media,
    .about-feature-media img,
    .about-feature-media video {
        min-height: 420px;
    }

    .showcase-glass-card {
        width: min(100%, 100%);
        margin: auto 0 0;
    }

    .quick-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .property-hero-gallery {
        grid-template-columns: 1fr;
    }

    .footer-section {
        padding-bottom: 8rem;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .section-space {
        padding: 4rem 0;
    }

    .footer-section {
        padding-top: 2.45rem;
        padding-bottom: 7rem;
    }

    .footer-tagline {
        max-width: none;
    }

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

    .luxury-navbar .brand-logo-wrap {
        width: 3rem;
        height: 3rem;
    }

    .luxury-navbar .brand-name {
        font-size: 0.92rem;
    }

    .luxury-navbar .brand-subtitle {
        display: none;
    }

    .about-crumb-hero {
        padding: 1.25rem 0 0.8rem;
    }

    .about-crumb-shell {
        padding: 1rem 1rem 1.05rem;
        border-radius: 0;
    }

    .about-crumb-title {
        font-size: 1.7rem;
    }

    .about-crumb-copy {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .showcase-strip {
        margin-top: 1rem;
        padding-bottom: 2rem;
    }

    .about-story-hero {
        padding-bottom: 2.6rem;
    }

    .about-story-shell {
        padding: 1.9rem 0;
    }

    .about-story-title {
        font-size: 2.5rem;
    }

    .about-story-text {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-story-media,
    .about-story-media video,
    .about-story-media img {
        min-height: 300px;
        border-radius: 1.4rem;
    }

    .about-story-play {
        width: 76px;
        height: 76px;
        font-size: 1.7rem;
    }

    .about-editorial-section,
    .about-values-section {
        padding: 4rem 0;
    }

    .about-editorial-media img {
        min-height: 280px;
    }

    .about-editorial-title {
        font-size: 2rem;
    }

    .about-editorial-callout {
        max-width: none;
    }

    .about-value-card {
        padding: 1.65rem 1.35rem;
        border-radius: 1.25rem;
    }

    .showcase-slide {
        min-height: 320px;
    }

    .about-feature-section {
        padding-bottom: 3.25rem;
    }

    .projects-section {
        padding-top: 1rem;
        padding-bottom: 3.5rem;
    }

    .home-services-section {
        padding-bottom: 3.5rem;
    }

    .home-services-shell {
        padding: 2rem 0;
    }

    .home-services-heading {
        margin-bottom: 2rem;
    }

    .home-service-card {
        padding: 1.55rem 1.25rem;
        border-radius: 1.3rem;
    }

    .home-service-title-card {
        font-size: 1.42rem;
    }

    .projects-section-secondary {
        padding-top: 0;
    }

    .projects-heading {
        margin-bottom: 2rem;
    }

    .projects-shell {
        padding: 1.1rem;
        border-radius: 0;
    }

    .project-title {
        font-size: 2.3rem;
    }

    .project-slide-frame,
    .project-slide-frame img {
        min-height: 300px;
    }

    .project-pricing {
        grid-template-columns: 1fr;
    }

    .about-feature-shell {
        border-radius: 0;
        padding: 1.8rem 1.1rem;
    }

    .about-feature-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-feature-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-feature-media,
    .about-feature-media img,
    .about-feature-media video {
        min-height: 300px;
    }

    .about-feature-play {
        width: 78px;
        height: 78px;
        font-size: 1.8rem;
    }

    .showcase-glass-card {
        padding: 1.2rem 1.2rem 1.1rem;
        border-radius: 1.4rem;
    }

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

    .showcase-price-value {
        font-size: 2.3rem;
    }

    .showcase-list li {
        font-size: 0.96rem;
    }

    .hero-overlay-copy,
    .hero-overlay-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-title-overlay {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner,
    .surface-card,
    .diaspora-panel,
    .contact-card,
    .admin-card {
        padding: 1.5rem;
    }

    .footer-links-compact {
        grid-template-columns: 1fr;
    }

    .footer-cta-btn {
        width: 100%;
        min-width: 0;
    }

    .floating-whatsapp {
        bottom: 5.9rem;
    }

    .quick-search-grid {
        grid-template-columns: 1fr;
    }
}

.service-crumb-hero {
    padding: 1rem 0 0;
}

.service-crumb-shell {
    background:
        radial-gradient(circle at top left, rgba(140, 195, 74, 0.24), transparent 33%),
        linear-gradient(135deg, rgba(7, 27, 58, 0.98), rgba(18, 67, 129, 0.94));
    color: #fff;
    padding: 1.15rem 0 1rem;
}

.service-detail-section {
    padding-top: 2rem;
}

.service-showcase-card {
    border-radius: 1.85rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(7, 27, 58, 0.14);
    background: #fff;
}

.paint-detail-card {
    padding: 1.1rem;
    border: 1px solid rgba(201, 162, 39, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.95));
}

.paint-detail-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

.paint-carousel-shell {
    min-width: 0;
    order: 1;
}

.service-showcase-media {
    position: relative;
}

.service-showcase-media img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    display: block;
}

.service-showcase-media-compact img {
    height: 306px;
    min-height: 306px;
}

.paint-detail-media {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(201, 162, 39, 0.55);
    box-shadow: 0 22px 48px rgba(7, 27, 58, 0.12);
}

.paint-detail-media img {
    height: 560px;
    min-height: 560px;
}

.paint-thumb-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    order: 2;
}

.paint-thumb-btn {
    border: 2px solid rgba(201, 162, 39, 0.28);
    background: #fff;
    border-radius: 1.15rem;
    padding: 0.45rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
    text-align: left;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 28px rgba(7, 27, 58, 0.08);
}

.paint-thumb-btn img {
    width: 100%;
    height: 92px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 0.9rem;
    display: block;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.paint-thumb-btn:hover,
.paint-thumb-btn:focus {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.55);
}

.paint-thumb-btn.active {
    border-color: var(--gold);
    box-shadow: 0 16px 34px rgba(7, 27, 58, 0.12);
    background: linear-gradient(180deg, rgba(255, 252, 245, 1), rgba(255, 255, 255, 1));
}

.paint-thumb-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0 0.2rem 0.2rem;
}

.paint-thumb-text strong {
    color: var(--color-navy);
    font-size: 0.92rem;
    line-height: 1.2;
}

.paint-thumb-text small {
    color: rgba(30, 41, 59, 0.62);
    font-size: 0.78rem;
    line-height: 1.35;
}

.service-showcase-count,
.service-showcase-tour {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    color: #fff;
    background: rgba(7, 27, 58, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.service-showcase-count {
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-showcase-tour {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.service-showcase-tour:hover {
    transform: translateY(-2px);
    background: rgba(48, 124, 181, 0.82);
}

.service-copy-card,
.service-form-card {
    background: #fff;
    border: 1px solid rgba(48, 124, 181, 0.13);
    border-radius: 1.65rem;
    box-shadow: 0 24px 50px rgba(7, 27, 58, 0.08);
}

.service-copy-card {
    margin-top: 2rem;
    padding: 2.15rem 2rem;
}

.service-copy-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 2.55rem);
    color: var(--color-navy);
}

.service-copy-text {
    margin-bottom: 1rem;
    color: rgba(30, 41, 59, 0.9);
    font-size: 1.04rem;
    line-height: 1.9;
}

.service-form-section {
    padding-bottom: 1rem;
}

.service-form-card {
    padding: 2.15rem 2rem;
}

.service-form-title {
    color: var(--color-navy);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.service-form-card .form-label {
    font-weight: 600;
    color: var(--color-navy);
}

.service-form-card .form-control {
    min-height: 56px;
    border-radius: 1rem;
    border-color: rgba(48, 124, 181, 0.18);
    padding-inline: 1rem;
}

.service-form-card textarea.form-control {
    min-height: 160px;
    padding-top: 0.9rem;
    resize: vertical;
}

.service-form-card .form-control:focus {
    border-color: rgba(48, 124, 181, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(48, 124, 181, 0.12);
}

.service-form-btn {
    min-width: 220px;
}

.service-related-section {
    padding-top: 2rem;
}

.service-related-heading {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.service-related-card {
    background: #fff;
    border: 1px solid rgba(48, 124, 181, 0.12);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(7, 27, 58, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(7, 27, 58, 0.13);
}

.service-related-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-related-body {
    padding: 1.5rem 1.4rem 1.55rem;
}

.service-related-body h3 {
    margin-bottom: 0.85rem;
    color: var(--color-navy);
    font-size: 1.45rem;
}

.service-related-body p {
    margin-bottom: 1.35rem;
    color: rgba(30, 41, 59, 0.82);
    line-height: 1.8;
}

.land-overview-card {
    margin-top: 2rem;
    padding: 1.95rem 2rem 2.05rem;
    background: #fff;
    border: 1px solid rgba(48, 124, 181, 0.13);
    border-radius: 1.65rem;
    box-shadow: 0 24px 50px rgba(7, 27, 58, 0.08);
}

.land-overview-title {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(2rem, 3vw, 2.55rem);
}

.land-price-wrap {
    display: flex;
    align-items: flex-start;
}

.land-price-value {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1;
    color: #124381;
    font-weight: 700;
}

.land-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
}

.land-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(30, 41, 59, 0.88);
    font-weight: 500;
}

.land-highlights i {
    color: #124381;
}

.land-feature-panel,
.land-location-card {
    background: #fff;
    border-radius: 1.65rem;
    border: 1px solid rgba(48, 124, 181, 0.12);
    box-shadow: 0 20px 45px rgba(7, 27, 58, 0.08);
    padding: 1.8rem;
}

.land-feature-panel {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.11), transparent 35%),
        linear-gradient(135deg, #123f90 0%, #1a57c6 100%);
    color: #fff;
}

.land-panel-title,
.land-location-title {
    margin-bottom: 1rem;
    font-size: 1.45rem;
    color: inherit;
}

.land-feature-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.land-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
}

.land-location-title {
    color: var(--color-navy);
}

.land-map-frame {
    border-radius: 1rem;
    overflow: hidden;
    background: #eef5fb;
}

.land-location-place {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    color: var(--color-navy);
}

.land-similar-section {
    padding-top: 2rem;
}

.land-similar-price {
    color: var(--color-navy);
    font-size: 1.45rem;
}

.service-related-btn-inline {
    width: auto;
}

@media (max-width: 991.98px) {
    .service-showcase-media img {
        min-height: 390px;
    }

    .service-showcase-media-compact img {
        height: 254px;
        min-height: 254px;
    }

    .paint-detail-media img {
        height: 440px;
        min-height: 440px;
    }

    .paint-thumb-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .paint-thumb-btn {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .paint-thumb-btn img {
        width: 100%;
        height: 92px;
        flex-basis: auto;
    }

    .service-copy-card,
    .service-form-card {
        padding: 1.85rem 1.5rem;
    }

    .land-overview-card,
    .land-feature-panel,
    .land-location-card {
        padding: 1.55rem 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .service-crumb-shell {
        padding: 1rem 0 0.95rem;
    }

    .service-detail-section {
        padding-top: 1.35rem;
    }

    .service-showcase-card {
        border-radius: 1.35rem;
    }

    .service-showcase-media img {
        min-height: 280px;
    }

    .service-showcase-media-compact img {
        height: 182px;
        min-height: 182px;
    }

    .paint-detail-card {
        padding: 0.8rem;
    }

    .paint-detail-media {
        border-radius: 1.2rem;
    }

    .paint-detail-media img {
        height: 300px;
        min-height: 300px;
    }

    .service-showcase-count {
        top: 0.75rem;
        left: 0.75rem;
    }

    .service-showcase-tour {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.6rem 0.85rem;
        font-size: 0.92rem;
    }

    .paint-thumb-strip {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .paint-thumb-btn {
        flex-direction: row;
        align-items: center;
        border-radius: 1rem;
    }

    .paint-thumb-btn img {
        width: 92px;
        height: 72px;
        flex: 0 0 92px;
    }

    .service-copy-card,
    .service-form-card {
        margin-top: 1.35rem;
        padding: 1.45rem 1.1rem;
        border-radius: 1.3rem;
    }

    .service-copy-title,
    .service-form-title {
        font-size: 1.7rem;
    }

    .service-copy-text,
    .service-related-body p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .service-form-btn,
    .service-related-btn {
        width: 100%;
    }

    .service-related-media img {
        height: 220px;
    }

    .service-related-body {
        padding: 1.3rem 1.15rem 1.35rem;
    }

    .land-overview-card {
        margin-top: 1.35rem;
        padding: 1.45rem 1.1rem 1.55rem;
        border-radius: 1.3rem;
    }

    .land-overview-title,
    .land-price-value {
        font-size: 1.8rem;
    }

    .land-highlights {
        gap: 0.75rem 1rem;
    }

    .land-highlights li {
        font-size: 0.95rem;
    }

    .land-feature-panel,
    .land-location-card {
        padding: 1.35rem 1.1rem;
        border-radius: 1.3rem;
    }

    .land-panel-title,
    .land-location-title {
        font-size: 1.25rem;
    }

    .land-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .land-location-place {
        font-size: 1.08rem;
    }

    .service-related-btn-inline {
        width: 100%;
    }
}
