/* CSS Variables */
:root {
    /* Dark Theme (Default) */
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --neon-green: #00ff41;
    --neon-red: #ff0040;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
    --accent: #00ff41;
    --accent-hover: #00cc33;
    --danger: #ff0040;
    --warning: #ffa500;
    --success: #00ff41;
}







/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cart Animation */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure footer is always at bottom */
body > *:not(.footer) {
    flex-shrink: 0;
}

/* Tiled Addicted-2-Progress Background - Only for specific pages */
body:not(.lighthouse-page):not(.platform-evolution-page)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('addicted-2-progress.jpeg') repeat;
    background-size: 320px 320px; /* Current size after 1/3 less tiles */
    background-position: 0 0;
    opacity: 0.5;
    z-index: -2;
    pointer-events: none;
    transform: rotate(0deg); /* Current angle after user change */
    animation: backgroundFloat 30s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: rotate(22deg) translate(0, 0);
    }
    25% {
        transform: rotate(22deg) translate(-20px, -20px);
    }
    50% {
        transform: rotate(22deg) translate(20px, -10px);
    }
    75% {
        transform: rotate(22deg) translate(-10px, 20px);
    }
}

/* Shop Page Specific Styles */
.shop-page {
    background: var(--dark-bg);
}

/* Search Results Page Specific Styles */
.search-results-page {
    background: var(--dark-bg);
    min-height: 100vh;
}

.search-results-page .navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* Shop and Services Page Search Bar Styling */
.shop-page .search-container,
.services-page .search-container {
    background: rgba(42, 42, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.shop-page .search-container:hover,
.services-page .search-container:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.shop-page .search-input,
.services-page .search-input {
    color: #ffffff;
    font-weight: 500;
}

.shop-page .search-input::placeholder,
.services-page .search-input::placeholder {
    color: #cccccc;
    font-weight: 400;
}

.shop-page .search-input:focus,
.services-page .search-input:focus {
    color: #ffffff;
}

.shop-page .search-container:focus-within,
.services-page .search-container:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* Search Container Styling */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(42, 42, 42, 0.9);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-container:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* Search icon removed - no longer needed */

.search-input {
    background: transparent;
    border: none;
    color: #ffffff;
    outline: none;
    width: 200px;
    font-size: 0.9rem;
    padding: 0.5rem;
    padding-left: 0.5rem;
}

.search-input::placeholder {
    color: #cccccc;
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: none;
}

.clear-search-btn:hover {
    color: var(--neon-red);
    background: rgba(255, 0, 64, 0.1);
}

        .clear-search-btn.visible {
            display: block;
        }
        
        .search-btn {
            background: var(--neon-blue);
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
            margin-left: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
        }
        
        .search-btn:hover {
            background: #0056b3;
            transform: scale(1.1);
        }
        
        /* Search input focus states */
        .search-input:focus {
            outline: none;
            border: 1px solid var(--neon-green);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
        }
        
        /* Search container active state */
        .search-container:focus-within {
            border-color: var(--neon-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
        }

/* Mobile Responsive Search */
@media (max-width: 768px) {
    .search-container {
        width: 100%;
        max-width: 300px;
    }
    
    .search-input {
        width: 100%;
        flex: 1;
    }
    
    .search-results {
        margin: 1rem;
    }
    
    .search-results-content {
        padding: 1rem;
    }
}

/* Prevent header overflow */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .search-container {
        max-width: 200px;
    }
    
    .search-input {
        width: 150px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .search-container {
        max-width: 180px;
    }
    
    .search-input {
        width: 130px;
    }
}

/* Shop Search Container - Distinct from navigation search */
.shop-search-container {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(138, 43, 226, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.2);
    position: relative;
}

.shop-search-container::before {
    content: "🔍 Shop Search";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--neon-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 123, 255, 0.4);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

/* Search icon removed - no longer needed */

/* Search icon removed - no longer needed */

.shop-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    padding: 0.5rem 0;
    font-weight: 500;
}

.shop-search-input::placeholder {
    color: rgba(0, 123, 255, 0.7);
    transition: color 0.3s ease;
    font-weight: 400;
}

.shop-search-input:focus::placeholder {
    color: var(--neon-blue);
}

.clear-search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.clear-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: scale(1.1);
}

.search-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    color: var(--neon-green);
}

#shop-results-count {
    font-weight: 600;
    font-size: 0.9rem;
}

