/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b8734a;
    --primary-light: #d9a88a;
    --primary-dark: #8a5a3a;
    --secondary: #7a9a6a;
    --secondary-light: #b5c9a8;
    --secondary-dark: #5a7a4a;
    --gold: #c9a86c;
    --gold-light: #e8d5b5;
    --gold-dark: #a8894e;
    --cream: #fcf3e8;
    --warm-white: #fffaf5;
    --charcoal: #2c2c2c;
    --grey-soft: #6b6b6b;
    --grey-light: #eae3d9;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius: 18px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.6;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(184, 115, 74, 0.35);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(201, 168, 108, 0.55);
    color: #000000;
}

.btn-primary:active {
    transform: scale(0.96);
    box-shadow: 0 2px 10px rgba(184, 115, 74, 0.3);
}

/* ========== HEADER ========== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(184, 115, 74, 0.2);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.92);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---- Logo ---- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.logo span {
    color: var(--primary-dark);
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--grey-soft);
    display: block;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

/* ---- Navigation ---- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

/* ----- Regular nav links (excluding the CTA) ----- */
.nav-menu > li:not(.nav-cta) a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

/* Underline animation for regular links only */
.nav-menu > li:not(.nav-cta) a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu > li:not(.nav-cta) a:hover {
    color: var(--primary-dark);
}

.nav-menu > li:not(.nav-cta) a:hover::after {
    width: 100%;
}

/* ----- CTA button – completely separate ----- */
.nav-cta {
    margin-left: 8px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* The CTA anchor does NOT get the underline or color change */
.nav-cta a {
    text-decoration: none; /* Ensure no underline */
}

/* ---- Mobile Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px 32px;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--grey-light);
        transform: scaleY(0);
        transform-origin: top center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        pointer-events: none;
    }

    .nav-menu.open {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* On mobile, all links become block-level */
    .nav-menu > li:not(.nav-cta) a,
    .nav-cta a {
        font-size: 1.1rem;
        width: 100%;
        padding: 6px 0;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px; /* Slightly larger for touch */
    }

    .logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-tagline {
        font-size: 0.6rem;
    }
    .header-inner {
        gap: 10px;
    }
}





/* ========================================================== */
/* HERO – CENTERED WITH IMAGE                                  */
/* ========================================================== */
.hero-pro {
    position: relative;
    min-height: 85vh;
    /* display: flex; */
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* ---- Background image & overlay ---- */
.hero-pro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-pro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75) 0%, rgba(44, 44, 44, 0.4) 60%, rgba(44, 44, 44, 0.2) 100%);
    z-index: 1;
}

/* ---- Content (centered) ---- */
.hero-pro-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 50px 0 60px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-pro-content {
    max-width: 720px;
    animation: fadeUp 1s ease forwards;
}

.hero-pro-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-light);
    background: rgba(201, 168, 108, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 168, 108, 0.3);
    backdrop-filter: blur(4px);
}

.hero-pro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-pro-title span {
    color: var(--gold-light);
    position: relative;
}

.hero-pro-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

/* ---- Buttons (centered) ---- */
.hero-pro-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-hero-pro {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    border-color: #fff;
}
.btn-outline-light:active {
    transform: scale(0.96);
}

/* ---- Stats Bar (centered) ---- */
.hero-pro-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
}

.hero-pro-stats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.hero-pro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pro-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-pro-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ---- Animation ---- */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================================== */
/* RESPONSIVE                                                 */
/* ========================================================== */
@media (max-width: 992px) {
    .hero-pro {
        min-height: 85vh;
    }
    .hero-pro-title {
        font-size: 3.2rem;
    }
    .hero-pro-inner {
        padding: 50px 0 50px;
    }
}

