:root {
    --maroon-deep: #5E1826;
    --maroon: #7E2233;
    --maroon-bright: #9C2C42;
    --gold: #C9A227;
    --gold-light: #E7C766;
    --ivory: #FBF6EE;
    --cream: #F3E9D8;
    --charcoal: #2A2119;
    --taupe: #8A7968;
    --white: #FFFFFF;
    --shadow-maroon: rgba(94, 24, 38, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 18px;
    line-height: 1.15;
}

.section-sub {
    color: var(--taupe);
    font-size: 16.5px;
    max-width: 560px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .3px;
    cursor: pointer;
    border: none;
    transition: .35s ease;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--maroon-deep);
    box-shadow: 0 10px 24px rgba(201, 162, 39, .35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(201, 162, 39, .5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .7);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
}

.btn-maroon {
    background: var(--maroon-deep);
    color: #fff;
}

.btn-maroon:hover {
    background: var(--maroon);
    transform: translateY(-3px);
    box-shadow: 0 14px 26px var(--shadow-maroon);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(37, 211, 102, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ============ NAVBAR ============ */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0px 24px 0;
    transition: .35s ease;
    pointer-events: none;
}

nav.navbar {
    pointer-events: auto;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    background: rgba(20, 10, 14, .32);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0px 0px 20px 20px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .15);
    transition: .35s ease;
}

.nav-wrap.scrolled nav.navbar {
    background: rgba(94, 24, 38, .88);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.nav-links.right {
    justify-content: flex-end;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding: 6px 0;
    transition: .25s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: .3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.brand-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 0px 0px 20px 20px;
    padding: 10px 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.brand-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.hamburger {
    display: none;
    font-size: 20px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    background: var(--maroon-deep);
    border-radius: 22px;
    padding: 26px 30px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 26px 50px rgba(0, 0, 0, .35);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.mobile-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: uppercase;
}

@media(max-width:980px) {
    nav.navbar {
        padding: 14px 22px;
        border-radius: 26px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .brand-logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .mobile-menu {
        display: flex;
    }
}

/* ============ HERO CAROUSEL ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 12s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.14) translate(-1.5%, -1.5%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 18, .35) 0%, rgba(20, 10, 18, .45) 45%, rgba(10, 5, 10, .82) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    padding: 0 32px;
    margin: 0 auto;
    color: #fff;
}

.hero-content .eyebrow {
    color: var(--gold-light);
    justify-content: center;
}

.hero-content .eyebrow::before {
    background: var(--gold-light);
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.18;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    margin-top: 22px;
    font-size: 18px;
    max-width: 640px;
    color: rgba(255, 255, 255, .9);
}

.hero-btns {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-light);
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.hero-dots button.active {
    background: var(--gold-light);
    width: 28px;
    border-radius: 6px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: .3s;
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    border-color: var(--gold);
}

.hero-arrow.prev {
    left: 28px;
}

.hero-arrow.next {
    right: 28px;
}

@media(max-width:700px) {
    .hero-arrow {
        display: none;
    }
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 8, 12, .72);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--ivory);
    border-radius: 22px;
    max-width: 480px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
    transform: scale(.92) translateY(20px);
    transition: .35s;
    max-height: 88vh;
    overflow-y: auto;
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--cream);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--maroon-deep);
    font-size: 15px;
    z-index: 3;
}

.modal-box h3 {
    color: var(--maroon-deep);
    font-size: 24px;
    margin-bottom: 6px;
}

.modal-box p.sub {
    color: var(--taupe);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.modal-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.4px solid #E4D9C8;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14.5px;
    color: var(--charcoal);
    outline: none;
    transition: .25s;
}

.modal-box input:focus,
.modal-box select:focus,
.modal-box textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .15);
}

.modal-box textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-box .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

/* Property detail modal */
.modal-box.property-detail {
    max-width: 640px;
    padding: 0;
    overflow: hidden;
}

.pd-image {
    position: relative;
    height: 280px;
}

.pd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-image .property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
}

.pd-image .modal-close {
    background: rgba(255, 255, 255, .9);
}

.pd-body {
    padding: 30px 34px 34px;
}

.pd-loc {
    color: var(--taupe);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.pd-loc i {
    color: var(--gold);
}

.pd-price {
    color: var(--maroon-deep);
    font-family: 'Playfair Display';
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0 18px;
}

.pd-specs {
    display: flex;
    gap: 22px;
    border-top: 1px solid #EEE2CF;
    border-bottom: 1px solid #EEE2CF;
    padding: 16px 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pd-specs span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
}

.pd-specs i {
    color: var(--maroon);
}

.pd-desc {
    color: var(--taupe);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.pd-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============ PROPERTIES ============ */
.section {
    padding: 110px 0;
    position: relative;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tabs button {
    padding: 11px 28px;
    border-radius: 30px;
    border: 1.6px solid var(--maroon-deep);
    background: transparent;
    font-family: 'Jost';
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--maroon-deep);
    transition: .25s;
}

.filter-tabs button.active,
.filter-tabs button:hover {
    background: var(--maroon-deep);
    border-color: var(--maroon-deep);
    color: #fff;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:1000px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:680px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}

.property-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(94, 24, 38, .14);
    transition: .4s ease;
    position: relative;
    height: 340px;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 50px rgba(94, 24, 38, .25);
}

.property-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.property-card:hover img {
    transform: scale(1.1);
}

.property-top {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.property-tag {
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(3px);
}

.property-tag i {
    color: var(--gold-light);
}

.see-details-btn {
    background: #fff;
    color: var(--charcoal);
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: .25s;
}

.see-details-btn:hover {
    background: var(--gold-light);
}

.property-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 22px 20px;
    z-index: 2;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 10%, rgba(0, 0, 0, .55) 60%, transparent 100%);
}

.property-bottom h3 {
    font-size: 19.5px;
    margin-bottom: 4px;
    color: #fff;
}

.property-bottom .price {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 15px;
    display: block;
    margin-bottom: 12px;
}

.property-specs {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding-top: 12px;
    flex-wrap: wrap;
}

.property-specs span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-specs i {
    color: var(--gold-light);
}

.explore-more {
    text-align: center;
    margin-top: 50px;
}

/* ============ ABOUT US ============ */
.about-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(94, 24, 38, .18);
}

.about-hero>img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 15, .15), rgba(20, 10, 15, .55));
}

