/* Bootstrap Overrides & Custom Styles - Mobile First */
:root {
    --primary-gold: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --light-gray: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: var(--black) !important;
    background-color: var(--black) !important;
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    line-height: 1.6;
}

/* Animated Background with Stars - Enhanced */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 60% 70%, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 40% 20%, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 215, 0, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 15% 80%, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 75% 15%, rgba(255, 215, 0, 0.5), transparent),
        radial-gradient(1px 1px at 50% 60%, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(1.5px 1.5px at 90% 40%, rgba(255, 215, 0, 0.6), transparent);
    background-size: 200% 200%;
    animation: starTwinkle 8s ease-in-out infinite, starMove 40s linear infinite;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: backgroundGlow 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.7; filter: brightness(0.8); }
    50% { opacity: 1; filter: brightness(1.3); }
}

@keyframes starMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 100%; }
}

@keyframes backgroundGlow {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    25% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(0.95);
    }
    75% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.75rem 0;
    z-index: 1030;
}

.logo-wrapper {
    height: 45px;
    display: flex;
    align-items: center;
    max-width: 150px;
}

.nav-logo {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-toggler {
    border-color: var(--primary-gold) !important;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section - MAIN FOCUS */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 70px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    background: var(--black) !important;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
}

.hero .row {
    margin: 0;
    width: 100%;
}

.hero .col-12 {
    padding: 0;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: backgroundPulse 8s ease-in-out infinite, backgroundFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(2%, -2%) scale(1.05);
    }
    66% { 
        transform: translate(-2%, 2%) scale(0.98);
    }
}

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.4),
        100px 200px 0 rgba(255, 215, 0, 0.5),
        200px 100px 0 rgba(212, 175, 55, 0.4),
        300px 300px 0 rgba(255, 215, 0, 0.3),
        400px 150px 0 rgba(212, 175, 55, 0.5),
        500px 250px 0 rgba(255, 215, 0, 0.4),
        600px 80px 0 rgba(212, 175, 55, 0.3),
        700px 180px 0 rgba(255, 215, 0, 0.5),
        800px 320px 0 rgba(212, 175, 55, 0.4);
    animation: floatParticle 20s linear infinite;
}

.floating-particles::after {
    animation-delay: -10s;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4),
        150px 100px 0 rgba(212, 175, 55, 0.5),
        250px 300px 0 rgba(255, 215, 0, 0.4),
        350px 50px 0 rgba(212, 175, 55, 0.3),
        450px 200px 0 rgba(255, 215, 0, 0.5),
        550px 150px 0 rgba(212, 175, 55, 0.4),
        650px 280px 0 rgba(255, 215, 0, 0.3),
        750px 120px 0 rgba(212, 175, 55, 0.5),
        850px 220px 0 rgba(255, 215, 0, 0.4);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -150px) rotate(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(0, -200px) rotate(360deg);
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 12vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: 0;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    width: 100%;
    display: block;
    padding: 0;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.5;
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 600px;
}

/* Page Sections */
.page-section {
    padding: 5rem 0;
    background: var(--black) !important;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    min-height: 60vh;
}

.hidden-section {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 300;
    color: var(--primary-gold);
    margin-bottom: 3rem;
}

.page-content {
    max-width: 100%;
}

.page-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--black) !important;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

.features .container {
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.feature-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mission Section */
.mission-highlights {
    margin-top: 3rem;
}

.mission-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.mission-item-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.3rem;
}

.mission-item-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Products Section */
.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.product-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.product-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.3rem;
}

