/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2a1b3d 0%, #44318d 50%, #6b4c9a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, #1a0d2e 0%, #2a1b3d 50%, #1a0d2e 100%);
    background-size: 200% 200%;
    animation: headerGradient 8s ease-in-out infinite;
    padding: 5px 0;
    border-bottom: 3px solid #8b5cf6;
    position: relative;
    overflow: hidden;
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes headerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-image {
    height: 200px;
    width: auto;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

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

/* Navigation */
.main-navigation {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 13, 46, 0.95) 100%);
    padding: 0;
    border-bottom: 2px solid #8b5cf6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 5px;
    padding: 8px 20px;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.nav-link.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-color: #fbbf24;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

/* Search button removed for cleaner navigation */

/* Hero Section */
.hero-section {
    padding: 40px 20px 40px 20px;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 30%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.01) 35px,
            rgba(255, 255, 255, 0.01) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(139, 92, 246, 0.02) 35px,
            rgba(139, 92, 246, 0.02) 70px
        );
    margin-bottom: 0;
}

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

/* Circular Navigation Grid */
.circular-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.circle-nav-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.circle-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.5) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circle-nav-item:hover {
    transform: scale(1.08) translateY(-8px);
    border-color: #fbbf24;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6), 
        0 0 25px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.circle-nav-item:hover::before {
    opacity: 1;
}

.circle-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.circle-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9), 
        0 0 12px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(139, 92, 246, 0.3);
    letter-spacing: 1.2px;
    line-height: 1.2;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 14px;
    border-radius: 25px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .circular-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .circle-nav-item {
        width: 160px;
        height: 160px;
    }
    
    .logo-image {
        height: 150px;
    }
    
    .nav-menu {
        gap: 3px;
        padding: 6px 15px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
    }
    
    /* Add fade indicators on edges */
    .main-navigation::before,
    .main-navigation::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 2;
    }
    
    .main-navigation::before {
        left: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    }
    
    .main-navigation::after {
        right: 0;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    }
    
    .nav-menu {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        gap: 10px;
        padding: 8px 15px;
        min-width: max-content;
        overflow-x: visible;
        display: flex !important;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 6px;
        white-space: nowrap;
        flex-shrink: 0;
        display: inline-block !important;
    }
    
    /* Style the scrollbar for navigation */
    .main-navigation::-webkit-scrollbar {
        height: 4px;
    }
    
    .main-navigation::-webkit-scrollbar-track {
        background: rgba(139, 92, 246, 0.1);
    }
    
    .main-navigation::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.5);
        border-radius: 2px;
    }
    
    /* Search button removed */
    
    .circular-nav-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 0 20px;
        width: 100%;
    }
    
    .circle-nav-item {
        width: 220px;
        height: 220px;
    }
    
    /* Circle titles removed - using built-in image labels */
    
    .logo-image {
        height: 130px;
    }
    
    .logo-section {
        padding: 5px 0;
    }
    
    .contact-info {
        font-size: 12px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .circular-nav-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .circle-nav-item {
        width: 260px;
        height: 260px;
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .logo-image {
        height: 120px;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        font-size: 13px;
    }
    
    /* Search button removed */
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding: 0;
    position: relative;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    border-left: 4px solid #8b5cf6;
    padding-left: 20px;
    position: relative;
    letter-spacing: 2px;
}

.about-story {
    color: rgba(255, 255, 255, 0.9);
    padding-top: 10px;
}

.story-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
}

.story-paragraph strong {
    color: white;
    font-weight: 700;
    background: rgba(139, 92, 246, 0.15);
    padding: 3px 8px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(139, 92, 246, 0.2);
    display: inline-block;
    line-height: 1.2;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.story-paragraph em {
    color: #a855f7;
    font-style: italic;
    font-weight: 500;
}

.owner-story {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    padding: 30px;
    border-radius: 0;
    border-left: 3px solid #8b5cf6;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.15);
    position: relative;
}

.owner-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 12px;
}

.services-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    padding: 25px;
    border-radius: 0;
    border-left: 3px solid #8b5cf6;
    margin-top: 30px;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.15);
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.8;
}

/* About Image Section */
.about-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

/* About Image Carousel */
.about-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.carousel-slide .team-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(10, 0, 20, 0.8);
}

.image-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    height: 500px;
    background: rgba(10, 0, 20, 0.8);
}

.image-container:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.3);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-container:hover .team-photo {
    transform: scale(1.05);
}

.overlay-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overlay-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Achievements */
.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    border: 1px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.achievement-item {
    background: transparent;
    padding: 30px 15px;
    border-radius: 0;
    text-align: center;
    border-right: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.achievement-item:last-child {
    border-right: none;
}

.achievement-item:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 
        inset 0 0 30px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(139, 92, 246, 0.5);
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(139, 92, 246, 0.4);
}

.achievement-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Smooth Scroll Animations - Subtle & Professional */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for multiple elements */
.stagger {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle delays for staggered elements */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }

/* Apply Now Section */
.apply-now-section {
    margin-top: 30px;
    width: 100%;
    border: 1px solid rgba(139, 92, 246, 0.5);
    background: #000000;
    padding: 0;
    position: relative;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.apply-now-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    display: block;
    position: relative;
}

.apply-now-btn:hover {
    filter: brightness(1.2);
}

.apply-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.apply-now-btn:hover::after {
    transform: translateX(100%);
}

.apply-now-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.95) 0%, rgba(42, 27, 61, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

.modal-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.apply-form {
    padding: 30px;
}

.apply-submit-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border: none;
    border-radius: 15px;
    padding: 16px 35px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px auto 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.apply-submit-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.apply-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Products Section */
.products-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0014 0%, #1a0d2e 100%);
    overflow: hidden;
}

