@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-wood: #8b5a2b;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-muted: #888888;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Utilities --- */
.text-gold { color: var(--color-gold) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.text-wood { color: var(--color-wood) !important; }
.bg-dark-section { background-color: var(--color-dark) !important; color: var(--color-white); }
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }
.section-title { font-size: 2.8rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--color-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; display: block; }
.py-8 { padding-top: 6rem; padding-bottom: 6rem; }
.py-10 { padding-top: 8rem; padding-bottom: 8rem; }

/* Buttons */
.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background-color: var(--color-black);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--color-gold);
    border-color: var(--color-black);
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-outline-dark {
    border: 2px solid var(--color-black);
    color: var(--color-black);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-dark:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
}

/* --- Topbar --- */
.topbar {
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar a {
    color: var(--color-white);
    transition: var(--transition-fast);
}

.topbar a:hover {
    color: var(--color-gold);
}

/* --- Navbar & Mega Menu --- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
    transition: var(--transition-smooth);
}

.navbar-wrapper.has-topbar {
    top: 40px; /* height of topbar */
}

.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
}

.navbar-wrapper.scrolled {
    top: 0; /* overrides has-topbar */
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand {
    color: var(--color-black);
}

.nav-link {
    font-weight: 500;
    color: var(--color-white) !important;
    margin: 0 12px;
    padding: 10px 0 !important;
    position: relative;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar.scrolled .nav-link {
    color: var(--color-black) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::before {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold) !important;
}

/* Mega Menu */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mega-menu {
        width: 100%;
        left: 0;
        right: 0;
        position: absolute;
        padding: 30px;
        background: #fff;
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease-in-out;
        margin-top: 0;
    }
}

.mega-menu-title {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.dropdown-item {
    padding: 8px 0;
    color: var(--color-black);
    font-weight: 400;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--color-gold);
    padding-left: 10px;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--color-white);
        padding: 10px 0;
    }
    .navbar-brand, .nav-link {
        color: var(--color-black) !important;
    }
    .navbar-collapse {
        background: var(--color-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }
    .mega-menu {
        position: relative;
        box-shadow: none;
        padding: 15px 0;
    }
}

/* --- Page Header --- */
.page-header {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.page-header h1 {
    font-size: 4rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-gold);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* --- Cards & UI Elements --- */
.feature-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--color-gold);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
}

.product-card {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.product-card img {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.8;
}

.product-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.product-info .btn-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.product-card:hover .product-info .btn-link {
    opacity: 1;
}

/* --- Before & After Slider (CSS only structure) --- */
.ba-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #eee;
}

.ba-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.ba-overlay {
    position: absolute;
    top: 0; left: 0; height: 100%; width: 50%;
    overflow: hidden;
    border-right: 4px solid var(--color-gold);
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--color-light);
    padding: 40px;
    position: relative;
    margin-top: 30px;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    opacity: 0.3;
    line-height: 1;
}

/* --- Accordion (FAQ) --- */
.accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: var(--color-white);
    color: var(--color-black);
}

.accordion-button:not(.collapsed) {
    color: var(--color-gold);
    background-color: var(--color-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

/* --- Footer (Fixed) --- */
.footer {
    background-color: var(--color-dark);
    color: #cccccc; /* Fixed contrast */
    padding-top: 80px;
}

.footer h5 {
    color: var(--color-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: #cccccc; /* Visible on dark */
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

.footer .social-icons a:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
}
.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}


.footer-newsletter .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-gold);
    box-shadow: none;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
}

/* --- WhatsApp Sticky --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .page-header h1 { font-size: 3.5rem; }
}

@media (max-width: 991px) {
    .navbar-wrapper.has-topbar { top: 0; }
    .topbar { display: none !important; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .py-8 { padding-top: 4rem; padding-bottom: 4rem; }
    .product-info { transform: translateY(0); }
    .product-info .btn-link { opacity: 1; }
}

@media (max-width: 768px) {
    .hero-section { height: auto; padding: 120px 0 80px; }
    .hero-title { font-size: 2.5rem; }
    .page-header { height: 40vh; min-height: 300px; }
    .page-header h1 { font-size: 2.5rem; }
    .footer { padding-top: 50px; }
    .footer-bottom { text-align: center; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .whatsapp-sticky { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}

/* --- Service Card Premium --- */
.service-card-premium { position: relative; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease; margin-bottom: 30px; border: 1px solid rgba(0,0,0,0.05); }
.service-card-premium:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card-premium .img-wrapper { height: 280px; overflow: hidden; position: relative; }
.service-card-premium .img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.service-card-premium:hover .img-wrapper img { transform: scale(1.1); }
.service-card-premium .content-box { padding: 40px 30px 30px; position: relative; text-align: center; }
.service-card-premium .icon-circle { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 60px; height: 60px; background: var(--color-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4); border: 4px solid #fff; }
.service-card-premium h3 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 15px; font-size: 1.6rem; }
.service-card-premium p { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }
.service-card-premium .discover-btn { display: inline-block; color: var(--color-black); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; text-decoration: none; transition: 0.3s ease; }
.service-card-premium:hover .discover-btn { color: var(--color-gold); }


