/* 
========================================================================
   LX REALTY - PREMIUM OBSIDIAN & GOLD STYLING SHEET
   Theme: Gold & Obsidian Dark
   Font Stack: Outfit (Headings) & Inter (Body)
========================================================================
*/

/* 1. RESET & BASE CONFIGURATIONS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Tokens */
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-black: #0a0a0a;
    --light-black: #1a1a1a;
    --text-gray: #777777;
    --text-light-gray: #b0b0b0;
    --white: #ffffff;
    --soft-gray: #FAF8F3;
    --border-color: rgba(212, 175, 55, 0.18);
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    color: var(--dark-black);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-black);
    letter-spacing: -0.02em;
}

.brand-gold {
    color: var(--primary-gold);
    font-family: var(--font-heading);
}

/* 2. REUSABLE COMPONENTS & UTILITIES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.mt-5 { margin-top: 3rem; }
.mt-4 { margin-top: 1.5rem; }

/* Section structures */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header-center h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 800;
    text-transform: uppercase;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-weight: 400;
}

.section-badge {
    display: inline-block;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.separator-gold {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 1.5rem 0;
}

.separator-gold.center {
    margin: 1.5rem auto;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.7rem;
    border-radius: 4px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.25);
    color: #000000;
}

.btn-outline-gold {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #111827;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark-black);
    border: 1px solid var(--dark-black);
}

.btn-outline-dark:hover {
    background-color: var(--dark-black);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    color: var(--white);
}

/* 3. NAVIGATION HEADER */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom-color: var(--border-color);
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
    }
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--white);
    text-decoration: none;
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

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

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-gold);
}

.navbar-btn {
    padding: 8px 18px;
    font-size: 0.7rem;
    border-radius: 40px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.15rem;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar-toggler:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Hide Mobile Menu Header on Desktop view */
.mobile-nav-header {
    display: none;
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(85vw, 360px);
        background: linear-gradient(180deg, #0f141f, #070a12);
        padding: 2.5rem;
        transform: translateX(-105%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1100;
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        display: block;
        padding: 8px 0;
    }
    
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }
    
    .mobile-nav-brand {
        font-family: var(--font-heading);
        color: var(--white);
        font-weight: 800;
        font-size: 1.25rem;
        letter-spacing: 0.1em;
    }
    
    .mobile-nav-close {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1050;
    }
    
    .mobile-nav-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
}

/* 4. HERO CAROUSEL */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-color: var(--dark-black);
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    visibility: hidden;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.65); /* Solid dark screen overlay */
    z-index: 2;
}

.carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 0 10%;
    color: var(--white);
    text-align: left;
}

.caption-container {
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item.active .caption-container {
    opacity: 1;
    transform: translateY(0);
}

.caption-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.caption-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Boost text visibility */
}

.caption-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.caption-buttons {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .caption-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-control:hover {
    background-color: var(--primary-gold);
    color: #111827;
    border-color: transparent;
}

.carousel-control.prev { left: 3%; }
.carousel-control.next { right: 3%; }

@media (max-width: 768px) {
    .carousel-control { display: none; }
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background-color: var(--primary-gold);
    width: 40px;
}

/* 5. LATEST UPDATES (REAL ESTATE NEWS) - HORIZONTAL SCROLL */
.updates-section {
    padding: 10rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.updates-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.updates-header-left {
    max-width: 700px;
}

.updates-header-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 800;
    text-transform: uppercase;
}

.updates-nav-controls {
    display: flex;
    gap: 1rem;
}

.update-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.update-nav-btn:hover {
    background-color: var(--primary-gold);
    color: #111827;
}

.updates-scroll-track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 5% 4rem 5%;
    scrollbar-width: none; /* Firefox */
}