.products-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: rgba(26, 13, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1f4e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-tags .tag {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive for Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Pricing Video Background */
.pricing-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pricing-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(1px) brightness(0.8) contrast(1.3) saturate(1.2);
    opacity: 1;
    z-index: 1;
}

.pricing-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 25%,
        rgba(10, 0, 20, 0.5) 50%,
        rgba(26, 13, 46, 0.4) 75%,
        rgba(139, 92, 246, 0.2) 100%
    );
    backdrop-filter: blur(1px);
    z-index: 2;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(139, 92, 246, 0.01) 40px,
            rgba(139, 92, 246, 0.01) 80px
        );
    pointer-events: none;
}

.pricing-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Membership Plans */
.membership-plans {
    margin-bottom: 80px;
}

.plans-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 0;
    padding: 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.star-border:hover::before {
    opacity: 0;
}

/* Featured Card */
.pricing-card.featured {
    border-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
}

/* Star Border for Premium Card */
.pricing-card.star-border {
    border: 2px solid #fbbf24;
    position: relative;
    box-shadow: 
        0 0 40px rgba(251, 191, 36, 0.3),
        inset 0 0 30px rgba(251, 191, 36, 0.05);
}

.pricing-card.star-border:hover {
    border-color: #fbbf24;
    box-shadow: 
        0 20px 60px rgba(251, 191, 36, 0.5),
        0 0 50px rgba(251, 191, 36, 0.3),
        inset 0 0 40px rgba(251, 191, 36, 0.08);
}

.pricing-card.star-border:hover .star-border-svg {
    filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.8));
}

/* Star Price Container */
.plan-price-container {
    margin: 20px 0;
}

.star-price-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-border-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.5));
}