@media (max-width: 768px) {
    .hero-pro {
        min-height: auto;
        padding: 80px 0 0;
    }
    .hero-pro-inner {
        padding: 60px 0 30px;
    }
    .hero-pro-content {
        max-width: 100%;
    }
    .hero-pro-title {
        font-size: 2.6rem;
    }
    .hero-pro-title span::after {
        height: 4px;
    }
    .hero-pro-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }
    .hero-pro-buttons {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto;
    }
    .btn-hero-pro {
        width: 100%;
        justify-content: center;
    }
    .hero-pro-stats {
        position: relative;
        margin-top: 40px;
        background: rgba(44,44,44,0.6);
        backdrop-filter: blur(4px);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 12px 0;
    }
    .hero-pro-stats-inner {
        gap: 12px;
    }
    .hero-pro-stat .stat-number {
        font-size: 1.4rem;
    }
    .hero-pro-stat .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-pro-title {
        font-size: 2rem;
    }
    .hero-pro-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .hero-pro-stats-inner {
        gap: 8px;
        justify-content: center;
    }
    .hero-pro-stat {
        min-width: 60px;
    }
    .hero-pro-stat .stat-number {
        font-size: 1.2rem;
    }
    .hero-pro-stat .stat-label {
        font-size: 0.7rem;
    }
}



/* ========================================================== */
/* SECTION 3: TRUST / CREDIBILITY STRIP                       */
/* ========================================================== */

.trust-strip {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-top: 1px solid rgba(184, 115, 74, 0.08);
    border-bottom: 1px solid rgba(184, 115, 74, 0.08);
}

.trust-strip-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    border-radius: 14px;
    border: 1px solid rgba(201, 168, 108, 0.15);
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    min-width: 180px;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 108, 0.30);
    background: rgba(255, 255, 255, 0.85);
}

/* ---- Icon ---- */
.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 115, 74, 0.12) 0%, rgba(201, 168, 108, 0.12) 100%);
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.35s ease;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: #fff;
    transform: scale(1.05);
}

/* ---- Content ---- */
.trust-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-soft);
    letter-spacing: 0.3px;
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .trust-strip-inner {
        gap: 16px 20px;
    }
    .trust-item {
        min-width: 150px;
        padding: 10px 16px;
    }
    .trust-number {
        font-size: 1.5rem;
    }
    .trust-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px) – 2 ITEMS PER ROW           */
/* ========================================================== */
@media (max-width: 768px) {
    .trust-strip {
        padding: 30px 0;
    }

    /* Use grid for 2 columns */
    .trust-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 12px;
    }

    .trust-item {
        width: 100%;
        max-width: 100%;
        padding: 12px 14px;
        justify-content: center;
        min-width: unset;
        gap: 12px;
        flex-direction: row; /* keep icon + text side-by-side */
    }

    .trust-content {
        align-items: center;
        text-align: center;
    }

    .trust-number {
        font-size: 1.3rem;
    }
    .trust-label {
        font-size: 0.70rem;
        letter-spacing: 0.2px;
    }
    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px) – 2 ITEMS PER ROW      */
/* ========================================================== */
@media (max-width: 480px) {
    .trust-strip {
        padding: 24px 0;
    }
    .trust-strip-inner {
        gap: 10px 12px;
        max-width: 360px;
    }
    .trust-item {
        padding: 10px 10px;
        gap: 10px;
    }
    .trust-number {
        font-size: 1.1rem;
    }
    .trust-label {
        font-size: 0.60rem;
        letter-spacing: 0.1px;
    }
    .trust-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}


/* ========================================================== */
/* SECTION 4: PROJECT GRID                                    */
/* ========================================================== */

.projects-grid {
    padding: 80px 0;
    background: var(--warm-white);
}

/* ---- Section Header ---- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-dark);
    background: rgba(201, 168, 108, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 168, 108, 0.15);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-soft);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Grid ---- */
.projects-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ---- Project Card ---- */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 108, 0.10);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
    border-color: rgba(201, 168, 108, 0.20);
}

/* ---- Project Image ---- */
.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.project-status.status-coming {
    background: var(--gold);
}

/* ---- Project Content ---- */
.project-content {
    padding: 20px 22px 24px;
}