.clear-filters-btn {
    background: transparent;
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    color: var(--neon-green);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    animation: fadeInUp 0.5s ease-out;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.no-results-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.no-results-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.no-results-content .btn-primary {
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results-content .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

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

/* Search Highlight */
.search-highlight {
    background: rgba(0, 255, 65, 0.3);
    color: var(--neon-green);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Smooth transitions for search and filter changes */
.product-card {
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    pointer-events: none;
}

.product-card.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo h2 {
    color: var(--neon-green);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.nav-link.active {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon, .cart-icon {
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

.cart-icon:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: block;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
    margin-left: auto;
}

.mobile-menu-toggle:hover {
    color: var(--neon-green);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    position: relative;
}

.hamburger-dropdown {
    position: fixed;
    top: 80px;
    right: 2rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hamburger-dropdown.active {
    max-height: 300px;
    opacity: 1;
    padding: 1rem 0;
}

.hamburger-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.hamburger-dropdown a:hover {
    background: rgba(0, 255, 0, 0.1);
    color: var(--neon-green);
    padding-left: 2rem;
}

.hamburger-dropdown a:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.hamburger-dropdown a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Main Content for Index Page */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

/* Main Content for other pages - allow footer to show */
body:not(.index-page) .main-content {
    min-height: auto;
    display: block;
    padding-top: 80px;
    flex: 1;
}

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

.matrix-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-bg) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: url('pick-a-flow-2.png') center/cover no-repeat;
    opacity: 1;
    border: 2px solid var(--black);
    border-radius: 10px;
}

/* Background for non-index pages */
body:not(.index-page) .matrix-bg::before {
    background: none;
    border: none;
    border-radius: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    z-index: 1;
    margin-top: 0;
    position: relative;
}

/* Glass Card */
.glass-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 3rem;
    text-align: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:  
        1px -1px 0 #ffffff,
        0 0 20px rgba(255, 192, 203, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 192, 203, 0.5));
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}



/* Search Results Styling */
.search-results {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
    animation: slideInDown 0.5s ease-out;
}

.search-results-content {
    padding: 2rem;
}

.search-results-content h3 {
    color: var(--neon-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 1rem;
}

#search-results-list {
    color: var(--text-secondary);
}

#search-results-list ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

#search-results-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

#search-results-list li:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(0, 255, 65, 0.3);
    transform: translateX(5px);
}

#search-results-list strong {
    color: var(--neon-green);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#search-results-list span {
    display: block;
    line-height: 1.6;
}

#search-results-list p {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin: 1rem 0;
}

.search-highlight {
    background: rgba(0, 255, 65, 0.2);
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid var(--neon-green);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 400;
    position: relative;
    top: 100px;
    left: 2rem;
    text-align: center;
}