.about-card {
    position: absolute;
    inset: 56px 70px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(6px);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 60px;
}

.about-card .eyebrow {
    justify-content: center;
}

.about-card p {
    color: var(--charcoal);
    font-size: 16px;
    max-width: 800px;
    line-height: 1.85;
}

@media(max-width:900px) {
    .about-hero>img {
        height: auto;
        min-height: 560px;
    }

    .about-card {
        position: static;
        inset: auto;
        margin: -60px 16px 0;
        padding: 34px 26px;
        border-radius: 20px;
    }
}

.about-points-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 56px;
}

@media(max-width:860px) {
    .about-points-row {
        grid-template-columns: 1fr;
    }
}

.about-point {
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 12px 30px rgba(94, 24, 38, .08);
    text-align: center;
}

.about-point i {
    font-size: 26px;
    color: var(--gold);
    background: var(--cream);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.about-point b {
    display: block;
    color: var(--maroon-deep);
    font-family: 'Playfair Display';
    font-size: 17px;
    margin-bottom: 8px;
}

.about-point span {
    color: var(--taupe);
    font-size: 14px;
}

/* ============ MILESTONES ============ */
.milestones {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon-bright));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.milestones::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px);
    background-size: 26px 26px;
}

.milestones .section-head .section-title,
.milestones .section-head .eyebrow {
    color: #fff;
}

.milestones .eyebrow::before {
    background: var(--gold-light);
}

.milestones .section-sub {
    color: rgba(255, 255, 255, .75);
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media(max-width:900px) {
    .milestone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.milestone-card {
    text-align: center;
    padding: 38px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: .35s;
}

.milestone-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-8px);
}

.milestone-card i {
    font-size: 30px;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.milestone-card .count {
    font-family: 'Playfair Display';
    font-size: 38px;
    font-weight: 700;
}

.milestone-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-top: 8px;
}

/* ============ WHY CHOOSE US ============ */
.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-row.reverse {
    direction: rtl;
}

.why-row.reverse>* {
    direction: ltr;
}

@media(max-width:860px) {
    .why-row,
    .why-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.why-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(94, 24, 38, .16);
}

.why-media img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.why-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: 'Playfair Display';
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    background: rgba(94, 24, 38, .75);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-text h3 {
    color: var(--maroon-deep);
    font-size: 26px;
    margin-bottom: 14px;
}