.project-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.project-location {
    font-size: 0.90rem;
    color: var(--grey-soft);
    margin-bottom: 8px;
}

.project-location i {
    color: var(--primary);
    margin-right: 4px;
}

.project-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

/* ---- USPs ---- */
.project-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.usp-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-soft);
    background: rgba(201, 168, 108, 0.10);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 108, 0.12);
}

.usp-badge i {
    color: var(--gold);
    margin-right: 4px;
    font-size: 0.65rem;
}

/* ---- Project Buttons ---- */
.project-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: scale(0.96);
}



.btn-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 168, 108, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 108, 0.45);
}

.btn-gold:active {
    transform: scale(0.96);
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .projects-grid-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .projects-grid {
        padding: 60px 0;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .projects-grid {
        padding: 50px 0;
    }

    .projects-grid-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
        margin: 0 auto 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 12px;
    }

    .project-content {
        padding: 16px 18px 20px;
    }

    .project-name {
        font-size: 1.3rem;
    }

    .project-buttons {
        flex-direction: column;
    }

    .btn-small {
        width: 100%;
        flex: unset;
    }

    .project-status {
        font-size: 0.70rem;
        padding: 3px 12px;
        top: 12px;
        right: 12px;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .projects-grid {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 4px 14px;
    }

    .project-name {
        font-size: 1.1rem;
    }

    .project-price {
        font-size: 1rem;
    }

    .project-usps {
        gap: 4px;
    }

    .usp-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .btn-small {
        font-size: 0.80rem;
        padding: 10px 16px;
    }
}



/* ========================================================== */
/* SECTION 5: WHY CHOOSE US                                   */
/* ========================================================== */

.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-top: 1px solid rgba(184, 115, 74, 0.06);
    border-bottom: 1px solid rgba(184, 115, 74, 0.06);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.why-choose-item {
    background: #ffffff;
    padding: 32px 24px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 108, 0.10);
    transition: all 0.4s ease;
}

.why-choose-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 108, 0.20);
}

/* ---- Icon ---- */
.why-choose-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(184, 115, 74, 0.10) 0%, rgba(201, 168, 108, 0.10) 100%);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.why-choose-item:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: #fff;
    transform: scale(1.05);
}

/* ---- Text ---- */
.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.why-choose-desc {
    font-size: 0.95rem;
    color: var(--grey-soft);
    line-height: 1.7;
    margin: 0;
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-choose {
        padding: 60px 0;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .why-choose {
        padding: 50px 0;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
        margin: 0 auto;
    }
    .why-choose-item {
        padding: 24px 18px;
    }
    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .why-choose-title {
        font-size: 1.2rem;
    }
    .why-choose-desc {
        font-size: 0.90rem;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .why-choose {
        padding: 40px 0;
    }
    .why-choose-item {
        padding: 20px 14px;
    }
    .why-choose-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    .why-choose-title {
        font-size: 1.1rem;
    }
    .why-choose-desc {
        font-size: 0.85rem;
    }
}




/* ========================================================== */
/* SECTION 6: AMENITIES CAROUSEL (ATTRACTIVE)                 */
/* ========================================================== */

.amenities-carousel {
    padding: 80px 0;
    background: linear-gradient(160deg, #fcf3e8 0%, var(--warm-white) 40%, #f5efe6 100%);
    position: relative;
}

/* ---- Carousel Wrapper ---- */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ---- Carousel Slide ---- */
.carousel-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    overflow: hidden;
}

/* ---- Image Side ---- */
.carousel-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.carousel-slide:hover .carousel-image img {
    transform: scale(1.03);
}

.carousel-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.30) 0%, transparent 100%);
    pointer-events: none;
}

.carousel-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(201, 168, 108, 0.15);
}

.carousel-image-badge i {
    font-size: 0.7rem;
}

/* ---- Content Side ---- */
.carousel-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.carousel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), var(--gold));
    border-radius: 0 4px 4px 0;
}