/* --- Topbar Scroll Behavior --- */
.topbar { transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease; overflow: hidden; }
.navbar-wrapper.scrolled .topbar { height: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; opacity: 0; border: none; }
.navbar-wrapper.scrolled .navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }


/* --- Link fixes --- */
.social-icons a, .social-links a, .whatsapp-sticky { text-decoration: none !important; }


/* --- Fix Invisible Text in Dark Sections --- */
.bg-dark-section .text-muted { color: #cccccc !important; }



/* --- UI / UX & Mobile Improvements --- */

/* Brand Slider Marquee */
.brand-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.brand-track {
    display: inline-flex;
    align-items: center;
    animation: scroll 15s linear infinite;
}
.brand-track i {
    margin: 0 50px;
    font-size: 3.5rem;
    color: var(--color-dark);
    opacity: 0.3;
    transition: all 0.3s ease;
}
.brand-track i:hover {
    opacity: 1;
    color: var(--color-gold);
    transform: scale(1.1);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Form Select Dropdown Enhancements */
select option {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}
select option:checked, select option:hover {
    background-color: #f8f9fa !important;
    font-weight: 500;
}
/* Ensure the select itself looks clickable and premium */
.form-select {
    cursor: pointer;
    background-color: transparent !important;
}
.form-select:focus {
    box-shadow: none;
    border-color: var(--color-gold) !important;
}

/* Mobile Hero Typography & Layout Fixes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1.5rem !important;
    }
    .hero-section p.lead {
        font-size: 1.1rem !important;
        padding: 0 10px;
    }
    .trust-badges-row > div {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .trust-badges-row > div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Restore Bootstrap dropdown caret */
.dropdown-toggle::after {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    position: relative !important;
    bottom: auto !important;
}


.brand-text-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-black);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 40px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
}
.brand-text-item:hover {
    opacity: 1;
    color: var(--color-gold);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .brand-text-item {
        font-size: 1rem;
        margin: 0 20px;
    }
}

/* --- Landmark Projects Video Cards --- */
.landmark-card {
    position: relative;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--color-black);
    transition: var(--transition-slow);
    z-index: 1;
}

.landmark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.landmark-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: var(--transition-slow);
    z-index: 1;
}

.landmark-card:hover video {
    opacity: 0.75;
    transform: scale(1.05);
}

.landmark-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.landmark-card:hover .landmark-card-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 60%, rgba(10, 10, 10, 0) 100%);
}

.landmark-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    z-index: 3;
    transition: var(--transition-smooth);
}

.landmark-card-badge {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

.landmark-card:hover .landmark-card-badge {
    background-color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.landmark-card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--color-white);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.25;
    transition: var(--transition-smooth);
}

.landmark-card:hover .landmark-card-title {
    color: var(--color-gold);
}

.landmark-card-desc {
    color: #dddddd;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: var(--transition-slow);
}

.landmark-card:hover .landmark-card-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
}

.landmark-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.landmark-card:hover .landmark-card-footer {
    transform: translateY(0);
    opacity: 1;
}

.landmark-stat-item {
    display: flex;
    align-items: center;
    color: #cccccc;
    font-size: 0.82rem;
}

.landmark-stat-item i {
    color: var(--color-gold);
    margin-right: 8px;
}

.landmark-stat-item span {
    font-weight: 500;
}

@media (max-width: 991px) {
    .landmark-card {
        height: 480px;
        margin-bottom: 30px;
    }
}

/* Landmark Filter Tabs */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.project-tab-btn {
    background: transparent;
    border: 2px solid var(--color-black);
    color: var(--color-black);
    padding: 10px 24px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    outline: none;
}

.project-tab-btn:hover, .project-tab-btn.active {
    background-color: var(--color-black);
    color: var(--color-gold);
    border-color: var(--color-black);
}

.landmark-card-wrapper {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.landmark-card-wrapper.hidden {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    border: none;
}

/* Stats Counter Section */
.stats-counter-section {
    background-color: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.stats-counter-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.stats-counter-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stats-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.stats-counter-card:hover .stats-icon-wrapper {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.stats-number {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 5px;
    line-height: 1.1;
}

.stats-counter-card:hover .stats-number {
    color: var(--color-gold);
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.stats-counter-card:hover .stats-title {
    color: var(--color-white);
}

.stats-desc {
    color: #aaaaaa;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Double-Logo Swap System --- */
.navbar-brand .logo-default {
    display: block;
    height: 120px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-brand .logo-scrolled {
    display: none;
    height: 120px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Scrolled navbar swaps logo versions */
.navbar.scrolled .navbar-brand .logo-default {
    display: none;
}

.navbar.scrolled .navbar-brand .logo-scrolled {
    display: block;
}

/* Mobile responsive navigation logo settings */
@media (max-width: 991px) {
    /* Since mobile navbar has a solid white background, always show scrolled (dark/colored) logo */
    .navbar-brand .logo-default {
        display: none !important;
    }
    .navbar-brand .logo-scrolled {
        display: block !important;
        height: 90px;
    }
}