.product-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-info {
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.contact-item-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-item-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-message {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

/* Work in Progress Message */
.work-in-progress-message {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slideshow Section */
.slideshow-section {
    padding: 4rem 0;
    background: var(--black) !important;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

.slideshow-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 350px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.slide-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 300;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.slide-description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
}

.slideshow-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
    width: calc(100% - 2rem);
}

.slide-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slide-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.indicator {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Footer */
.footer {
    background: var(--black) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem 0;
    width: 100%;
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
    background-color: rgba(26, 26, 26, 0.98) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    z-index: 10000 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
}

.modal-content {
    position: relative;
    z-index: 10001;
    width: 100%;
}

.modal-title {
    color: var(--primary-gold) !important;
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block !important;
    visibility: visible !important;
}

.modal-text {
    color: var(--text-gray) !important;
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
    display: block !important;
    visibility: visible !important;
}

/* Cursor Effects - Disabled on Mobile */
.cursor-trail,
.cursor-sparkles {
    display: none;
}

@media (min-width: 769px) {
    .cursor-trail,
    .cursor-sparkles {
        display: block;
    }
}

/* Mobile Optimization - Reduce animations for performance */
@media (max-width: 768px) {
    body::before {
        background-size: 150% 150%;
        animation: starTwinkle 10s ease-in-out infinite, starMove 50s linear infinite;
    }
    
    body::after {
        animation: backgroundGlow 15s ease-in-out infinite;
        opacity: 0.4;
    }
    
    .hero-background {
        animation: backgroundPulse 10s ease-in-out infinite, backgroundFloat 20s ease-in-out infinite;
    }
    
    .floating-particles::before,
    .floating-particles::after {
        animation-duration: 25s;
        box-shadow: 
            0 0 8px rgba(212, 175, 55, 0.6),
            100px 200px 0 rgba(255, 215, 0, 0.4),
            200px 100px 0 rgba(212, 175, 55, 0.3),
            300px 300px 0 rgba(255, 215, 0, 0.2),
            400px 150px 0 rgba(212, 175, 55, 0.4);
    }
}

/* Reduce animations on very small screens for better performance */
@media (max-width: 480px) {
    body::before {
        animation: starTwinkle 12s ease-in-out infinite;
    }
    
    body::after {
        animation: backgroundGlow 18s ease-in-out infinite;
        opacity: 0.3;
    }
    
    .hero-background {
        animation: backgroundPulse 12s ease-in-out infinite;
    }
    
    .floating-particles {
        display: none; /* Disable floating particles on very small screens */
    }
}

/* ============================================
   MOBILE RESPONSIVE - NO OVERLAPS, PROPER SPACING
   ============================================ */

@media (max-width: 768px) {
    html, body {
        background: #000 !important;
        background-color: #000 !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo {
        max-width: 120px !important;
        max-height: 45px !important;
        mix-blend-mode: normal !important;
    }
    
    .logo-wrapper {
        height: 40px !important;
        max-width: 120px;
    }
    
    /* HERO - MAIN FOCUS ON MOBILE */
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding-top: 60px !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero .container {
        padding: 1.5rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero .row {
        margin: 0 !important;
        width: 100% !important;
    }
    
    .hero .col-12 {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 14vw, 4rem) !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
        margin-top: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 90% !important;
        display: block !important;
    }
    
    /* Page Sections - Mobile */
    .page-section {
        padding: 3rem 0 !important;
        background: var(--black) !important;
        background-color: var(--black) !important;
        min-height: auto !important;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        margin-bottom: 2rem !important;
        color: var(--primary-gold) !important;
    }
    
    .page-text {
        font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
        color: var(--text-gray) !important;
    }
    
    .mission-item,
    .product-card,
    .contact-item {
        margin-bottom: 1.5rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        background-color: rgba(255, 255, 255, 0.02) !important;
    }
    
    .mission-item-title,
    .product-title,
    .contact-item-title {
        color: var(--primary-gold) !important;
    }
    
    .mission-item-text,
    .product-text,
    .contact-item-text {
        color: var(--text-gray) !important;
    }
    
    /* Features - Proper Spacing */
    .features {
        padding: 3rem 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .features .container {
        padding: 0 1rem !important;
    }
    
    .features .row {
        margin: 0 !important;
    }
    
    .feature-card {
        margin-bottom: 1.5rem !important;
        padding: 2rem 1.5rem !important;
    }
    
    .feature-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .feature-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Slideshow - Proper Spacing */
    .slideshow-section {
        padding: 3rem 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .slideshow-section .container {
        padding: 0 1rem !important;
    }
    
    .slideshow-wrapper {
        min-height: 350px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .slide {
        padding: 2rem 1.5rem !important;
    }
    
    .slide-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .slide-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
    
    .slide-description {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
        line-height: 1.6 !important;
    }
    
    .slideshow-controls {
        bottom: 0.75rem !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem !important;
        width: calc(100% - 1rem) !important;
    }
    
    .slide-btn {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .indicator {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
    }
    
    .footer .container {
        padding: 0 1rem !important;
    }
    
    /* Modal */
    .modal-overlay {
        z-index: 9999 !important;
    }
    
    .modal-overlay.show {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .modal {
        padding: 2rem 1.5rem !important;
        width: 95% !important;
        max-width: 95% !important;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%) !important;
        background-color: rgba(26, 26, 26, 0.98) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10000 !important;
        position: relative !important;
    }
    
    .modal-content {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
    }
    
    .modal-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        color: #D4AF37 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .modal-text {
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .modal-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .modal-text {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        max-width: 100px !important;
        max-height: 35px !important;
    }
    
    .logo-wrapper {
        height: 35px !important;
        max-width: 100px;
    }
    
    .hero {
        min-height: calc(100vh - 55px) !important;
        min-height: calc(100dvh - 55px) !important;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 14vw, 2.8rem) !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 4vw, 1rem) !important;
    }
    
    .features {
        padding: 2.5rem 0 !important;
    }
    
    .feature-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .feature-icon {
        font-size: 2rem !important;
    }
    
    .feature-title {
        font-size: 1.1rem !important;
    }
    
    .feature-text {
        font-size: 0.85rem !important;
    }
    
    .slideshow-section {
        padding: 2.5rem 0 !important;
    }
    
    .slideshow-wrapper {
        min-height: 300px !important;
    }
    
    .slide {
        padding: 1.5rem 1rem !important;
    }
    
    .slide-title {
        font-size: clamp(1.3rem, 7vw, 1.7rem) !important;
    }
    
    .slide-description {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem) !important;
    }
    
    .slideshow-controls {
        bottom: 0.5rem !important;
        gap: 0.5rem !important;
    }
    
    .slide-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        font-size: 1rem !important;
    }
    
    .footer {
        padding: 1.5rem 0 !important;
    }
}

/* iOS Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    html, body {
        background: #000 !important;
        background-color: #000 !important;
    }
    
    .hero {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        min-height: calc(-webkit-fill-available - 60px);
    }
    
    .nav-logo {
        mix-blend-mode: normal !important;
    }
}

/* Prevent All Overlaps */
@media (max-width: 1024px) {
    * {
        max-width: 100%;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    [class*="col-"] {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}