.carousel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(184, 115, 74, 0.10) 0%, rgba(201, 168, 108, 0.10) 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.carousel-slide:hover .carousel-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.2;
}

.carousel-title span {
    color: var(--primary);
}

.carousel-desc {
    font-size: 1rem;
    color: var(--grey-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ---- Features List ---- */
.carousel-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 0;
    margin: 0;
}

.carousel-features li {
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-features li i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ---- Carousel Buttons ---- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 108, 0.20);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    z-index: 10;
    color: var(--charcoal);
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 30px rgba(184, 115, 74, 0.30);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 18px;
}

.carousel-next {
    right: 18px;
}

/* ---- Carousel Dots ---- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 168, 108, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .amenities-carousel {
        padding: 60px 0;
    }
    .carousel-slide {
        grid-template-columns: 1fr 1fr;
    }
    .carousel-image {
        min-height: 300px;
    }
    .carousel-content {
        padding: 32px 28px;
    }
    .carousel-title {
        font-size: 1.6rem;
    }
    .carousel-features {
        gap: 6px 14px;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .amenities-carousel {
        padding: 50px 0;
    }
    .amenities-carousel::before {
        display: none;
    }
    .carousel-slide {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .carousel-image {
        min-height: 220px;
        order: 1;
    }
    .carousel-content {
        padding: 24px 20px 28px;
        text-align: center;
        align-items: center;
        order: 2;
    }
    .carousel-content::before {
        display: none;
    }
    .carousel-title {
        font-size: 1.4rem;
    }
    .carousel-desc {
        font-size: 0.90rem;
    }
    .carousel-icon {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
    .carousel-features {
        justify-content: center;
    }
    .carousel-features li {
        font-size: 0.75rem;
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .carousel-prev {
        left: 10px;
    }
    .carousel-next {
        right: 10px;
    }
    .carousel-image-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
        top: 12px;
        left: 12px;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .amenities-carousel {
        padding: 40px 0;
    }
    .carousel-image {
        min-height: 180px;
    }
    .carousel-content {
        padding: 18px 14px 22px;
    }
    .carousel-title {
        font-size: 1.2rem;
    }
    .carousel-desc {
        font-size: 0.80rem;
    }
    .carousel-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    .carousel-features {
        gap: 4px 10px;
    }
    .carousel-features li {
        font-size: 0.65rem;
    }
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    .carousel-dot.active {
        width: 24px;
    }
}




/* ========================================================== */
/* SECTION 7: TESTIMONIALS                                    */
/* ========================================================== */

.testimonials {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--cream) 60%, #f5efe6 100%);
    position: relative;
    overflow: hidden;
}

/* ---- Decorative background circle (optional) ---- */
.testimonials::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- Grid ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
    background: #ffffff;
    padding: 32px 28px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 168, 108, 0.10);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 168, 108, 0.20);
}

/* ---- Quote Icon ---- */
.testimonial-quote {
    font-size: 2.2rem;
    color: var(--gold);
    opacity: 0.30;
    margin-bottom: 12px;
    line-height: 1;
}

/* ---- Text ---- */
.testimonial-text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

/* ---- Author ---- */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(201, 168, 108, 0.10);
    padding-top: 16px;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 2px;
}

.testimonial-project {
    font-size: 0.80rem;
    color: var(--grey-soft);
    display: block;
    margin-bottom: 4px;
}

/* ---- Rating ---- */
.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 0.75rem;
}

.testimonial-rating i {
    letter-spacing: 0;
}