.why-text p {
    color: var(--taupe);
    font-size: 15.5px;
    margin-bottom: 18px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-list li {
    font-size: 14.5px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.why-list i {
    color: var(--gold);
}

/* ============ TESTIMONIALS ============ */
.testimonial-section {
    background: var(--cream);
    position: relative;
}

.testi-grid-wrap {
    position: relative;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media(max-width:1000px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:620px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 12px 30px rgba(94, 24, 38, .08);
    display: flex;
    flex-direction: column;
    min-height: 230px;
}

.testi-card b.name {
    display: block;
    color: var(--maroon-deep);
    font-family: 'Playfair Display';
    font-size: 17px;
    margin-bottom: 12px;
}

.testi-card p.quote {
    color: var(--taupe);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.testi-rating {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 600;
}

.testi-rating i {
    color: var(--gold);
    margin-left: 4px;
}

.testi-page-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.testi-page-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.4px solid var(--maroon-deep);
    background: transparent;
    color: var(--maroon-deep);
    cursor: pointer;
    transition: .25s;
    font-size: 13px;
}

.testi-page-nav button:hover {
    background: var(--maroon-deep);
    color: #fff;
}

/* ============ CTA STRIP ============ */
.cta-strip {
    background: var(--maroon-deep);
    color: #fff;
    border-radius: 26px;
    padding: 52px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 32px;
    box-shadow: 0 30px 60px rgba(94, 24, 38, .25);
}

.cta-strip h3 {
    font-size: 28px;
    max-width: 440px;
}

.cta-strip span {
    color: var(--gold-light);
}

/* ============ FOOTER ============ */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .75);
    padding-top: 90px;
    position: relative;
}

.footer-curve {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-curve svg {
    width: 100%;
    height: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .brand-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-mini img {
    height: 40px;
    background: #fff;
    border-radius: 10px;
    padding: 4px 8px;
}

.footer-brand .brand-mini span {
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.footer-brand .brand-mini span em {
    font-style: normal;
    color: var(--gold-light);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--maroon-deep);
    transform: translateY(-3px);
}

footer h4 {
    color: #fff;
    font-family: 'Playfair Display';
    font-size: 18px;
    margin-bottom: 22px;
}

footer ul li {
    margin-bottom: 13px;
}

footer ul li a {
    font-size: 14.5px;
    transition: .25s;
}

footer ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--gold-light);
    margin-top: 3px;
}

.footer-bottom {
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13.5px;
}

.footer-bottom a {
    color: var(--gold-light);
}

/* ============ WHATSAPP CHAT WIDGET ============ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-widget .chat-box {
    background: #fff;
    border-radius: 18px 18px 6px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
    padding: 18px 22px;
    max-width: 320px;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e8e8e8;
    animation: slideUp .3s ease;
}

.whatsapp-widget .chat-box.open {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-widget .chat-box h4 {
    font-size: 16px;
    color: var(--maroon-deep);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-widget .chat-box h4 i {
    color: #25D366;
}

.whatsapp-widget .chat-box input,
.whatsapp-widget .chat-box textarea {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.4px solid #E4D9C8;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    transition: .25s;
    width: 100%;
}

.whatsapp-widget .chat-box input:focus,
.whatsapp-widget .chat-box textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, .15);
}

.whatsapp-widget .chat-box textarea {
    min-height: 50px;
    resize: vertical;
}

.whatsapp-widget .chat-box .btn {
    padding: 12px 18px;
    font-size: 14px;
    justify-content: center;
    border-radius: 30px;
}

.whatsapp-widget .toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget .toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--maroon);
    border-radius: 10px;
}

/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon-bright));
    padding: 160px 0 60px;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.85;
    margin-top: 10px;
}

/* ============ ABOUT PAGE STYLES ============ */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width: 900px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-card,
.vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-6px);
}

.mission-card i,
.vision-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 16px;
}

.mission-card h3,
.vision-card h3 {
    color: var(--maroon-deep);
    font-size: 24px;
    margin-bottom: 12px;
}

.mission-card p,
.vision-card p {
    color: var(--taupe);
    line-height: 1.7;
}

/* ============ TEAM CARDS ============ */
.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--cream);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--maroon);
}

.team-card h4 {
    color: var(--maroon-deep);
    font-size: 18px;
}

.team-card p {
    color: var(--taupe);
    font-size: 13px;
}

/* ============ CONTACT PAGE STYLES ============ */
.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info .info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 20px;
}

.contact-info .info-item h4 {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 600;
}

.contact-info .info-item p {
    color: var(--taupe);
    font-size: 14px;
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.4px solid #E4D9C8;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination .page-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #E4D9C8;
    background: #fff;
    color: var(--charcoal);
    transition: 0.25s;
    min-width: 40px;
    text-align: center;
}

.pagination .page-btn:hover {
    background: var(--maroon-deep);
    color: #fff;
    border-color: var(--maroon-deep);
    transform: translateY(-2px);
}

.pagination .page-btn.active {
    background: var(--maroon-deep);
    color: #fff;
    border-color: var(--maroon-deep);
    font-weight: 600;
}

.pagination .page-btn.disabled {
    background: #f5f0ea;
    color: #aaa;
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============ FILTER BAR ============ */
.filter-bar {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.filter-bar select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.4px solid #E4D9C8;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: 0.25s;
}

.filter-bar select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.filter-bar label {
    font-size: 12px;
    font-weight: 600;
    color: var(--taupe);
    display: block;
    margin-bottom: 4px;
}

@media(max-width: 768px) {
    .filter-bar form>div {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
    .filter-bar {
        padding: 16px 18px;
    }
}