.updates-scroll-track::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.update-card {
    flex: 0 0 400px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

@media (max-width: 480px) {
    .update-card {
        flex: 0 0 300px;
    }
}

.update-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.update-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.update-card:hover .update-img {
    transform: scale(1.04);
}

.update-date {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: var(--primary-gold);
    color: #111827;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 4px;
}

.update-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.update-cat {
    color: var(--primary-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.update-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.update-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.btn-text-gold {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    transition: var(--transition-fast);
}

.btn-text-gold i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

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

.btn-text-gold:hover i {
    transform: translateX(4px);
}

/* 6. ABOUT SECTION */
.about-section {
    padding: 10rem 0;
    background-color: var(--soft-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.about-col-img {
    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1.15;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    filter: brightness(0.98);
}

.frame-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-gold);
    z-index: 1;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-black);
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* 7. PROPERTIES GRID WITH DYNAMIC TABS */
.property-section {
    padding: 10rem 0;
    background-color: var(--white);
}

.property-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.property-tabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--soft-gray);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--dark-black);
    color: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    transition: opacity 0.3s ease;
}

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

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

.property-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.property-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.category-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--dark-black);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
}

.property-details {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.property-location {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.property-location i {
    color: var(--primary-gold);
    margin-right: 4px;
}

.property-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
    margin-bottom: 2rem;
}

.property-specs li {
    font-size: 0.85rem;
    color: var(--dark-black);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.property-specs i {
    color: var(--primary-gold);
    width: 16px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: auto;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-gold);
}

/* 8. MISSION & VISION (PURPOSE) */
.purpose-section {
    padding: 10rem 0;
    background-color: var(--soft-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.purpose-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.purpose-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2.25rem;
    transition: var(--transition-smooth);
}

.purpose-card:hover .purpose-icon-box {
    background-color: var(--primary-gold);
    color: #111827;
}

.purpose-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.purpose-card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.75;
    font-weight: 400;
}

/* 9. TESTIMONIALS SECTION */
.testimonials-section {
    padding: 10rem 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), #111827);
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--white);
}

.testimonials-slider-box {
    max-width: 800px;
    margin: 5rem auto 0 auto;
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.testimonial-slides {
    position: relative;
    min-height: 200px;
}

.test-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.test-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.test-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.test-user {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.user-title {
    font-size: 0.7rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-nav-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.nav-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-control-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.slider-progress-track {
    width: 120px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem auto 0 auto;
    position: relative;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--primary-gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* 10. CONTACT SECTION & CONSULTATION BOX */
.contact-section {
    padding: 10rem 0;
    background-color: var(--white);
}

.contact-box-container {
    background-color: var(--dark-black);
    color: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

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

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

.contact-col-details {
    padding: 5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0) 100%);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .contact-col-details {
        padding: 3rem 2rem;
    }
}

.contact-box-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-box-desc {
    color: var(--text-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-lbl {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

a.detail-val:hover {
    color: var(--primary-gold);
}

.contact-cta-whatsapp {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.whatsapp-prompt {
    font-size: 0.75rem;
    color: var(--text-light-gray);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-col-form {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .contact-col-form {
        padding: 3rem 2rem;
    }
}

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

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

.form-input-group label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: 6px;
    outline: none;
    transition: var(--transition-fast);
}

.form-input-group option {
    background-color: var(--light-black);
    color: var(--white);
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.04);
}

.btn-submit-inquiry {
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 1rem;
}

.inquiry-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.inquiry-status.success { color: #20BA5A; }
.inquiry-status.error { color: #E55039; }

/* 11. FOOTER */
.footer {
    background-color: var(--dark-black);
    border-top: 1px solid var(--border-color);
    color: var(--white);
    padding: 6rem 0 3rem 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (max-width: 991px) {
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 480px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.branding-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.gold-brand { color: var(--primary-gold); }

.footer-slogan {
    font-size: 0.825rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    max-width: 300px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.footer-menu a {
    text-decoration: none;
    font-size: 0.85rem;
    color: var(--text-light-gray);
    transition: var(--transition-fast);
    font-weight: 400;
}

.footer-menu a:hover {
    color: var(--primary-gold);
}

.footer-addr {
    font-size: 0.85rem;
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-phone,
.footer-email {
    font-size: 0.85rem;
    color: var(--text-light-gray);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.footer-phone i,
.footer-email i {
    color: var(--primary-gold);
    margin-right: 6px;
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-light-gray);
    font-weight: 400;
}