.choice-text {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 3rem;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Pill Container - Transparent Overlay Buttons */
.pill-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.pill {
    position: absolute;
    width: 80px;
    height: 200px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.red-pill {
    left: 35%;
    top: 25%;
    transform: translateX(-50%);
}

.blue-pill {
    right: 35%;
    top: 25%;
    transform: translateX(50%);
}

.pill-content {
    display: none;
}

/* Remove button styling since we're using transparent overlays */
.pill-button {
    display: none;
}

/* Hero Section for Shop Page */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.water-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--water-gradient);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #00ff41, #00ff41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        0 0 60px rgba(0, 255, 65, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Alternative high-contrast style for better readability */
.hero-title.high-contrast {
    background: linear-gradient(135deg, #ffffff, #ffffff, #00ff41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(0, 255, 65, 0.7),
        3px 3px 6px rgba(0, 0, 0, 0.9),
        -1px -1px 2px rgba(0, 0, 0, 0.9);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.7));
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 30px rgba(0, 255, 65, 0.8),
            0 0 60px rgba(0, 255, 65, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 
            0 0 40px rgba(0, 255, 65, 1),
            0 0 80px rgba(0, 255, 65, 0.6),
            0 0 120px rgba(0, 255, 65, 0.3),
            3px 3px 6px rgba(0, 0, 0, 0.9);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--white), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(51, 51, 51, 0.9) 100%);
}

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

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-green);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-overlay i {
    font-size: 3rem;
    color: var(--neon-green);
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* Shop Tabs Section */
.shop-tabs-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

/* Services Page Styles */
.services-page {
    background: var(--dark-bg);
}

/* Services Tabs Section */
.services-tabs-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-green);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.book-service-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

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

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
    color: var(--white);
    border-color: var(--neon-green);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--neon-green);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--neon-green));
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1000;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-green);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix hero section height and overflow */
    .hero-section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding: 2rem 0;
    }
    
    /* Make content container more mobile-friendly */
    .content-container {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    /* Adjust matrix background for mobile */
    .matrix-bg::before {
        top: 5%;
        left: 0;
        width: 100%;
        height: 60%;
        background: url('pick-a-flow-2.png') top/contain no-repeat;
    }
    
    /* Fix main title positioning on mobile */
    .main-title {
        position: relative;
        bottom: auto;
        top: auto;
        margin: 2rem 0;
        transform: none;
        left: auto;
        font-size: 2.5rem;
    }
    
    /* Fix subtitle positioning on mobile */
    .subtitle-text {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem 0;
        text-align: center;
    }
    
    /* Fix choice text positioning on mobile */
    .choice-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 1rem 0;
        text-align: center;
    }
    
    /* Make hero glass container mobile-friendly */
    .hero-glass-container {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    /* Adjust hero title size for mobile */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    /* Adjust hero subtitle for mobile */
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Fix pill positioning on mobile */
    .pill {
        position: relative;
        width: 60px;
        height: 150px;
        margin: 1rem;
    }
    
    .red-pill {
        position: relative;
        left: auto;
        top: auto;
        margin: 1rem;
    }
    
    .blue-pill {
        position: relative;
        right: auto;
        top: auto;
        margin: 1rem;
    }
    
    /* Make pill container mobile-friendly */
    .pill-container {
        position: relative;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Fix glass card padding on mobile */
    .glass-card {
        padding: 2rem 1rem;
    }
    
    .shop-search-container {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
    
    .search-wrapper {
        padding: 0.5rem 0.75rem;
    }
    
    .shop-search-input {
        font-size: 0.9rem;
    }
    
    .search-results-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .no-results-message {
        padding: 2rem 1rem;
    }
    
    .no-results-content h3 {
        font-size: 1.3rem;
    }
    
    .progress-tracking-content .pill {
        width: 60px;
        height: 150px;
    }
    
    .progress-tracking-content .red-pill {
        left: 20%;
        top: 15%;
    }
    
    .progress-tracking-content .blue-pill {
        right: 25%;
        top: 15%;
    }
    
    .progress-tracking-content .pill-label {
        font-size: 0.8rem;
        bottom: -35px;
    }
    
    .progress-tracking-content .pill {
        border-radius: 30px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        margin: 0 1rem;
    }
    
    .videos-toggle-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Fix right sidebar menu cutoff on mobile */
    .hamburger-dropdown {
        position: fixed;
        top: 80px;
        right: 2rem;
        max-width: calc(100vw - 2rem);
        overflow-x: auto;
        white-space: nowrap;
        transform: translateX(0);
    }
    
    .hamburger-dropdown a {
        padding: 0.75rem 1rem;
        white-space: nowrap;
        display: block;
    }
    
    /* Fix main content overflow on mobile */
    .main-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .content-container {
        max-width: calc(100vw - 2rem);
        overflow-x: hidden;
    }
    
    /* Ensure pills don't overflow on mobile */
    .pill-container {
        max-width: calc(100vw - 2rem);
        overflow-x: hidden;
    }
    
    /* Fix text overflow on mobile */
    .main-title,
    .choice-text,
    .subtitle-text {
        max-width: calc(100vw - 2rem);
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .cta-form-container {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0 1rem;
    }
    
    .cta-form-container h3 {
        font-size: 1.6rem;
    }
    
    .cta-form-container p {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hamburger-dropdown {
        position: fixed;
        top: 80px;
        right: 2rem;
        min-width: 180px;
    }

    .main-title {
        font-size: 2rem;
        bottom: auto;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .subtitle-text {
        font-size: 1rem;
        top: 80px;
        left: 1rem;
        right: 1rem;
        text-align: center;
    }

    .choice-text {
        font-size: 1rem;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
    }

    .pill-container {
        position: absolute;
        width: 100%;
        top: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        z-index: 11; /* Ensure it's above other elements */
    }

    .pill {
        position: relative;
        width: 60px;
        height: 150px;
        z-index: 12; /* Ensure the pills are above the container */
    }

    .pill {
        width: 60px;
        height: 150px;
        position: relative;
    }

    .red-pill {
        position: absolute;
        left: 25%;
        top: 50px;
        width: 60px;
        height: 150px;
    }

    .blue-pill {
        position: absolute;
        right: 25%;
        top: 50px;
        width: 60px;
        height: 150px;
    }

    .content-container {
        padding: 0.5rem;
        height: 100vh;
    }

    .glass-card {
        padding: 1rem;
    }

    .hero-glass-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .main-title {
        font-size: 1.5rem;
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        margin: 1rem 0;
    }

    .subtitle-text {
        font-size: 0.9rem;
        position: relative;
        top: auto;
        text-align: center;
        margin: 0.5rem 0;
    }

    .choice-text {
        font-size: 0.9rem;
        position: relative;
        top: auto;
        text-align: center;
        margin: 0.5rem 0;
    }

    /* Small mobile matrix background positioning */
    .matrix-bg::before {
        top: 5%;
        left: 0;
        width: 100%;
        height: 50%;
        background: url('pick-a-flow-2.png') top/contain no-repeat;
    }

    .pill {
        width: 40px;
        height: 100px;
        position: relative;
        margin: 0.5rem;
    }

    .red-pill {
        position: relative;
        left: auto;
        top: auto;
        margin: 0.5rem;
    }

    .blue-pill {
        position: relative;
        right: auto;
        top: auto;
        margin: 0.5rem;
    }

    .content-container {
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .hero-glass-container {
        padding: 1.5rem 0.5rem;
        margin: 0 0.25rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 0.5rem;
    }
    
    /* Ensure pills are visible on very small screens */
    .pill-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--neon-green);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.2);
        --glass-border: rgba(255, 255, 255, 0.4);
    }
}

/* Page-specific styles for other pages */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slideshow styles */
.slideshow-section, .results-slideshow-section {
    margin: 2rem 0;
}

.slideshow-container, .results-slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.slide, .result-slide {
    display: none;
    padding: 3rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active, .result-slide.active {
    display: flex;
}

.slide-content, .result-content {
    max-width: 500px;
}

.slide-content i, .result-image i {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.slide-content h3, .result-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.slide-content p, .result-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-btn.prev {
    left: 1rem;
}

.slide-btn.next {
    right: 1rem;
}

/* Partner cards */
.partners-section {
    margin: 3rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.partner-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.partner-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials & CTA Section */
.testimonials-cta-section {
    margin: 3rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--neon-green);
    font-size: 0.9rem;
}

/* Success Stories Grid */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.success-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.success-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.success-item i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.success-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.success-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA Form Container */
.cta-form-container {
    margin-top: 3rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.cta-form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-form-container p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Before & After Videos Section */
.before-after-section {
    margin: 4rem 0;
    text-align: center;
}

.before-after-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.videos-toggle-container {
    margin-bottom: 2rem;
}

.videos-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-blue));
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.videos-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

.videos-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.videos-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.videos-container {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.videos-container.active {
    display: block;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
    border-color: var(--neon-green);
}

.video-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: var(--dark-bg);
}

.video-card p {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}



/* Form sections */
.service-form-section {
    margin: 3rem 0;
}

/* Progress Tracking Lightbox Styles */
.progress-tracking-content {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
    height: 100% !important;
    position: relative;
    overflow: hidden;
}

.progress-tracking-content .background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.progress-tracking-content .matrix-bg {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: url('pick-a-flow-2.png') center/contain;
    opacity: 1;
    border: 2px solid var(--black);
    border-radius: 10px;
}

.progress-tracking-content .choice-text {
    font-size: 1.2rem;
    color: var(--primary-red);
    text-shadow: 1px -1px 0 #ffffff, 
    -1px 1px 0 #ffffff, 
    0 0 20px rgba(255, 192, 203, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 192, 203, 0.5));
    font-weight: 600;
    margin-bottom: 3rem;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.progress-tracking-content .pill-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.progress-tracking-content .pill {
    position: absolute;
    width: 80px;
    height: 200px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.progress-tracking-content .pill:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.progress-tracking-content .red-pill {
    left: 33%;
    top: 18%;
    transform: translateX(-50%);
}

.progress-tracking-content .blue-pill {
    right: 36%;
    top: 18%;
    transform: translateX(50%);
}

.progress-tracking-content .pill-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: var(--primary-red);
}

.lightbox-content h2 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.lightbox-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lightbox-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
}

.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label, .radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
}

/* Discussion Page Styles */
.discussion-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Main Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Header Left Side */
.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.discord { background: #7289da; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #e4405f; }

.brand-title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.login-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #0052cc;
}

/* Header Right Side */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #0066ff;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066ff;
}

/* Duplicate search styles removed - using main styles above */

/* Secondary Navigation */
.secondary-nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.secondary-nav-left {
    display: flex;
    gap: 30px;
}

.secondary-nav-item {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.secondary-nav-item:hover,
.secondary-nav-item.active {
    color: #0066ff;
}

.secondary-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066ff;
}

.secondary-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.secondary-search {
    position: relative;
    display: flex;
    align-items: center;
}

/* Secondary search icon removed - no longer needed */

.secondary-search-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    width: 150px;
    background: white;
    color: #000000;
}