/* ---- Trust Badge ---- */
.testimonials-trust {
    text-align: center;
    margin-top: 50px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(4px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 108, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.trust-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

.trust-score {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 4px;
}

.trust-count {
    font-size: 0.85rem;
    color: var(--grey-soft);
    border-left: 1px solid rgba(201, 168, 108, 0.20);
    padding-left: 12px;
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .testimonials {
        padding: 60px 0;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0;
    }
    .testimonials::before {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
        margin: 0 auto;
    }
    .testimonial-card {
        padding: 24px 20px;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
    .testimonial-quote {
        font-size: 1.8rem;
    }
    .trust-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 18px;
        gap: 6px;
    }
    .trust-score {
        font-size: 1.2rem;
    }
    .trust-count {
        font-size: 0.75rem;
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    .testimonial-card {
        padding: 18px 14px;
    }
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    .testimonial-name {
        font-size: 0.95rem;
    }
    .testimonial-project {
        font-size: 0.70rem;
    }
    .testimonial-quote {
        font-size: 1.5rem;
    }
    .trust-badge {
        padding: 8px 12px;
    }
    .trust-score {
        font-size: 1rem;
    }
}



/* ========================================================== */
/* SECTION 8: CTA BANNER                                      */
/* ========================================================== */

.cta-banner {
    position: relative;
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* ---- Background ---- */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(44, 44, 44, 0.80) 0%,
        rgba(44, 44, 44, 0.50) 50%,
        rgba(44, 44, 44, 0.30) 100%
    );
    z-index: 1;
}

/* ---- Content ---- */
.cta-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease forwards;
}

/* ---- Tag ---- */
.cta-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e8d5b5;
    background: rgba(201, 168, 108, 0.20);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 168, 108, 0.30);
    backdrop-filter: blur(4px);
}

/* ---- Title ---- */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.cta-title span {
    color: #e8d5b5;
    position: relative;
}



/* ---- Subtitle ---- */
.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
}

/* ---- Buttons ---- */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-cta {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Primary CTA button overrides for dark background */
.cta-buttons .btn-primary {
    background: #b8734a;
    color: #fff;
    box-shadow: 0 4px 18px rgba(184, 115, 74, 0.40);
}

.cta-buttons .btn-primary:hover {
    background: #c9a86c;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(201, 168, 108, 0.55);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.50);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: #fff;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

/* ---- Features (Trust indicators) ---- */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-features span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .cta-banner {
        padding: 80px 0;
        min-height: 60vh;
    }
    .cta-title {
        font-size: 2.8rem;
    }
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 0;
        min-height: auto;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 8px;
    }
    .cta-buttons {
        flex-direction: column;
        max-width: 340px;
        margin: 0 auto 24px;
    }
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .cta-features {
        gap: 12px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cta-features span {
        font-size: 0.85rem;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .cta-banner {
        padding: 50px 0;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-tag {
        font-size: 0.70rem;
        padding: 4px 14px;
    }
    .cta-subtitle {
        font-size: 0.90rem;
    }
    .btn-cta {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
    .cta-features {
        gap: 8px 14px;
    }
    .cta-features span {
        font-size: 0.75rem;
    }
}




/* ========================================================== */
/* SECTION 9: FOOTER                                          */
/* ========================================================== */

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.80);
    padding: 60px 0 20px;
    border-top: 4px solid var(--gold);
}

/* ---- Footer Grid ---- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Footer Columns ---- */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 4px;
}

/* ---- About Column ---- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.70);
}

/* ---- Social Icons ---- */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

/* ---- Links Lists ---- */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

/* ---- Bottom Bar ---- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.50);
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ========================================================== */
/* RESPONSIVE – TABLET (≤ 992px)                              */
/* ========================================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* ========================================================== */
/* RESPONSIVE – MOBILE (≤ 768px)                              */
/* ========================================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 30px;
    }
    .footer-about {
        grid-column: 1;
    }
    .footer-heading::after {
        width: 30px;
    }
    .footer-logo {
        font-size: 1.5rem;
    }
    .footer-about-text {
        font-size: 0.90rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-top: 16px;
        font-size: 0.80rem;
    }
    .footer-legal {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================================== */
/* RESPONSIVE – SMALL PHONE (≤ 480px)                         */
/* ========================================================== */
@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 12px;
    }
    .footer-grid {
        gap: 20px;
        padding-bottom: 20px;
    }
    .footer-heading {
        font-size: 1rem;
    }
    .footer-logo {
        font-size: 1.3rem;
    }
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}