/* ==========================================================================
   1. DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #0a0b0d;     /* Pure obsidian dark */
    --color-bg-secondary: #13151a;   /* Deep slate card background */
    --color-bg-tertiary: #1b1e24;    /* Light slate borders/hover */
    
    --color-text-primary: #f5f6f8;   /* Off-white readable text */
    --color-text-secondary: #9ea4b0; /* Slate grey descriptions */
    
    /* Branding Gold & Warm Bronze Accents */
    --color-gold: #d4af37;           /* Metallic gold */
    --color-gold-hover: #f3cf55;     /* Glowing gold */
    --color-bronze: #8c6d30;         /* Dark golden bronze */
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
    --grad-dark-radial: radial-gradient(circle at center, #181c24 0%, #0a0b0d 80%);
    --grad-dark-linear: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(19, 21, 26, 0.65);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
    
    /* Standard Transitions & Timing */
    --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: all 0.4s var(--ease-premium);
    
    /* Shadows */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   2. RESET & GLOBAL RESETS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

/* Premium Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ==========================================================================
   3. NAVIGATION HEADER
   ========================================================================== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header-main.scrolled {
    background: var(--color-bg-primary);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFF;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}

.gold-text {
    color: var(--color-gold);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: #FFF;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.lang-link {
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.lang-link.current {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
}

.lang-divider {
    opacity: 0.3;
}

/* Nav toggle for Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   4. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--grad-gold);
    color: #0b0c10;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #FFF;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-header-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
}

.btn-header-cta:hover {
    background: var(--grad-gold);
    color: #050505;
    transform: none;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFF;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   5. ROUTER MAIN CONTENT WRAPPER
   ========================================================================== */
.main-content {
    flex: 1;
    padding-top: 80px; /* Offset fixed header */
}

/* ==========================================================================
   6. HOMEPAGE: HERO MOSAIC
   ========================================================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    background: var(--grad-dark-radial);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1200px;
}

.mosaic-grid-container {
    position: absolute;
    inset: -15%;
    width: 130%;
    height: 130%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: 140px;
    gap: 12px;
    padding: 30px;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0.45;
    transition: opacity var(--transition-smooth);
}

.mosaic-item {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    background: #000;
    cursor: pointer;
    will-change: transform, opacity;
    transition: border-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium);
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

.mosaic-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    z-index: 5;
}

.mosaic-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Dim Backdrop for Spotlight Mode */
.dim-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-premium);
}

.dim-backdrop.active {
    opacity: 1;
}

.mosaic-item.highlighted {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    z-index: 100;
}

.mosaic-item.highlighted img {
    opacity: 1;
}

/* Spotlight Navigation Buttons */
.spotlight-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 110;
    transition: all 0.3s var(--ease-premium);
    opacity: 0;
    pointer-events: none;
}

.spotlight-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.spotlight-nav-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

/* Hero Text Overlay Content */
.hero-overlay-content {
    position: relative;
    z-index: 20;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: opacity 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFF;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 2.2rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

/* Premium Blinking/Pulse CTA Animation */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.2);
        transform: scale(1.03);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        transform: scale(1);
    }
}

.hero-ctas .btn-primary {
    animation: ctaPulse 2s infinite ease-in-out;
}

.hero-ctas .btn-secondary {
    animation: ctaPulse 2s infinite ease-in-out;
    animation-delay: 1s;
}

/* ==========================================================================
   7. PAGE SECTIONS & COMMON LAYOUTS
   ========================================================================== */
.section-padding {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

/* Feature grid */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Areas Grid */
.grid-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.area-card {
    position: relative;
    border-radius: 20px;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
}

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

.area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.area-card:hover img {
    transform: scale(1.08);
}

.area-card:hover .area-overlay {
    background: linear-gradient(180deg, rgba(212,175,55,0.15) 0%, rgba(10,11,13,0.95) 100%);
}

.area-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.area-overlay p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    opacity: 0.8;
}

/* ==========================================================================
   8. PRODUCTS PAGE: SLABS SHOWCASE
   ========================================================================== */
.products-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-gold);
    color: #0b0c10;
    border-color: var(--color-gold);
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-premium);
}

.product-image-container {
    height: 220px;
    background: #000;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 11, 13, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--color-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.product-type {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.product-dimensions {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.product-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-gold);
}

.btn-product-buy {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* ==========================================================================
   9. SLAB DETAIL MODAL
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 13, 0.95);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #FFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
}

.modal-image-side {
    height: 450px;
    background: #000;
}

.modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info-side h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #FFF;
}

.modal-material-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.modal-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-specs {
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.modal-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.modal-spec-label {
    color: var(--color-text-secondary);
}

.modal-spec-value {
    font-weight: 600;
    color: #FFF;
}

.modal-price-inquire {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.modal-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* ==========================================================================
   10. CONTACT PAGE & INQUIRY FORM
   ========================================================================== */
.grid-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-card-info {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

.contact-card-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.contact-item-detail {
    display: flex;
    gap: 1.2rem;
}

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.2rem;
}

.contact-item-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-control {
    background: var(--color-bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: #FFF;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ==========================================================================
   11. FOOTER MAIN
   ========================================================================== */
.footer-main {
    background: #060708;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.social-icons a:hover {
    background: var(--color-gold);
    color: #0b0c10;
    border-color: var(--color-gold);
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.contact-col p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-col p i {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-contact {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        max-width: 550px;
        height: auto;
    }
    
    .modal-image-side {
        height: 250px;
    }
    
    .modal-info-side {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* Responsive Navigation Menu */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Hero scaling on tablet */
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-overlay-content {
        padding: 2.5rem 1.8rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .section-padding {
        padding: 4rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }
}