.secondary-search-input:focus {
    outline: none;
    border-color: #0066ff;
}

.login-signup-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-signup-btn:hover {
    background: #0052cc;
}

/* Forum Banner */
.forum-banner {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forum-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q25 25 50 50 T100 50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M0 60 Q25 35 50 60 T100 60" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.forum-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.forum-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.forum-welcome {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.create-post-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.create-post-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

/* Forum Content */
.forum-content {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 40px 0;
}

.forum-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Categories Section */
.categories-section {
    margin-bottom: 50px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.category-thumbnail {
    flex-shrink: 0;
}

.category-thumbnail img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-icon {
    color: #ffd700;
    font-size: 16px;
}

.butterfly-emoji {
    font-size: 16px;
}

.category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.category-stats {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
}

.category-stats i {
    font-size: 12px;
}

.follow-btn {
    background: #0066ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.follow-btn:hover {
    background: #0052cc;
}

/* New Posts Section */
.new-posts-section {
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.post-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.author-badge {
    color: #ffd700;
    font-size: 12px;
}

.post-date {
    color: #999;
    font-size: 12px;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-title i {
    color: #0066ff;
    font-size: 14px;
}

.post-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.post-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.category-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.like-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.like-btn:hover {
    background: #0066ff;
    color: white;
    border-color: #0066ff;
}

.post-stats {
    display: flex;
    gap: 15px;
}

.likes-count,
.comments-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 14px;
}

.likes-count i {
    color: #ff6b6b;
}

.comments-count i {
    color: #4ecdc4;
}

/* Discussion Page Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        gap: 15px;
    }

    .secondary-nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .secondary-nav-left {
        gap: 20px;
    }

    .forum-title {
        font-size: 36px;
    }

    .category-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .forum-title {
        font-size: 28px;
    }

    .forum-welcome {
        font-size: 16px;
    }

    .category-card {
        padding: 15px;
    }

    .post-card {
        padding: 20px;
    }
}

/* Discussion Page Video Background */
.discussion-page .categories-section {
    position: relative;
    overflow: hidden;
    background: none !important;
}

.discussion-page .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.discussion-page .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discussion-page .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
} 

/* Payment Lightbox Styles */
#payment-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

#payment-lightbox .lightbox-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--glass-shadow);
}

.service-summary {
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.service-summary h3 {
    color: #00CCFF;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-summary p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.payment-form {
    margin-top: 1.5rem;
}

.payment-methods {
    margin: 1.5rem 0;
}

.payment-methods h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(0, 204, 255, 0.1);
}

.payment-option input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: #00CCFF;
}

