/* ===== OPTIMIZED MAIN.CSS WITH FIXED HERO & ICONS ===== */
:root {
    /* Color System - No black colors */
    --gold-primary: #D4AF37;
    --gold-light: #F5E8C8;
    --green-deep: #1B4D3E;
    --green-medium: #2E8B57;
    --navy-dark: #0A1931;
    --white-pure: #FFFFFF;
    --white-cream: #F8F5F0;
    --gray-medium: #666;
    --gray-light: #888;
    --shadow-light: rgba(10, 25, 49, 0.05);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-green: linear-gradient(135deg, #1B4D3E 0%, #2E8B57 100%);
    --gradient-premium: linear-gradient(135deg, #0A1931 0%, #1B4D3E 100%);
    
    /* Shadows */
    --shadow-soft: 0 8px 32px var(--shadow-light);
    --shadow-medium: 0 15px 50px rgba(10, 25, 49, 0.12);
    --shadow-hard: 0 25px 70px rgba(10, 25, 49, 0.2);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== BASE RESET & FIXES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--navy-dark);
    background: var(--white-cream);
    overflow-x: hidden;
    padding-top: 90px;
    opacity: 1 !important;
}

/* Load Font Awesome Icons Properly */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* REMOVE ALL LOADER/PRELOADER ELEMENTS */
.loading-screen,
.preloader,
.loader,
[class*="loading"],
[id*="loading"],
[id*="loader"],
[id*="preloader"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FIXED NAVIGATION ===== */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.05);
    height: 90px;
}

.navbar-premium.scrolled {
    background: rgba(10, 25, 49, 0.98);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1002;
}

.logo-badge {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-top: 5px;
}

.navbar-premium.scrolled .logo-text .tagline {
    color: var(--gold-light);
}

/* Desktop Menu */
.nav-menu-premium {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu-premium li {
    position: relative;
}

.nav-menu-premium a {
    text-decoration: none;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu-premium a i {
    font-size: 1rem;
    min-width: 20px;
}

.nav-menu-premium a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu-premium a:hover::before,
.nav-menu-premium a.active::before {
    width: 100%;
}

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

.navbar-premium.scrolled .nav-menu-premium a {
    color: var(--white-cream);
}

.navbar-premium.scrolled .nav-menu-premium a:hover {
    color: var(--gold-primary);
}

.nav-cta {
    margin-left: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button i {
    font-size: 1rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.menu-toggle-premium {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle-premium span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--navy-dark);
    margin: 6px auto;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.navbar-premium.scrolled .menu-toggle-premium span {
    background: var(--white-cream);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .menu-toggle-premium {
        display: block;
    }
    
    .nav-menu-premium {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 90px);
        background: var(--gradient-premium);
        flex-direction: column;
        padding: 40px 30px;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 50px rgba(10, 25, 49, 0.3);
        overflow-y: auto;
    }
    
    .nav-menu-premium.active {
        right: 0;
    }
    
    .nav-menu-premium a {
        color: var(--white-cream);
        font-size: 1.1rem;
        padding: 15px 20px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-menu-premium a i {
        font-size: 1.2rem;
    }
    
    .nav-menu-premium .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
    }
    
    .nav-menu-premium .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FIXED HERO SECTION ===== */
.hero-ultimate {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: -90px;
    padding-top: 90px;
    min-height: 100vh;
    width: 100%;
    background: var(--navy-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 49, 0.9) 0%, rgba(27, 77, 62, 0.7) 100%);
    z-index: 2;
}

.hero-content-ultimate {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white-cream);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-main-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.hero-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-cream);
    margin-top: 10px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 1s ease 0.6s both;
    flex-wrap: wrap;
}

.hero-button-primary,
.hero-button-secondary {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
}

.hero-button-primary i,
.hero-button-secondary i {
    font-size: 1.1rem;
}

.hero-button-primary {
    background: var(--gradient-gold);
    color: var(--navy-dark);
}

.hero-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.hero-button-secondary {
    background: transparent;
    color: var(--white-cream);
    border: 2px solid var(--gold-primary);
}

.hero-button-secondary:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
    transform: translateY(-5px);
}

/* ===== CLICKABLE PRODUCT CARDS ===== */
.products-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F5F0 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.products-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M50,50 m-37,0 a37,37 0 1,1 74,0 a37,37 0 1,1 -74,0" stroke="%23D4AF37" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
    background-size: 100px;
    opacity: 0.3;
    z-index: 1;
}

.products-grid-fixed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Clickable product card links */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white-pure);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    opacity: 0;
    animation: cardAppear 0.6s ease-out forwards;
}

.product-card-link:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hard);
    text-decoration: none;
    color: inherit;
}