.star-price-wrapper .plan-price {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Add padding to featured card header to make room for badge */
.pricing-card.featured .card-header {
    padding-top: 60px;
    border-radius: 0;
}

.pricing-card.star-border .card-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.pricing-card.star-border .plan-name {
    font-size: 2rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(251, 191, 36, 0.6),
        0 0 40px rgba(139, 92, 246, 0.6);
}

/* Bronze Star Border Styling */
.pricing-card.bronze-star-border {
    border: 2px solid #cd7f32;
    position: relative;
    box-shadow: 
        0 0 40px rgba(205, 127, 50, 0.3),
        inset 0 0 30px rgba(205, 127, 50, 0.05);
}

.pricing-card.bronze-star-border:hover {
    border-color: #cd7f32;
    box-shadow: 
        0 20px 60px rgba(205, 127, 50, 0.5),
        0 0 50px rgba(205, 127, 50, 0.3),
        inset 0 0 40px rgba(205, 127, 50, 0.08);
}

.pricing-card.bronze-star-border:hover::before {
    opacity: 0;
}

.pricing-card.bronze-star-border .card-header {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid rgba(205, 127, 50, 0.3);
}

.pricing-card.bronze-star-border .plan-name {
    font-size: 2rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(205, 127, 50, 0.6),
        0 0 40px rgba(205, 127, 50, 0.4);
}

.bronze-star {
    filter: drop-shadow(0 0 15px rgba(205, 127, 50, 0.5));
}

.pricing-card.bronze-star-border:hover .bronze-star {
    filter: drop-shadow(0 0 25px rgba(205, 127, 50, 0.8));
}

.bronze-badge {
    background: #cd7f32;
    color: #ffffff;
    border-bottom: 2px solid #b8732d;
    box-shadow: 
        0 4px 15px rgba(205, 127, 50, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* SPA Club White/Silver Styling */
.pricing-card.spa-star-border {
    border: 2px solid #e0e0e0;
    position: relative;
    box-shadow: 
        0 0 40px rgba(224, 224, 224, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.pricing-card.spa-star-border:hover {
    border-color: #ffffff;
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(224, 224, 224, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.08);
}

.pricing-card.spa-star-border:hover::before {
    opacity: 0;
}

.pricing-card.spa-star-border .card-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid rgba(224, 224, 224, 0.3);
}

.pricing-card.spa-star-border .plan-name {
    font-size: 2rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(224, 224, 224, 0.4);
}

.spa-star {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.pricing-card.spa-star-border:hover .spa-star {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

.spa-badge {
    background: #e0e0e0;
    color: #1a0d2e;
    border-bottom: 2px solid #c0c0c0;
    box-shadow: 
        0 4px 15px rgba(224, 224, 224, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* TAN Club Pink Styling */
.pricing-card.tan-star-border {
    border: 2px solid #ec4899;
    position: relative;
    box-shadow: 
        0 0 40px rgba(236, 72, 153, 0.3),
        inset 0 0 30px rgba(236, 72, 153, 0.05);
}

.pricing-card.tan-star-border:hover {
    border-color: #ec4899;
    box-shadow: 
        0 20px 60px rgba(236, 72, 153, 0.5),
        0 0 50px rgba(236, 72, 153, 0.3),
        inset 0 0 40px rgba(236, 72, 153, 0.08);
}

.pricing-card.tan-star-border:hover::before {
    opacity: 0;
}

.pricing-card.tan-star-border .card-header {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-bottom: 2px solid rgba(236, 72, 153, 0.3);
}

.pricing-card.tan-star-border .plan-name {
    font-size: 2rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(236, 72, 153, 0.6),
        0 0 40px rgba(236, 72, 153, 0.4);
}

.tan-star {
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.5));
}

.pricing-card.tan-star-border:hover .tan-star {
    filter: drop-shadow(0 0 25px rgba(236, 72, 153, 0.8));
}

.tan-badge {
    background: #ec4899;
    color: #ffffff;
    border-bottom: 2px solid #db2777;
    box-shadow: 
        0 4px 15px rgba(236, 72, 153, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Ensure featured card is same size on mobile */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none !important;
        scale: 1 !important;
    }
    
    .star-price-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .star-price-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .star-price-wrapper .price-amount {
        font-size: 2.8rem;
    }
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fbbf24;
    color: #000000;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 0;
    box-shadow: 
        0 4px 15px rgba(251, 191, 36, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: center;
    border-bottom: 2px solid #f59e0b;
}

.card-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 30px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.plan-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: -12px 0 25px 0;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 15px;
    line-height: 1;
}

.price-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fbbf24;
    margin-right: 3px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
}

.price-period {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.enrollment-fee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.card-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    padding-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.features-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pay-As-You-Go Section - Reduced Prominence */
.payg-section {
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Pay-As-You-Go Toggle Button */
.payg-toggle-btn {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    padding: 18px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.payg-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.payg-toggle-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.payg-toggle-icon {
    width: 28px;
    height: 28px;
    color: #8b5cf6;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.payg-toggle-btn[aria-expanded="true"] .payg-toggle-icon {
    transform: rotate(180deg);
}

.payg-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    max-height: 0;
}

.payg-content.expanded {
    opacity: 1;
    max-height: 2000px;
}

.payg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.payg-category {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.01) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 0;
    padding: 18px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.08),
        inset 0 0 10px rgba(139, 92, 246, 0.02);
}

.payg-category:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.category-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 12px;
}

.payg-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0;
    transition: all 0.3s ease;
}

.payg-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.service-name {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.service-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
}

/* Call to Action */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 0;
    padding: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.cta-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    border-color: #8b5cf6;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        inset 0 0 10px rgba(139, 92, 246, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Pricing Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .payg-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-container {
        padding: 0 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
        max-width: 100%;
        min-height: auto;
        width: 100%;
    }
    
    .pricing-card {
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix featured badge position on mobile */
    .featured-badge {
        padding: 8px 15px;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    /* Adjust featured card header padding on mobile */
    .pricing-card.featured .card-header {
        padding-top: 55px;
    }
    
    .card-header {
        padding: 25px 20px;
    }
    
    .card-body {
        padding: 25px 20px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
    
    .plans-title,
    .payg-title {
        font-size: 2rem;
    }
    
    .payg-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payg-category {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-cta {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 15px;
    }
    
    .pricing-container {
        padding: 0 10px;
    }
    
    .card-header {
        padding: 20px 15px;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .plans-title,
    .payg-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .payg-category {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .payg-item {
        padding: 15px;
    }
    
    .service-price {
        font-size: 1.5rem;
    }
    
    .pricing-cta {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Products Section */
.products-section {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Products Video Background */
.products-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.products-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.3;
    filter: saturate(1.5) brightness(0.7);
}

.products-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(10, 0, 20, 0.7) 0%,
        rgba(10, 0, 20, 0.85) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    mix-blend-mode: multiply;
    z-index: 1;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Products Carousel */
.products-carousel-container {
    margin-top: 50px;
    position: relative;
    overflow: visible;
    padding: 30px 0;
    z-index: 5;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    width: 100%;
    padding: 0 70px;
    margin: 0 auto;
}

.carousel-viewport {
    width: 100%;
    overflow-x: auto; /* Enable native scrolling */
    overflow-y: hidden;
    position: relative;
    padding: 20px 0 30px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.products-carousel {
    display: flex;
    gap: 30px;
    /* Removed transform transition - using native scroll instead */
    overflow: visible;
    padding-right: 60px; /* Increased padding to prevent last item cutoff */
}

.products-carousel .product-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    scroll-snap-align: start;
}

/* Style scrollbar for better visibility on desktop */
.carousel-viewport::-webkit-scrollbar {
    height: 10px;
}

.carousel-viewport::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.carousel-viewport::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 10px;
}

.carousel-viewport::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

.product-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 13, 46, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(26, 13, 46, 0.95) 100%);
    z-index: 10;
    position: relative;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.5) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* Fix for FNS Primer image zoom */
.fns-primer-image {
    object-fit: contain;
    object-position: center;
    transform: scale(0.85);
}

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

/* Specific fix for Divine product image */
.divine-image {
    object-fit: cover !important;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.product-card:hover .fns-primer-image {
    transform: scale(0.9);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.product-brand {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(139, 92, 246, 0.8);
    padding: 8px 16px;
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .feature-tag {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
    color: white;
}

/* Carousel Navigation */
.carousel-wrapper {
    position: relative;
}

.carousel-btn {
    display: none; /* Hide buttons on desktop - using scroll instead */
}

.carousel-btn.prev-btn {
    left: -30px;
}

.carousel-btn.next-btn {
    right: -30px;
}

/* Button container - always hidden, buttons positioned absolutely on desktop */
.carousel-buttons-container {
    display: none;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9) 0%, rgba(245, 158, 11, 0.9) 100%);
    border-color: #fbbf24;
    transform: scale(1.15);
    box-shadow: 
        0 15px 40px rgba(251, 191, 36, 0.4),
        0 0 30px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.carousel-btn:active {
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
    transform: scale(1.2);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.indicator:hover {
    border-color: #8b5cf6;
    transform: scale(1.2);
}

/* Products Section Responsive */
@media (max-width: 1200px) {
    .products-carousel {
        gap: 25px;
    }
    
    .products-carousel .product-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .carousel-wrapper {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    /* Mobile video background adjustments */
    .products-bg-video {
        opacity: 0.2;
        filter: saturate(1.2) brightness(0.6);
    }
    
    .products-video-overlay {
        background: linear-gradient(
            180deg, 
            rgba(10, 0, 20, 0.8) 0%,
            rgba(10, 0, 20, 0.9) 50%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    .products-container {
        padding: 0;
    }
    
    .products-container .section-title,
    .products-container .section-subtitle {
        padding: 0 20px;
    }
    
    .products-carousel-container {
        padding: 10px 0;
        position: relative;
        margin: 0;
        width: 100%;
    }
    
    .carousel-wrapper {
        padding: 0;
        position: relative;
    }
    
    /* Hide button container on mobile since we can scroll */
    .carousel-buttons-container {
        display: none !important;
    }
    
    /* Enable smooth horizontal scrolling on mobile */
    .carousel-viewport {
        overflow-x: auto;
        overflow-y: hidden; /* Prevent vertical scroll within carousel */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 20px 15px;
        margin: 0 -15px;
        scroll-behavior: smooth;
    }
    
    .products-carousel {
        display: flex;
        gap: 20px;
        padding: 0 10px;
        transition: none; /* Disable transform transition for touch scrolling */
    }
    
    .products-carousel .product-card {
        scroll-snap-align: center;
        flex: 0 0 85%; /* Show part of next card */
        min-width: 85%;
        max-width: 85%;
    }
    
    /* Add padding at the end to prevent last card from being cut off */
    .products-carousel::after {
        content: '';
        flex: 0 0 10px;
        min-width: 10px;
    }
    
    /* Style mobile scrollbar */
    .carousel-viewport::-webkit-scrollbar {
        height: 6px;
    }
    
    .carousel-viewport::-webkit-scrollbar-track {
        background: rgba(139, 92, 246, 0.1);
        border-radius: 3px;
    }
    
    .carousel-viewport::-webkit-scrollbar-thumb {
        background: rgba(139, 92, 246, 0.4);
        border-radius: 3px;
    }
    
    .carousel-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .carousel-btn {
        position: static;
        width: 40px;
        height: 40px;
        align-self: center;
    }
    
    .prev-btn {
        order: -1;
    }
    
    .next-btn {
        order: 1;
    }
    
    .product-card {
        min-height: 350px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 15px;
    }
    
    .products-container {
        padding: 0 10px;
    }
    
    .product-card {
        min-height: 320px;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .carousel-indicators {
        margin-top: 30px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Product Modal */
/* FAQ Modal Styles */
.faq-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.faq-modal-content {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(44, 23, 77, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.faq-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.faq-modal-close:hover {
    background: rgba(139, 92, 246, 0.4);
    transform: rotate(90deg);
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-modal-content {
        padding: 30px 20px;
        margin: 20px auto;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-modal-content {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-close:hover {
    background: rgba(251, 191, 36, 0.8);
    border-color: #fbbf24;
    transform: rotate(90deg) scale(1.1);
}

.product-modal-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
}

.product-modal-image {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
}

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

.product-modal-brand {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
}

.product-modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    margin: 0;
}

.product-modal-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.product-modal-features h3,
.product-modal-ingredients h3,
.product-modal-usage h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.product-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-modal-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-modal-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 1.2rem;
}

.product-modal-ingredients p,
.product-modal-usage p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.product-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.product-modal-tags span {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .product-modal-inner {
        gap: 20px;
    }
    
    .product-modal-image {
        height: 200px;
    }
    
    .product-modal-details {
        padding: 25px 20px;
    }
    
    .product-modal-title {
        font-size: 2rem;
    }
    
    .product-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Smoky Section Dividers */
.neon-divider {
    height: 150px;
    position: relative;
    overflow: visible;
    background: transparent;
    margin: -50px 0;
    z-index: 1;
}

.neon-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: 
        radial-gradient(ellipse 100% 50% at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 80% 40% at 80% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 120% 60% at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    filter: blur(40px);
    opacity: 0.6;
    animation: smokeDrift 20s ease-in-out infinite;
}

.neon-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: 
        radial-gradient(ellipse 90% 40% at 30% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 50% at 70% 40%, rgba(168, 85, 247, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse 80% 30% at 50% 50%, rgba(251, 191, 36, 0.02) 0%, transparent 60%);
    filter: blur(60px);
    opacity: 0.5;
    animation: smokeFloat 25s ease-in-out infinite reverse;
    transform: translateY(-10px);
}

.neon-line {
    display: none; /* Hide the solid line for cleaner smoke effect */
}

@keyframes smokyBreathe {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes smokyPulse {
    0% {
        opacity: 0.2;
        transform: scaleY(0.8);
    }
    100% {
        opacity: 0.5;
        transform: scaleY(1.2);
    }
}

@keyframes smokyFlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scaleX(0.8);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleX(1.2);
    }
}

@keyframes smokeDrift {
    0% {
        transform: translateX(-5%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(5%) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translateX(-5%) scale(1);
        opacity: 0.6;
    }
}

@keyframes smokeFloat {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 0.5;
    }
    33% {
        transform: translateY(10px) translateX(-3%);
        opacity: 0.3;
    }
    66% {
        transform: translateY(-5px) translateX(3%);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10px) translateX(0);
        opacity: 0.5;
    }
}

/* Smoky Divider Responsive */
@media (max-width: 768px) {
    .neon-divider {
        height: 100px;
        margin: -30px 0;
    }
    
    .neon-divider::before,
    .neon-divider::after {
        filter: blur(30px);
    }
}

@media (max-width: 480px) {
    .neon-divider {
        height: 80px;
        margin: -20px 0;
    }
    
    .neon-divider::before,
    .neon-divider::after {
        filter: blur(25px);
    }
}

/* Phone Links */
.phone-link, .header-phone-link, .footer-phone {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover, .header-phone-link:hover, .footer-phone:hover {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.header-phone-link, .header-email-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.header-phone-link:hover, .header-email-link:hover {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

/* Map Overlay & Directions Button */
.location-map {
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.directions-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.directions-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #000000 0%, #0a0014 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(139, 92, 246, 0.02) 40px,
            rgba(139, 92, 246, 0.02) 80px
        );
    pointer-events: none;
}

.contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
    width: 100%;
}

.contact-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.contact-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 0 10px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.scroll-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    padding-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.section-subtitle.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant animated underline for subtitles */
.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.6) 15%, 
        rgba(251, 191, 36, 1) 50%, 
        rgba(139, 92, 246, 0.6) 85%, 
        transparent 100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.section-subtitle.scroll-visible::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hover effect for titles */
.section-title:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.4));
    transition: all 0.3s ease;
}

/* Location Cards */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1400px;
}

.location-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-radius: 0;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.location-card:hover::before {
    opacity: 1;
}

.location-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.location-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.location-badge {
    background: transparent;
    color: #8b5cf6;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #8b5cf6;
    display: inline-block;
}

.location-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: #8b5cf6;
    margin-right: 12px;
    flex-shrink: 0;
}

.location-map {
    border-radius: 0;
    overflow: hidden;
    height: 200px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.2);
    margin-top: auto;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-radius: 0;
    padding: 50px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    width: 100%;
    max-width: 100%;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 0;
    padding: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #2a1b3d;
    color: white;
}

/* Checkbox Group Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #8b5cf6;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text {
    color: white;
    font-weight: 600;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border: 2px solid #8b5cf6;
    border-radius: 0;
    padding: 18px 40px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        inset 0 0 10px rgba(139, 92, 246, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-form-section {
        padding: 40px;
        max-width: 700px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-form-section {
        padding: 30px;
        max-width: 100%;
    }
    
    .location-card {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .location-map {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-main-content {
        gap: 30px;
    }
    
    .locations-grid {
        gap: 15px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .contact-form-section {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .form-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-section {
        padding: 70px 20px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-text .section-title {
        font-size: 2.2rem;
    }
    
    .achievements {
        gap: 12px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
        text-align: left;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .owner-story {
        padding: 25px;
        margin: 25px 0;
    }
    
    .owner-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .services-highlight {
        padding: 20px;
        margin-top: 25px;
    }
    
    .achievements {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    
    .achievement-item {
        padding: 20px 8px;
        border-right: 2px solid #8b5cf6;
    }
    
    .achievement-item:last-child {
        border-right: none;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
    
    .apply-now-section {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 0;
    }
    
    .about-content {
        gap: 0;
    }
    
    .about-text {
        padding: 30px 15px;
    }
    
    .about-image {
        padding: 30px 15px;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .story-paragraph {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .owner-story {
        padding: 18px;
        margin: 18px 0;
    }
    
    .owner-title {
        font-size: 1.1rem;
    }
    
    .services-highlight {
        padding: 16px;
        margin-top: 16px;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .achievement-item {
        padding: 20px 15px;
        border-right: none;
        border-bottom: 2px solid #8b5cf6;
    }
    
    .achievement-item:last-child {
        border-bottom: none;
    }
    
    .achievement-number {
        font-size: 2.2rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
    
    /* Apply Now Button Responsive */
    .apply-now-section {
        margin-top: 25px;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .apply-form {
        padding: 20px;
    }
    
    .apply-now-section {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .apply-form {
        padding: 15px;
    }
    
    .apply-now-section {
        margin-top: 15px;
    }
}

/* Clean Footer */
.main-footer {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 80px; /* Space for bottom nav */
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding: 50px 0 30px;
    align-items: start;
}

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

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.7));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer-location h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-location p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.footer-phone {
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.footer-hours h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 13, 46, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-top: 2px solid #8b5cf6;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-nav.visible {
    transform: translateY(0);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 8px 20px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: white;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.3),
        inset 0 0 10px rgba(139, 92, 246, 0.2);
}

.bottom-nav-item.active {
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.bottom-nav-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav-item:hover .bottom-nav-icon,
.bottom-nav-item.active .bottom-nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.bottom-nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-locations {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        padding: 40px 0 25px;
        gap: 30px;
        grid-template-columns: 1fr;
    }
    
    .footer-locations {
        grid-template-columns: 1fr;
        gap: 25px;
        order: 2;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-contact {
        order: 3;
    }
    
    .footer-logo {
        height: 120px;
    }
    
    .main-footer {
        margin-bottom: 70px;
    }
    
    .bottom-nav-container {
        padding: 6px 15px;
    }
    
    .bottom-nav-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .bottom-nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .bottom-nav-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        padding: 30px 0 20px;
        gap: 30px;
    }
    
    .footer-brand {
        margin-bottom: 10px;
    }
    
    .footer-logo {
        height: 100px;
        margin-bottom: 15px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-location {
        padding: 20px;
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .footer-location:last-child {
        margin-bottom: 0;
    }
    
    .footer-location h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #8b5cf6;
    }
    
    .footer-location p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-phone {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .footer-hours {
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .footer-hours h4 {
        font-size: 1.1rem;
        color: #8b5cf6;
        margin-bottom: 15px;
    }
    
    .footer-hours p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .main-footer {
        margin-bottom: 65px;
    }
    
    .bottom-nav-container {
        padding: 5px 10px;
    }
    
    .bottom-nav-item {
        padding: 5px 6px;
        min-width: 45px;
    }
    
    .bottom-nav-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 2px;
    }
    
    .bottom-nav-label {
        font-size: 0.6rem;
    }
}

/* Beds/Services Section */
.beds-services-section {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

/* Beds Location Switcher */
.beds-location-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 20px;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-arrow-btn {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #8b5cf6;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.location-arrow-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-color: #fbbf24;
    color: white;
    transform: scale(1.1);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.4);
}

.location-arrow-btn svg {
    width: 28px;
    height: 28px;
}

.current-beds-location {
    text-align: center;
    flex: 1;
}

.beds-location-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4);
}

.beds-location-address {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 5px 0;
}

.beds-location-phone {
    font-size: 1.1rem;
    color: #8b5cf6;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.beds-location-count {
    font-size: 0.9rem;
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Location Indicators */
.location-indicators {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0 40px;
}

.location-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
}

.location-dot:hover {
    background: rgba(139, 92, 246, 0.5);
    border-color: #8b5cf6;
    transform: scale(1.2);
}

.location-dot.active {
    background: #fbbf24;
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    transform: scale(1.3);
}

.dot-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 92, 246, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.location-dot:hover .dot-tooltip {
    opacity: 1;
}

.beds-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(139, 92, 246, 0.02) 40px,
            rgba(139, 92, 246, 0.02) 80px
        );
    pointer-events: none;
}

.beds-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Beds Grid */
.beds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    transition: opacity 0.4s ease;
    min-height: 400px;
}

.beds-grid.transitioning {
    opacity: 0;
}

.bed-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.bed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bed-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(251, 191, 36, 0.2),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.bed-card:hover::before {
    opacity: 1;
}

/* Bed Image Container */
.bed-image-container {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bed-image {
    width: auto;
    height: 80%;
    max-width: 90%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 20px rgba(139, 92, 246, 0.4));
}

.bed-card:hover .bed-image {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.5));
}

/* Bed Overlay */
.bed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bed-card:hover .bed-overlay {
    opacity: 1;
}

.bed-level {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Bed Info */
.bed-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bed-name {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.bed-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Bed Features */
.bed-features {
    margin-bottom: 25px;
}

.bed-features .features-title {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.bed-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bed-features-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.bed-features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 1.2rem;
}

/* Bed Specs */
.bed-specs {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-icon {
    width: 18px;
    height: 18px;
    color: #8b5cf6;
    flex-shrink: 0;
}

/* Beds CTA Section */
.beds-cta {
    position: relative;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0014;
}

/* CTA Video Background */
.cta-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.cta-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    z-index: 1;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 0, 20, 0.5) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(10, 0, 20, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 3;
    padding: 50px;
    width: 100%;
}

.beds-cta .cta-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beds-cta .cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Beds Location Switcher Responsive */
@media (max-width: 768px) {
    .beds-location-switcher {
        gap: 20px;
        padding: 25px 20px;
        margin: 30px 0 15px;
    }
    
    .location-arrow-btn {
        width: 45px;
        height: 45px;
    }
    
    .location-arrow-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .beds-location-name {
        font-size: 1.5rem;
    }
    
    .beds-location-address {
        font-size: 0.9rem;
    }
    
    .beds-location-phone {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .beds-location-switcher {
        gap: 15px;
        padding: 20px 15px;
    }
    
    .location-arrow-btn {
        width: 40px;
        height: 40px;
    }
    
    .beds-location-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .beds-location-address,
    .beds-location-phone {
        font-size: 0.85rem;
    }
    
    .beds-location-count {
        font-size: 0.8rem;
    }
}

/* Beds Section Responsive */
@media (max-width: 1200px) {
    .beds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .beds-services-section {
        padding: 60px 0;
    }
    
    .beds-container {
        padding: 0 20px;
    }
    
    .beds-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bed-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .bed-image-container {
        height: 200px;
    }
    
    .bed-info {
        padding: 25px;
    }
    
    .bed-name {
        font-size: 1.5rem;
    }
    
    .bed-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .bed-features-list li {
        font-size: 0.9rem;
    }
    
    .bed-specs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .spec-item {
        font-size: 0.85rem;
    }
    
    .cta-content {
        padding: 40px 25px;
    }
    
    .beds-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .beds-cta .cta-text {
        font-size: 1rem;
    }
    
    .beds-cta {
        min-height: 400px;
        position: relative;
        overflow: hidden;
    }
    
    /* Simplified mobile video optimizations */
    .cta-video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .cta-bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: auto;
        min-width: 100vw;
        min-height: 100%;
        transform: translate(-50%, -50%) scale(1.8);
        object-fit: cover;
        filter: brightness(0.3) contrast(1.2);
    }
    
    .cta-video-overlay {
        background: linear-gradient(180deg,
            rgba(10, 0, 20, 0.85) 0%,
            rgba(139, 92, 246, 0.25) 50%,
            rgba(10, 0, 20, 0.9) 100%);
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .beds-services-section {
        padding: 50px 0;
    }
    
    .beds-container {
        padding: 0 15px;
    }
    
    .beds-grid {
        gap: 20px;
    }
    
    .bed-image-container {
        height: 180px;
    }
    
    .bed-image {
        height: 70%;
    }
    
    .bed-info {
        padding: 20px;
    }
    
    .bed-name {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .bed-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .bed-features .features-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .bed-features-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .spec-item {
        font-size: 0.8rem;
    }
    
    .spec-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Enhanced mobile video for small screens */
    .beds-cta {
        min-height: 350px;
        overflow: hidden;
    }
    
    .cta-bg-video {
        transform: translate(-50%, -50%) scale(2);
        min-width: 150vw;
    }
    
    .cta-content {
        padding: 30px 20px;
        position: relative;
        z-index: 3;
    }
    
    .beds-cta .cta-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(139, 92, 246, 0.6); /* Enhanced text shadow for readability */
    }
    
    .beds-cta .cta-text {
        font-size: 0.9rem;
        line-height: 1.5;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Add text shadow for better readability */
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile video poster fallback */
@media (max-width: 768px) {
    .cta-video-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a0d2e 0%, #8b5cf6 100%);
        z-index: 0;
    }
}

/* iOS Safari video fix */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .cta-bg-video {
            -webkit-transform: translate3d(-50%, -50%, 0) scale(1.8);
            transform: translate3d(-50%, -50%, 0) scale(1.8);
        }
    }
    
    @media (max-width: 480px) {
        .cta-bg-video {
            -webkit-transform: translate3d(-50%, -50%, 0) scale(2);
            transform: translate3d(-50%, -50%, 0) scale(2);
        }
    }
}

/* Ensure stagger animations work for beds */
.bed-card.stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bed-card.stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Extended stagger delays for 6 beds */
.bed-card.stagger-6 { 
    transition-delay: 0.3s; 
}

/* New Bed Badge Styles */
.new-bed-badge {
    position: relative;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 30px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    max-width: 280px;
    overflow: hidden;
}

.new-bed-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShimmer 3s linear infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 8px 30px rgba(251, 191, 36, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 40px rgba(251, 191, 36, 0.6),
            0 0 30px rgba(251, 191, 36, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes badgeShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.new-bed-badge:hover {
    transform: scale(1.05) translateY(-2px);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 
        0 12px 40px rgba(251, 191, 36, 0.6),
        0 0 40px rgba(251, 191, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.new-bed-badge:hover .badge-glow {
    opacity: 1;
}

.badge-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    animation: badgeIconFloat 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes badgeIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.badge-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a0d2e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.badge-subtitle {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(139, 92, 246, 0.6);
}

.badge-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a0d2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Bed Info Modal - Generic */
.bed-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

.bed-info-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.bed-info-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 80px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.4s ease;
}

.bed-info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
}

.bed-info-modal-close:hover {
    background: rgba(139, 92, 246, 0.8);
    border-color: #8b5cf6;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.bed-info-modal-inner {
    padding: 0;
}

.bed-info-modal-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
}

.bed-info-level-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.bed-info-modal-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
    text-shadow: 
        0 0 30px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4);
}

.bed-info-modal-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.bed-info-modal-image {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.modal-bed-info-image {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.3));
}

.bed-info-modal-body {
    padding: 40px;
}

.bed-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.bed-info-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #8b5cf6;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

/* X5 LUXURA Bed Modal */
.bed-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bed-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.bed-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 80px rgba(251, 191, 36, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bed-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
}

.bed-modal-close:hover {
    background: rgba(251, 191, 36, 0.8);
    border-color: #fbbf24;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.bed-modal-inner {
    padding: 0;
}

.bed-modal-header {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    position: relative;
}

.bed-modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0d2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.bed-modal-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
    text-shadow: 
        0 0 30px rgba(251, 191, 36, 0.6),
        0 0 60px rgba(251, 191, 36, 0.4);
}

.bed-modal-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.bed-modal-image {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.modal-bed-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(251, 191, 36, 0.3));
}

.bed-modal-body {
    padding: 40px;
}

.modal-section {
    margin-bottom: 40px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.modal-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-features-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(251, 191, 36, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
}

.modal-features-list li:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateX(5px);
}

.feature-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    color: #fbbf24;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.specs-grid .spec-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-label {
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-cta {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.modal-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.modal-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 30px 0;
}

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

.modal-cta-btn {
    padding: 16px 35px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-cta-btn.primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0d2e;
    border-color: #fbbf24;
    box-shadow: 
        0 0 20px rgba(251, 191, 36, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.modal-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.modal-cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Badge Responsive */
@media (max-width: 1024px) {
    .new-bed-badge {
        max-width: 240px;
        padding: 12px 16px;
    }
    
    .badge-title {
        font-size: 0.85rem;
    }
    
    .badge-subtitle {
        font-size: 1.1rem;
    }
    
    .badge-cta {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    
    .new-bed-badge {
        max-width: 100%;
        width: 100%;
    }
    
    .bed-modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .bed-modal-header {
        padding: 30px 20px 25px;
    }
    
    .bed-modal-title {
        font-size: 2rem;
    }
    
    .bed-modal-body {
        padding: 25px;
    }
    
    .modal-section-title {
        font-size: 1.4rem;
    }
    
    .benefits-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .new-bed-badge {
        padding: 10px 15px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
        top: -8px;
        right: -8px;
    }
    
    .bed-modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
    
    .bed-modal-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .bed-modal-image {
        padding: 20px;
    }
    
    .bed-modal-body {
        padding: 20px;
    }
    
    .modal-section {
        margin-bottom: 30px;
    }
    
    .modal-cta {
        padding: 25px 20px;
    }
    
    .modal-cta h3 {
        font-size: 1.5rem;
    }
}

/* Comprehensive Mobile Optimizations - Ensure Everything is Centered and Stacked */
@media (max-width: 768px) {
    /* Prevent horizontal scroll and ensure full width */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure all sections fit properly */
    section {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    /* Center all container elements */
    .hero-content,
    .about-container,
    .products-container,
    .pricing-container,
    .services-container,
    .contact-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
    }
    
    /* Stack and center all grid layouts */
    .pricing-grid,
    .services-grid,
    .contact-info-grid,
    .about-features,
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px;
        width: 100%;
    }
    
    /* Ensure cards are full width on mobile */
    .pricing-card,
    .pricing-card.featured,
    .service-card,
    .info-card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        min-height: auto !important;
    }
    
    /* Center text in all sections */
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle {
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix contact form width */
    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure modals fit screen */
    .product-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    /* Fix footer stacking */
    .footer-section {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    /* Fix any absolute positioned elements that might cause overflow */
    .carousel-buttons-container {
        position: relative !important;
        width: 100%;
    }
    
    /* Ensure circular nav is properly centered */
    .circular-nav {
        width: 100%;
        padding: 40px 0;
    }
    
    .circle-nav-item {
        margin: 0 auto;
    }
    
    /* Fix about section image container */
    .about-image {
        width: 100%;
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .image-container {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    /* Ensure spray tan options stack properly */
    .spray-tan-options {
        flex-direction: column !important;
        width: 100%;
        gap: 15px;
        align-items: center;
    }
    
    .spray-option {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Fix achievements section */
    .achievements {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
    
    .achievement-item {
        text-align: center;
    }
    
    /* Ensure all buttons are properly sized */
    .cta-button,
    .pricing-cta,
    .submit-btn {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
    
    /* Fix neon dividers on mobile */
    .neon-divider {
        width: 100%;
        overflow: hidden;
    }
}

/* ============================================
   WINTER HOURS ANNOUNCEMENT POPUP
   ============================================ */

.announcement-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.announcement-content {
    position: relative;
    background: #000000;
    border: 3px solid #8b5cf6;
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    padding: 0;
    box-shadow: 
        0 30px 80px rgba(139, 92, 246, 0.5),
        0 0 100px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: popupSlideUp 0.4s ease;
}

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

.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
}

.announcement-close:hover {
    background: rgba(139, 92, 246, 0.8);
    border-color: #8b5cf6;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.announcement-inner {
    padding: 50px 40px 40px;
    text-align: center;
}

.announcement-badge {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
}

.best-of-badge {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.6));
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.announcement-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    text-shadow: 
        0 0 30px rgba(139, 92, 246, 0.8),
        0 0 60px rgba(139, 92, 246, 0.6);
}

.announcement-subtitle {
    font-size: 1.1rem;
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 30px 0;
}

.announcement-hours {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 0 0 25px 0;
}

.hours-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.hours-item svg {
    width: 32px;
    height: 32px;
    color: #fbbf24;
    flex-shrink: 0;
}

.hours-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.hours-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hours-value {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-style: italic;
}

.hours-note svg {
    width: 20px;
    height: 20px;
    color: rgba(139, 92, 246, 0.6);
}

.hours-note p {
    margin: 0;
}

.announcement-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.location-item strong {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.location-item span {
    color: #8b5cf6;
    font-size: 0.9rem;
    font-weight: 600;
}

.location-divider {
    color: rgba(139, 92, 246, 0.5);
    font-size: 1.2rem;
}

.announcement-dismiss-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    margin-top: 10px;
}

.announcement-dismiss-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

/* Announcement Popup Responsive */
@media (max-width: 768px) {
    .announcement-content {
        max-width: 95%;
        border-width: 2px;
    }
    
    .announcement-inner {
        padding: 40px 25px 30px;
    }
    
    .best-of-badge {
        width: 140px;
    }
    
    .announcement-title {
        font-size: 1.8rem;
    }
    
    .hours-value {
        font-size: 1.5rem;
    }
    
    .announcement-locations {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .location-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .announcement-inner {
        padding: 35px 20px 25px;
    }
    
    .best-of-badge {
        width: 120px;
    }
    
    .announcement-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .announcement-subtitle {
        font-size: 1rem;
    }
    
    .hours-value {
        font-size: 1.3rem;
    }
    
    .announcement-dismiss-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   BOOKING SECTION STYLES
   ============================================ */

/* Booking Section */
.booking-section {
    background: linear-gradient(180deg, #0a0014 0%, #000000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Book Now Nav Link - Special Styling */
.nav-link.book-now-link {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    font-weight: 700;
    border-color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.nav-link.book-now-link:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

/* Location Selector */
.location-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.location-btn {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.location-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: #8b5cf6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.location-btn.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.location-icon {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.location-btn.active .location-icon {
    color: #fbbf24;
}

.location-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Day Navigation */
.day-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px;
}

.day-nav-btn {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.day-nav-btn:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.day-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.day-nav-btn svg {
    width: 20px;
    height: 20px;
}

.current-day-display {
    text-align: center;
    padding: 0 20px;
}

.day-name-large {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.date-display {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Today Button */
.today-btn-container {
    text-align: center;
    margin-bottom: 20px;
}

.today-btn {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.today-btn:hover {
    background: rgba(251, 191, 36, 0.25);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.today-btn svg {
    width: 18px;
    height: 18px;
}

/* Loading State */
.booking-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking-loading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Availability Summary */
.availability-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.summary-item.available {
    color: #8b5cf6;
}

.summary-item.booked {
    color: rgba(255, 255, 255, 0.5);
}

.summary-icon {
    font-size: 1.5rem;
}

/* Day Calendar Grid - 4 Column Layout */
.day-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    min-height: 400px;
}

.day-calendar.closed {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.day-closed-message {
    text-align: center;
    padding: 60px 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

/* Auto-Refresh Indicator */
.refresh-indicator {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(139, 92, 246, 0.95);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    pointer-events: none;
}

.refresh-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

.refresh-indicator svg {
    width: 16px;
    height: 16px;
    animation: refreshSpin 0.6s ease;
}

@keyframes refreshSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.time-slot-btn {
    width: 100%;
    padding: 15px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid #8b5cf6;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.time-slot-btn:hover:not(.booked) {
    background: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    transform: scale(1.02);
}

.time-slot-btn.booked {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot-btn.selected {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-color: #fbbf24;
    color: #000;
    font-weight: 800;
    box-shadow: 
        0 0 25px rgba(251, 191, 36, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: slotPulse 1.5s ease-in-out infinite;
}

@keyframes slotPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
    }
    50% {
        box-shadow: 0 0 35px rgba(251, 191, 36, 1);
    }
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.booking-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 30px 80px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2);
    animation: modalSlideUp 0.4s ease;
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-modal-close:hover {
    background: rgba(139, 92, 246, 0.8);
    transform: rotate(90deg) scale(1.1);
}

.booking-modal-inner {
    padding: 0;
}

.booking-modal-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 40px 30px 25px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.booking-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-selected-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.selected-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.selected-info-item svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.booking-form {
    padding: 30px;
}

.booking-note {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.booking-note svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.btn-cancel-booking {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-booking:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-confirm-booking {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #000;
    padding: 14px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.btn-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
}

.btn-confirm-booking svg {
    width: 18px;
    height: 18px;
}

/* Success Modal */
.booking-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.booking-success-content {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid #22c55e;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(34, 197, 94, 0.3);
    animation: modalSlideUp 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.booking-success-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.success-details {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-detail-row:last-child {
    border-bottom: none;
}

.success-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.success-value {
    color: white;
    font-weight: 700;
}

.btn-close-success {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-close-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Booking Section Responsive */
@media (max-width: 1024px) {
    .day-calendar {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .location-selector {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-container {
        padding: 0 20px;
    }
    
    .day-calendar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 0;
    }
    
    .day-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .day-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .day-name-large {
        font-size: 1.6rem;
    }
    
    .date-display {
        font-size: 1rem;
    }
    
    .location-btn {
        padding: 15px;
    }
    
    .location-name {
        font-size: 1.1rem;
    }
    
    .booking-modal-content {
        max-width: 95%;
    }
    
    .booking-modal-header {
        padding: 30px 20px 20px;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .booking-selected-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .refresh-indicator {
        bottom: 80px;
        right: 15px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .day-calendar {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .time-slot-btn {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .day-name-large {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .day-nav-btn span {
        display: none;
    }
    
    .day-nav-btn {
        width: auto;
        padding: 12px;
    }
    
    .booking-modal-title {
        font-size: 1.5rem;
    }
    
    .success-details {
        padding: 20px;
    }
}