.payment-option label {
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
}

/* Confirmation Page Styles */
.confirmation-page {
    background: var(--dark-bg);
    min-height: 100vh;
}

.confirmation-section {
    padding: 6rem 0 4rem 0;
    min-height: calc(100vh - 200px);
}

.confirmation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.confirmation-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00CCFF, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.order-details, .customer-details, .next-steps {
    margin-bottom: 2.5rem;
}

.order-details h2, .customer-details h2, .next-steps h2 {
    color: #00CCFF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 204, 255, 0.3);
    padding-bottom: 0.5rem;
}

.order-summary, .customer-summary {
    display: grid;
    gap: 1rem;
}

.order-item, .customer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item .label, .customer-item .label {
    color: var(--text-secondary);
    font-weight: 500;
}

.order-item .value, .customer-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.steps-list {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 204, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.2);
    transform: translateY(-2px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #00CCFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #00CCFF, #00ff88);
    color: var(--black);
    border: none;
}

.action-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 204, 255, 0.3);
}

.action-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design for Payment Lightbox and Confirmation */
@media (max-width: 768px) {
    #payment-lightbox .lightbox-content {
        padding: 2rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .confirmation-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .confirmation-header h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .order-item, .customer-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn-primary,
    .action-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #payment-lightbox .lightbox-content {
        padding: 1.5rem;
    }
    
    .confirmation-card {
        padding: 1.5rem;
    }
    
    .confirmation-header h1 {
        font-size: 1.8rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
} 