.product-card-link:nth-child(1) { animation-delay: 0.1s; }
.product-card-link:nth-child(2) { animation-delay: 0.2s; }
.product-card-link:nth-child(3) { animation-delay: 0.3s; }
.product-card-link:nth-child(4) { animation-delay: 0.4s; }
.product-card-link:nth-child(5) { animation-delay: 0.5s; }
.product-card-link:nth-child(6) { animation-delay: 0.6s; }

.product-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.product-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    animation: pulseGold 2s infinite;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(10, 25, 49, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-card-link:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card-link:hover .product-overlay-content {
    transform: translateY(0);
}

.product-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.product-content-premium {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

.product-name-premium {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.product-description-premium {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.spec-item i {
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.product-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    margin-top: auto;
}

.view-product-text {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-card-link:hover .view-product-text {
    color: var(--gold-primary);
    gap: 12px;
}

.view-product-text i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.product-card-link:hover .view-product-text i {
    transform: translateX(5px);
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: 120px 0;
    background: var(--white-pure);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    opacity: 0;
    animation: cardAppear 0.6s ease-out forwards;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.leader-card:nth-child(1) { animation-delay: 0.2s; }
.leader-card:nth-child(2) { animation-delay: 0.4s; }

.leader-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 350px;
}

.leader-image-container {
    position: relative;
    overflow: hidden;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.05);
}

.leader-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.leader-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
    position: relative;
}

.leader-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

.leader-position {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.leader-bio {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.leader-quote {
    position: relative;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--gold-primary);
    margin-top: 15px;
}

.leader-quote p {
    font-style: italic;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
    animation: wave 20s linear infinite;
    opacity: 0.5;
}

.cta-content-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.cta-content-premium h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content-premium p {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer-premium {
    background: var(--navy-dark);
    color: var(--white-cream);
    padding-top: 80px;
    position: relative;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M50,50 m-37,0 a37,37 0 1,1 74,0 a37,37 0 1,1 -74,0" stroke="%23D4AF37" stroke-width="0.2" fill="none" opacity="0.05"/></svg>');
    background-size: 80px;
    opacity: 0.3;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-list i {
    color: var(--gold-primary);
    width: 16px;
    margin-top: 3px;
    font-size: 1rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    color: var(--white-cream);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--gold-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-cream);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-gold);
    border: none;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== ANIMATIONS & EFFECTS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .leader-content {
        grid-template-columns: 200px 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-fixed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .hero-stat {
        min-width: 150px;
    }
    
    .leader-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .leader-image-container {
        height: 300px;
    }
    
    .hero-content-ultimate {
        padding: 100px 20px 40px;
    }
    
    .products-grid-fixed {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-content-premium h2 {
        font-size: 2.5rem;
    }
    
    .section-title-premium {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .products-grid-fixed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-content-premium {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-content-premium h2 {
        font-size: 2rem;
    }
    
    .cta-content-premium p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons .hero-button-primary,
    .cta-buttons .hero-button-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .leader-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .hero-stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        min-width: 120px;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .section-title-premium {
        font-size: 1.6rem;
    }
    
    .leader-info {
        padding: 20px;
    }
    
    .leader-name {
        font-size: 1.6rem;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .navbar-container {
        padding: 0 15px;
    }
    
    .logo-text .brand {
        font-size: 1.5rem;
    }
    
    .logo-badge {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Landscape */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-ultimate {
        min-height: 600px;
        height: auto;
    }
    
    .hero-content-ultimate {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        margin-bottom: 30px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-content-ultimate {
        padding-top: 100px;
    }
    
    .products-grid-fixed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-content {
        grid-template-columns: 180px 1fr;
    }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-badge img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card-link:hover {
        transform: none;
    }
    
    .leader-card:hover {
        transform: none;
    }
    
    .cta-button:hover,
    .hero-button-primary:hover,
    .hero-button-secondary:hover {
        transform: none;
    }
    
    .nav-menu-premium a:hover::before {
        width: 0;
    }
    
    .product-card-link:active {
        transform: scale(0.98);
    }
    
    .cta-button:active,
    .hero-button-primary:active,
    .hero-button-secondary:active {
        transform: scale(0.98);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-content-ultimate,
    .hero-stats,
    .hero-cta-buttons,
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .product-card-link,
    .leader-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ===== ACCESSIBILITY & PERFORMANCE ===== */
button:focus, 
a:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 3px;
}

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

/* Ensure all sections have proper scroll margin */
section {
    scroll-margin-top: 90px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
}

/* Make sure body loads immediately */
body.loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .navbar-premium,
    .menu-toggle-premium,
    .footer-premium,
    .back-to-top,
    .hero-video-premium,
    .cta-premium,
    .hero-cta-buttons,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        color: var(--navy-dark);
        background: #fff;
    }
    
    a {
        color: var(--navy-dark);
        text-decoration: underline;
    }
    
    .hero-ultimate {
        background: #fff !important;
        color: var(--navy-dark) !important;
        min-height: auto;
    }
    
    .hero-main-title,
    .hero-subtitle {
        color: var(--navy-dark) !important;
    }
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}