/* Member Dashboard Styles */
.member-page {
    background: var(--dark-bg);
    min-height: 100vh;
}

.member-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
}

.member-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(0, 204, 255, 0.3);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.profile-info h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00CCFF, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.member-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00CCFF;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Tabs */
.member-dashboard {
    padding: 3rem 0;
}

.dashboard-tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: rgba(0, 204, 255, 0.3);
    color: #00CCFF;
}

.tab-btn.active {
    background: linear-gradient(135deg, #00CCFF, #00ff88);
    border-color: transparent;
    color: var(--black);
    font-weight: 600;
}

.tab-btn i {
    font-size: 1rem;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00CCFF, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Orders Grid */
.orders-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.order-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 204, 255, 0.2);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-id {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.order-status {
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.order-details h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.order-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.order-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.order-date, .order-price {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-price {
    font-weight: 600;
    color: #00CCFF;
}

.order-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Followers Grid */
.followers-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.follower-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.follower-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.follower-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.follower-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.follower-info {
    flex: 1;
}

.follower-info h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.follower-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.follow-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.follower-actions {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

/* Notifications List */
.notifications-list {
    max-width: 700px;
    margin: 0 auto;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.notification-item.unread {
    border-left: 4px solid #00CCFF;
    background: rgba(0, 204, 255, 0.05);
}

.notification-item:hover {
    transform: translateX(5px);
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00CCFF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.notification-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.notification-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.mark-read-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mark-read-btn:hover {
    background: rgba(0, 204, 255, 0.1);
    color: #00CCFF;
}

/* Forum Posts Grid */
.forum-posts-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.forum-post-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.forum-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.post-category {
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-stats span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.booking-card.upcoming {
    border-left: 4px solid #00CCFF;
}

.booking-card.completed {
    border-left: 4px solid #00ff88;
}

.booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.booking-status {
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
}

.booking-details {
    margin-bottom: 1.5rem;
}

.booking-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.program-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.program-card.active {
    border-left: 4px solid #00CCFF;
}

.program-card.completed {
    border-left: 4px solid #00ff88;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.program-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.program-status {
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-status.active {
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
}

.program-status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.program-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00CCFF, #00ff88);
    border-radius: 4px;
    transition: width 1s ease;
}

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

.program-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-actions {
    display: flex;
    gap: 1rem;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.settings-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.settings-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.setting-item {
    margin-bottom: 1rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: rgba(0, 204, 255, 0.3);
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider::before {
    background: #00CCFF;
    transform: translateX(26px);
}

/* Account Form */
.account-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00CCFF;
    background: rgba(0, 204, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Addresses Grid */
.addresses-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.address-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.address-card.primary {
    border-left: 4px solid #00CCFF;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.address-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.address-type {
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.address-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.address-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.add-address-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px dashed rgba(0, 204, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-address-card:hover {
    border-color: #00CCFF;
    background: rgba(0, 204, 255, 0.05);
}

.add-address-content {
    text-align: center;
    color: var(--text-secondary);
}

.add-address-content i {
    font-size: 2rem;
    color: #00CCFF;
    margin-bottom: 1rem;
}

.add-address-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Profile Form */
.profile-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.profile-avatar-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-avatar-large {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid rgba(0, 204, 255, 0.3);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.change-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #00CCFF;
    border: none;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.change-avatar-btn:hover {
    background: #00ff88;
    transform: scale(1.1);
}

/* Wallet Grid */
.wallet-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wallet-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.wallet-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.payment-methods-list {
    display: grid;
    gap: 1rem;
}

.payment-method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    background: rgba(0, 204, 255, 0.05);
    border-color: rgba(0, 204, 255, 0.2);
}

.payment-method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-info i {
    font-size: 2rem;
    color: #00CCFF;
}

.payment-method-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.payment-method-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-method-actions {
    display: flex;
    gap: 0.5rem;
}

.add-payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.05);
    border: 2px dashed rgba(0, 204, 255, 0.3);
    border-radius: 10px;
    color: #00CCFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-payment-method:hover {
    background: rgba(0, 204, 255, 0.1);
    border-color: #00CCFF;
}

.transactions-list {
    display: grid;
    gap: 1rem;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(0, 204, 255, 0.05);
    border-color: rgba(0, 204, 255, 0.2);
}

.transaction-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.transaction-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.transaction-amount {
    text-align: right;
}

.amount {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.status {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* Comments List */
.comments-list {
    max-width: 700px;
    margin: 0 auto;
}

.comment-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-header h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.comment-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.comment-stats span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

/* Subscriptions Grid */
.subscriptions-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.subscription-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.subscription-card.active {
    border-left: 4px solid #00CCFF;
}

.subscription-card.cancelled {
    border-left: 4px solid #ff6b6b;
    opacity: 0.7;
}

.subscription-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.subscription-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.subscription-status {
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.subscription-status.active {
    background: rgba(0, 204, 255, 0.2);
    color: #00CCFF;
}

.subscription-status.cancelled {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.subscription-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.subscription-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.subscription-meta span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: var(--glass-shadow);
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left: 4px solid #00ff88;
}

.notification.info {
    border-left: 4px solid #00CCFF;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.close-notification {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .member-profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .member-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        justify-content: center;
        width: 100%;
    }
    
    .content-header h2 {
        font-size: 2rem;
    }
    
    .order-actions,
    .booking-actions,
    .program-actions,
    .subscription-actions {
        flex-direction: column;
    }
    
    .follower-card {
        flex-direction: column;
        text-align: center;
    }
    
    .follower-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .notification-item {
        flex-direction: column;
        text-align: center;
    }
    
    .notification-icon {
        align-self: center;
    }
    
    .post-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .post-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .post-actions {
        justify-content: center;
    }
    
    .booking-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .program-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .program-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .program-actions {
        justify-content: center;
    }
    
    .address-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .address-actions {
        justify-content: center;
    }
    
    .payment-method-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .payment-method-actions {
        justify-content: center;
    }
    
    .transaction-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comment-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .comment-actions {
        justify-content: center;
    }
    
    .subscription-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .subscription-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .subscription-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .member-header {
        padding: 2rem 0;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .member-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-header h2 {
        font-size: 1.8rem;
    }
    
    .order-card,
    .booking-card,
    .program-card,
    .subscription-card {
        padding: 1.5rem;
    }
    
    .settings-section,
    .account-form,
    .profile-form,
    .wallet-section {
        padding: 1.5rem;
    }
} 

/* Calendar Styles */
.calendar-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.calendar-nav-btn i {
    font-size: 1.2rem;
}

#current-month {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.calendar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 2rem;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-day-header {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.calendar-day {
    aspect-ratio: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: default;
}

.calendar-day.other-month:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

.calendar-day.today {
    background: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.5);
    font-weight: 600;
}

.calendar-day.available {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.4);
}

.calendar-day.available:hover {
    background: rgba(40, 167, 69, 0.3);
}

.calendar-day.booked {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
    cursor: not-allowed;
}

.calendar-day.booked:hover {
    background: rgba(220, 53, 69, 0.3);
    transform: none;
}

.calendar-day.unavailable {
    background: rgba(108, 117, 125, 0.2);
    border-color: rgba(108, 117, 125, 0.4);
    cursor: not-allowed;
}

.calendar-day.unavailable:hover {
    background: rgba(108, 117, 125, 0.3);
    transform: none;
}

.calendar-day-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.calendar-day-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 0.25rem;
}

.calendar-day-indicator.available {
    background: #28a745;
}

.calendar-day-indicator.booked {
    background: #dc3545;
}

.calendar-day-indicator.unavailable {
    background: #6c757d;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legend-color.available {
    background: rgba(40, 167, 69, 0.6);
}

.legend-color.booked {
    background: rgba(220, 53, 69, 0.6);
}

.legend-color.unavailable {
    background: rgba(108, 117, 125, 0.6);
}

.legend-color.today {
    background: rgba(0, 123, 255, 0.6);
}

.upcoming-appointments {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.upcoming-appointments h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.appointment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.appointment-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.75rem;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.appointment-date .date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.appointment-date .month {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appointment-details {
    flex: 1;
}

.appointment-details h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.appointment-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.appointment-details p i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.appointment-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.appointment-actions .btn-primary,
.appointment-actions .btn-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-width: 80px;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .calendar-nav-btn {
        padding: 0.5rem 0.75rem;
    }
    
    .calendar-day-header {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .calendar-day {
        padding: 0.25rem;
    }
    
    .calendar-day-number {
        font-size: 0.9rem;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .appointment-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .appointment-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calendar-day-header {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .calendar-day {
        padding: 0.125rem;
    }
    
    .calendar-day-number {
        font-size: 0.8rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
    
    .appointment-date {
        min-width: 50px;
        padding: 0.5rem;
    }
    
    .appointment-date .date {
        font-size: 1.2rem;
    }
    
    .appointment-date .month {
        font-size: 0.7rem;
    }
}

/* Booking Modal Styles */
.time-slots {
    margin: 2rem 0;
}

.time-slots h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
}

.time-slot.unavailable {
    background: rgba(108, 117, 125, 0.2);
    border-color: rgba(108, 117, 125, 0.4);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.time-slot.unavailable:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: none;
}

.selected-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.selected-slot h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.selected-slot #selected-time {
    color: #007bff;
    font-weight: 700;
}

/* Responsive Booking Modal */
@media (max-width: 768px) {
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .time-slot {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .time-slot-grid {
        grid-template-columns: 1fr;
    }
    
    .time-slot {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Don't Show Again Modal Message */
.dont-show-again-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dont-show-again-message .checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.dont-show-again-message .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.dont-show-again-message .checkbox-label:hover {
    color: #fff;
}

/* Auth Modal Styles */
.auth-content {
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.25rem;
    backdrop-filter: blur(10px);
}

.auth-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.auth-tab-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
}

.auth-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.auth-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: rgba(0, 123, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.auth-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.auth-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.auth-form .checkbox-label a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-form .checkbox-label a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.auth-form .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.auth-form .submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Auth Modal */
@media (max-width: 768px) {
    .auth-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .auth-tabs {
        margin-bottom: 1.5rem;
    }
    
    .auth-tab-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .auth-form h2 {
        font-size: 1.5rem;
    }
    
    .auth-form p {
        font-size: 0.9rem;
    }
    
    .auth-form .form-group input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-content {
        width: 98%;
        padding: 1.5rem;
    }
    
    .auth-tab-btn {
        padding: 0.5rem 0.625rem;
        font-size: 0.8rem;
    }
    
    .auth-form h2 {
        font-size: 1.3rem;
    }
    
    .auth-form .form-group input {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
} 

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .mobile-menu-toggle {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    
    .hamburger-dropdown {
        top: 100%;
        left: 0;
        width: 100%;
        border-radius: 0 0 15px 15px;
        padding: 1rem;
    }
    
    .hamburger-dropdown a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    
    .main-content {
        padding-top: 80px;
        margin-top: 0;
    }
    
    /* Ensure content stacks vertically on mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Improve spacing between sections */
    section {
        margin-bottom: 2rem;
    }
    
    section:last-child {
        margin-bottom: 0;
    }
    
    /* Better button sizing on mobile */
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
        display: block;
    }
    
    /* Improve card spacing */
    .glass-card, .category-card, .product-card, .service-card {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    /* Better image handling on mobile */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    /* Improve form elements on mobile */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    /* Better grid layouts for mobile */
    .categories-grid, .products-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem;
        font-size: 1.1rem;
    }
    
    .hamburger-dropdown {
        padding: 0.8rem;
    }
    
    .hamburger-dropdown a {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    /* Even better spacing for very small screens */
    section {
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .glass-card, .category-card, .product-card, .service-card {
        margin-bottom: 1.2rem;
        border-radius: 12px;
    }
    
    input, select, textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
    
    .categories-grid, .products-grid, .services-grid {
        gap: 1.2rem;
    }
    
    .testimonials-grid,
    .success-stories-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .cta-form-container {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0.5rem 0 0.5rem;
    }
    
    .cta-form-container h3 {
        font-size: 1.4rem;
    }
    
    .cta-form-container p {
        font-size: 0.9rem;
    }
}

/* Partner Services Section Styles */
.partner-services-section {
    padding: 80px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.partner-services-container {
    text-align: center;
}

.partner-services-header h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.partner-services-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-services-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--dark-bg);
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.partner-services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.3);
}

/* Responsive adjustments for partner services */
@media (max-width: 768px) {
    .partner-services-section {
        padding: 60px 0;
    }
    
    .partner-services-header h2 {
        font-size: 2rem;
    }
    
    .partner-services-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .partner-services-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
