/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gold Theme Colors */
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF8DC;
    --pure-white: #FFFFFF;
    --light-brown: #8B7355;
    --dark-brown: #6B5637;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 215, 0, 0.3);
    --shadow-color: rgba(255, 215, 0, 0.3);

    /* Dynamic Theme Variables */
    --bg-primary: #FFF8DC;
    --bg-secondary: #FAEBD7;
    --text-primary: #8B7355;
    --text-secondary: #6B5637;
    --text-accent: #FFD700;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(255, 215, 0, 0.3);
    --overlay-bg: rgba(255, 248, 220, 0.95);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-tech: 'Orbitron', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #e2e8f0;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-accent: #0066CC;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 102, 204, 0.2);
    --overlay-bg: rgba(248, 250, 252, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 102, 204, 0.2);
    --shadow-color: rgba(0, 102, 204, 0.2);
    --pure-white: #1a202c;
}

/* Light mode specific adjustments */
[data-theme="light"] .hero-overlay {
    background: radial-gradient(circle at center, transparent 0%, rgba(248, 250, 252, 0.4) 50%, rgba(248, 250, 252, 0.8) 100%);
}

[data-theme="light"] .navbar {
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

[data-theme="light"] .nav-cta {
    color: white !important;
}

/* Light mode particles background adjustment */
[data-theme="light"] #particles-js {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Light mode WellnessMatch adjustments */
[data-theme="light"] .wellness-match {
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

/* Light mode wellness icon hover effect */
[data-theme="light"] .wellness-icon:hover {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

/* Force text colors in light mode */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] p,
[data-theme="light"] span,
[data-theme="light"] div {
    color: var(--text-primary);
}

[data-theme="light"] .hero-subtitle {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .section-title {
    color: var(--text-primary) !important;
}

[data-theme="light"] .section-subtitle {
    color: var(--text-secondary) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FFF8DC 0%, #FFF5E6 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 80px;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    transition: background 0.3s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s, background-color 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.water-loader {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #FFD700, #B8860B);
    animation: waterFill 3s ease-in-out infinite;
}

.loading-text {
    margin-top: 30px;
    font-size: 1.2rem;
    color: var(--text-accent);
    animation: pulse 2s ease-in-out infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 8px 0;
    height: 70px;
    background: var(--overlay-bg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    display: inline-block;
    text-decoration: none;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-link:hover .logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B8860B, #FFD700);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 25px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50px;
    color: var(--pure-white) !important;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: var(--glass-bg);
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.theme-toggle i {
    position: absolute;
    font-size: 0.9rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .fa-sun {
    color: #fbbf24;
    opacity: 1;
}

.theme-toggle .fa-moon {
    color: #60a5fa;
    opacity: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 200px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    padding: var(--container-padding);
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title,
.hero-subtitle,
.hero-cards,
.hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.card-number {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #B8860B, #FFD700, #FFF8DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* About Us Section */
.about-us {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.founder-image-container {
    position: relative;
}

.founder-image {
    position: relative;
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
    height: 600px;
    width: 100%;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: var(--glass-bg);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.founder-image:hover .image-overlay {
    transform: translateY(0);
}

.founder-image:hover .founder-photo {
    transform: scale(1.05);
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
}

.founder-text-container {
    position: relative;
}

.founder-text {
    padding: 40px;
    border-radius: 20px;
}

.founder-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.founder-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 5px;
}

.founder-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFF8DC;
    margin-bottom: 20px;
}

.founder-credentials {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 10px;
    text-align: center;
}

.founder-credentials p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 5px 0;
}

.founder-mission, .founder-impact {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.founder-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.founder-highlights {
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 5px;
    min-width: 24px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.founder-message {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 30px 0;
    padding: 25px;
    background: var(--glass-bg);
    border-radius: 15px;
    border-left: 4px solid #FFD700;
    color: var(--text-secondary);
}

.founder-philosophy {
    margin-top: 30px;
}

.founder-philosophy h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.founder-philosophy ul {
    list-style: none;
    padding: 0;
}

.founder-philosophy li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.founder-philosophy li:last-child {
    border-bottom: none;
}

/* Responsive About Us */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .founder-text {
        padding: 25px;
    }
    
    .founder-text h3 {
        font-size: 1.8rem;
    }
}

/* Self Love Lounge Section */
.self-love-lounge {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f4e6 0%, #fdf6e3 100%);
    position: relative;
}

[data-theme="dark"] .self-love-lounge {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.lounge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lounge-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

[data-theme="dark"] .lounge-title {
    color: #FFF8DC;
}

.lounge-description {
    margin-bottom: 40px;
}

.lounge-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

[data-theme="dark"] .lounge-description p {
    color: var(--text-secondary);
}

.lounge-services {
    margin-bottom: 40px;
}

.lounge-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.lounge-list li {
    font-size: 1.2rem;
    color: #daa520;
    margin-bottom: 15px;
    line-height: 1.6;
}

[data-theme="dark"] .lounge-list li {
    color: #FFD700;
}

.lounge-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.lounge-image-container {
    position: relative;
}

.lounge-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lounge-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(218, 165, 32, 0.2), transparent 50%);
    pointer-events: none;
}

/* Responsive Self Love Lounge */
@media (max-width: 768px) {
    .lounge-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lounge-title {
        font-size: 2.5rem;
    }
    
    .lounge-image {
        height: 400px;
    }
    
    .lounge-cta {
        flex-direction: column;
    }
}

/* Merchandise Section */
.merchandise {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-product, .btn-add-to-cart {
    background: #FFD700;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-view-product:hover, .btn-add-to-cart:hover {
    background: #B8860B;
    transform: scale(1.05);
}

.btn-add-to-cart {
    background: #FFF8DC;
}

.btn-add-to-cart:hover {
    background: #B8860B;
}

.product-info {
    padding: 30px 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.product-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-options {
    margin-bottom: 20px;
}

.product-variant {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-variant:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #FFD700;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.merchandise-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Additional Services Cards Section */
.additional-services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFF8DC, #FAEBD7);
    position: relative;
    overflow: hidden;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.service-card-new {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(200, 200, 200, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FFFFFF, rgba(240, 240, 240, 0.6));
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-new:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6c63ff, #4a47a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.25);
}

.service-card-new:hover .card-icon-wrapper {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper i {
    font-size: 2.2rem;
    color: white;
}

.service-card-new h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-new:hover h3 {
    color: #4a47a3;
}

.service-card-new p {
    font-size: 1rem;
    color: #6B5637;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.card-features .feature-tag {
    background: rgba(108, 99, 255, 0.1);
    color: #4a47a3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-new:hover .feature-tag {
    background: rgba(200, 200, 200, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.card-hover-text {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-new:hover .card-hover-text {
    opacity: 1;
    bottom: 30px;
}

.card-hover-text span {
    color: #4a47a3;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-hover-text i {
    transition: transform 0.3s ease;
}

.service-card-new:hover .card-hover-text i {
    transform: translateX(5px);
}

/* Responsive Additional Services */
@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-new {
        min-height: 280px;
    }
}

/* Space Rental Section */
.space-rental {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.rental-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
    transition: transform 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-10px);
}

.rental-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.rental-info {
    padding: 30px;
}

.rental-features {
    list-style: none;
    margin: 20px 0;
}

.rental-features li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.rental-features i {
    color: #FFD700;
    margin-right: 10px;
}

.rental-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.rental-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.discount-tag {
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    color: #B8860B;
    font-size: 0.9rem;
}

/* Workshops Section */
.workshops {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.workshop-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-icon i {
    font-size: 2rem;
    color: white;
}

.workshop-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Podcasts Section */
.podcasts {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.podcast-player {
    margin-top: 60px;
}

.featured-episode {
    display: flex;
    gap: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.episode-cover {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.episode-cover img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #FFD700;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.episode-info {
    flex: 1;
}

.episode-tag {
    background: #FFD700;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.episode-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: var(--text-secondary);
}

.episode-meta i {
    color: #B8860B;
    margin-right: 5px;
}

.episode-list {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-item:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 25px;
}

.episode-number {
    background: #B8860B;
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.episode-details h4 {
    margin: 0;
    color: var(--text-primary);
}

.duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.podcast-platforms {
    text-align: center;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    border: 2px solid #FFD700;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: #FFD700;
    color: white;
}

/* Wellness Merchandise Extended */
.wellness-merchandise {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.merch-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.category-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
}

.merch-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.merch-grid.active {
    display: grid;
}

.merch-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.merch-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.merch-item h4 {
    color: var(--text-primary);
    margin: 10px 0;
}

.merch-item .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin: 15px 0;
}

.btn-add-cart {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
}

/* Self Love Community */
.community {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.community-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-icon i {
    font-size: 2rem;
    color: white;
}

.community-card ul {
    list-style: none;
    margin: 20px 0;
}

.community-card li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.btn-join {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join:hover {
    transform: translateY(-2px);
}

.membership-tiers {
    margin-top: 80px;
    text-align: center;
}

.membership-tiers h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin: 20px 0;
    display: block;
}

.tier-card ul {
    list-style: none;
    margin: 30px 0;
}

.tier-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Merchandise */
@media (max-width: 768px) {
    .merchandise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .merchandise-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.modal-product-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal-product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.modal-product-details h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.modal-product-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-variants h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.variant-option {
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 10px;
    margin-bottom: 10px;
}

.variant-option strong {
    color: #FFD700;
    font-size: 1.1rem;
}

.variant-details {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    max-width: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-info {
    border-left: 4px solid #FFD700;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-message {
    color: var(--text-primary);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-product-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .notification {
        max-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

/* Cart Icon in Navbar */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cart-toggle:hover {
    background: var(--glass-bg);
    color: #FFD700;
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #FFF8DC;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-sidebar.open .cart-overlay {
    opacity: 1;
    pointer-events: all;
}

.cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    border-left: 1px solid var(--glass-border);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.cart-item-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD700;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-controls button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: #FFD700;
    color: white;
}

.quantity-controls span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cart-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.total-amount {
    color: #FFD700;
    font-size: 1.3rem;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-actions button {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
}

/* Full Cart Page */
.cart-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cart-page-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.cart-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-page-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin: 0;
}

.cart-page-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-page-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.cart-page-body {
    display: grid;
    grid-template-columns: 1fr 350px;
    max-height: calc(90vh - 120px);
}

.cart-items-detailed {
    padding: 30px;
    overflow-y: auto;
    max-height: 100%;
}

.cart-item-detailed {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 25px;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    align-items: center;
}

.cart-item-image-large img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.variant-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 12px 0;
}

.item-price {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-quantity {
    text-align: center;
}

.cart-item-quantity label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.quantity-controls-large {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 8px;
}

.quantity-controls-large button {
    background: #FFD700;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-controls-large button:hover {
    background: #B8860B;
}

.quantity-controls-large input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: center;
    width: 50px;
    font-weight: 500;
}

.quantity-controls-large input:focus {
    outline: none;
}

.cart-item-total {
    text-align: right;
}

.item-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.remove-item-large {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-item-large:hover {
    background: #e74c3c;
    color: white;
}

.cart-page-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.empty-cart-illustration {
    font-size: 5rem;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 30px;
}

.cart-page-empty h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cart-page-empty p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cart-page-summary {
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    padding: 30px;
    overflow-y: auto;
}

.summary-card {
    padding: 25px;
    border-radius: 15px;
    position: sticky;
    top: 0;
}

.summary-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.summary-line:last-of-type {
    border-bottom: none;
}

.total-line {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 2px solid var(--glass-border);
    margin-top: 15px;
    padding-top: 15px;
}

.final-total {
    color: #FFD700;
    font-size: 1.4rem;
}

.summary-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-btn {
    background: #FFF8DC;
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: #B8860B;
}

.checkout-btn i {
    margin-right: 8px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-page-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .cart-page-header {
        padding: 20px;
    }
    
    .cart-page-body {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .cart-items-detailed {
        padding: 20px;
    }
    
    .cart-item-detailed {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .cart-item-image-large img {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-total {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--glass-border);
    }
    
    .cart-page-summary {
        border-left: none;
        border-top: 1px solid var(--glass-border);
    }
}

/* Checkout Page */
.checkout-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.checkout-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: 95vh;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.1));
}

.checkout-header h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-header h2::before {
    content: '🛒';
    font-size: 1.8rem;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.checkout-close:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
}

.checkout-body {
    padding: 40px;
    max-height: calc(95vh - 120px);
    overflow-y: auto;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #FFD700;
    color: white;
    border-color: #FFD700;
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.progress-step.active span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Checkout Main Layout */
.checkout-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form Section */
.checkout-form-section {
    position: relative;
}

.checkout-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.checkout-step h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

/* Form Styling */
.checkout-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group.error input,
.form-group.error select {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

/* Shipping Options */
.shipping-options {
    margin-top: 30px;
}

.shipping-options h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.shipping-option {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: #FFD700;
}

.shipping-option input[type="radio"] {
    display: none;
}

.shipping-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option input:checked + label {
    background: rgba(0, 212, 255, 0.1);
    border-color: #FFD700;
}

.option-details strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.option-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.option-price {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 30px;
}

.payment-option {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #FFD700;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input:checked + label {
    background: rgba(0, 212, 255, 0.1);
}

.payment-info strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.payment-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-logos {
    display: flex;
    gap: 8px;
}

.payment-logos img {
    width: 40px;
    height: 25px;
    border-radius: 4px;
}

.payment-note {
    color: #e67e22;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.step-actions button {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Order Confirmation */
.order-confirmation {
    text-align: center;
    padding: 40px;
}

.confirmation-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 25px;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.order-confirmation h3 {
    color: var(--text-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.order-number {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.confirmation-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.confirmation-details {
    text-align: left;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-section h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.total-amount {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Checkout Summary */
.checkout-summary {
    position: sticky;
    top: 0;
}

.summary-items {
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.item-details h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 5px 0;
}

.item-details p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.item-price {
    color: #FFD700;
    font-weight: 600;
}

.summary-calculations {
    padding: 25px 0;
    border-top: 1px solid var(--glass-border);
}

.security-badges {
    padding: 25px 0;
    border-top: 1px solid var(--glass-border);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.security-item i {
    color: #FFD700;
    font-size: 1rem;
}

/* Responsive Checkout */
@media (max-width: 1024px) {
    .checkout-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkout-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .checkout-header {
        padding: 20px 25px;
    }
    
    .checkout-header h2 {
        font-size: 1.8rem;
    }
    
    .checkout-body {
        padding: 25px;
    }
    
    .checkout-progress {
        margin-bottom: 30px;
    }
    
    .progress-step span {
        font-size: 0.8rem;
    }
    
    .checkout-step {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .confirmation-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #0D9488, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientShift 5s ease-in-out infinite;
}

.text-outline {
    -webkit-text-stroke: 2px var(--text-accent);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-bottom: 50px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

/* .glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px var(--shadow-color);
} */

/* Hero cards should not move at all */
.hero-cards .glass-card {
    transform: none !important;
    transition: none !important;
}

.hero-cards .glass-card:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px var(--shadow-color);
}

/* Clickable hero cards */
.hero-cards .glass-card[onclick] {
    transition: all 0.4s ease;
    position: relative;
}

.hero-cards .glass-card[onclick]:hover {
    transform: translateY(-8px) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 215, 0, 0.1));
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

.hero-cards .glass-card[onclick]:hover .card-number {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    transform: scale(1.05);
}

.hero-cards .glass-card[onclick]::after {
    content: "Click to explore →";
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    color: #FFD700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cards .glass-card[onclick]:hover::after {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.hero-cards h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-cards p {
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--pure-white);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Waves */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #B8860B;
    text-shadow: 2px 2px 4px rgba(184, 134, 11, 0.2);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B5637;
    opacity: 1;
}

/* Services Section - Enhanced Design */
.services {
    background: linear-gradient(135deg, #FFF8DC, #FAEBD7);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0 20px;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.4));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(184, 134, 11, 0.12);
    min-height: 420px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 248, 220, 0.3));
}

.service-item:hover::before {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.15);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border: 2px solid rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 1;
    filter: brightness(1.1) contrast(1.05);
}


.service-header:hover .service-icon {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.45);
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    color: #B8860B;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
}

.service-description {
    font-size: 0.98rem;
    color: #6B5637;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: left;
    padding: 0 5px;
}

.service-details {
    margin-top: 25px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-item i {
    color: #B8860B;
    font-size: 0.75rem;
    min-width: 14px;
}

.feature-item span {
    color: #8B7355;
    opacity: 1;
    font-size: 0.9rem;
    font-weight: 400;
}

.service-btn {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    margin-top: auto;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #B8860B, #FFD700);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Wellness Journey */
.wellness-journey {
    background: linear-gradient(180deg, transparent, rgba(0, 102, 204, 0.05));
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #B8860B, #FFD700);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px var(--shadow-color);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #B8860B, #FFD700);
    border-radius: 10px;
    transition: width 2s ease-in-out;
    animation: shimmer 2s ease-in-out infinite;
}

/* Stats Counter */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.stat-number {
    font-family: var(--font-tech);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Technology Section */
.technology {
    background: rgba(0, 17, 51, 0.2);
}

.tech-showcase {
    display: grid;
    gap: 60px;
}

.tech-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.device-3d {
    perspective: 1000px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--glass-bg), rgba(0, 212, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
}

.front { transform: translateZ(100px); }
.back { transform: translateZ(-100px) rotateY(180deg); }
.left { transform: translateX(-100px) rotateY(-90deg); }
.right { transform: translateX(100px) rotateY(90deg); }
.top { transform: translateY(-100px) rotateX(90deg); }
.bottom { transform: translateY(100px) rotateX(-90deg); }

.tech-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    margin: 30px 0;
}

.tech-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-features i {
    color: #FFF8DC;
}

.water-crystal-demo {
    text-align: center;
    padding: 60px 0;
}

.crystal-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.crystal-before,
.crystal-after {
    text-align: center;
}

.crystal-before img,
.crystal-after img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.crystal-arrow {
    font-size: 3rem;
    color: #FFD700;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, transparent, rgba(0, 102, 204, 0.05));
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    min-width: 100%;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.stars {
    color: #FFF8DC;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-prev,
.carousel-next {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-bg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.5);
}

/* WellnessMatch Section */
.wellness-match {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    padding: 120px 0;
    position: relative;
}

.wellness-match::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,4 8,2 6,2 C4,2 2,4 2,6 C2,8 4,10 10,16 C16,10 18,8 18,6 C18,4 16,2 14,2 C12,2 10,4 10,6 Z" fill="rgba(0,212,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* Assessment Intro */
.assessment-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-content {
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.wellness-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.wellness-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}

.wellness-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.wellness-icon i {
    font-size: 2.5rem;
    color: var(--text-accent);
}

.wellness-icon span {
    font-weight: 600;
    color: var(--text-primary);
}

.intro-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.intro-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.assessment-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.assessment-stats .stat {
    text-align: center;
}

.assessment-stats .stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FFF8DC;
    margin-bottom: 5px;
}

.assessment-stats .stat span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-start-assessment {
    font-size: 1.3rem;
    padding: 20px 50px;
    position: relative;
    z-index: 1;
}

/* Assessment Container */
.assessment-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    opacity: 1 !important;
    visibility: visible !important;
}

.assessment-progress {
    margin-bottom: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #B8860B, #FFD700, #FFF8DC);
    border-radius: 10px;
    width: 0%;
    transition: width 0.6s ease;
    animation: shimmer 2s ease-in-out infinite;
}

.progress-text {
    color: #FFD700;
    font-weight: 600;
}

.question-card {
    padding: 50px 40px;
    margin-bottom: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
}

.question-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
}

.question-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--pure-white);
    opacity: 1 !important;
    visibility: visible !important;
}

.question-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    visibility: visible !important;
}

.option-btn {
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--pure-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.6s;
}

.option-btn:hover::before {
    left: 100%;
}

.option-btn:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.option-btn.selected {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), rgba(0, 212, 255, 0.2));
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.assessment-controls {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.assessment-controls button {
    flex: 1;
    max-width: 200px;
}

/* Matching Container */
.matching-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.matching-header h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.matching-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Swipe Instructions */
.swipe-instructions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swipe-hint i {
    font-size: 1.1rem;
}

.swipe-hint.pass i {
    color: #FF6B6B;
}

.swipe-hint.like i {
    color: #FFF8DC;
}

.swipe-hint.super i {
    color: #FFD700;
}

.swipe-container {
    position: relative;
    height: 680px;
    margin-bottom: 40px;
}

.match-cards {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.match-card {
    position: absolute;
    width: 420px;
    height: 580px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 30px;
    cursor: grab;
    user-select: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.match-card:active {
    cursor: grabbing;
}

.match-card.swiping {
    transition: none;
}

/* Top card styling for better readability */
.match-card:first-child {
    background: rgba(5, 5, 10, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Swipe indicators on top card */
.match-card:first-child::before {
    content: '← Swipe';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B6B;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    animation: swipeLeftHint 2s ease-in-out infinite;
    pointer-events: none;
}

.match-card:first-child::after {
    content: 'Swipe →';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF8DC;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    animation: swipeRightHint 2s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

/* Ensure text contrast on stacked cards */
.match-card .provider-badge {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.match-card .provider-badge.featured {
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    color: var(--dark-bg);
    text-shadow: none;
}

.provider-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid #FFD700;
    flex-shrink: 0;
}

.provider-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.provider-badge.featured {
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    color: var(--dark-bg);
}

.match-card h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--pure-white);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.provider-specialty {
    color: #00FFFF;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.provider-location {
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.match-score {
    background: rgba(0, 255, 212, 0.2);
    border: 1px solid #FFF8DC;
    border-radius: 15px;
    padding: 8px 16px;
    margin-bottom: 12px;
    display: inline-block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.match-score strong {
    color: #FFF8DC;
    font-size: 1rem;
}

.provider-highlights {
    list-style: none;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: visible;
}

.provider-highlights li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.provider-highlights i {
    color: #FFF8DC;
    width: 14px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.provider-price {
    font-size: 1rem;
    font-weight: 600;
    color: #00FFFF;
    text-align: center;
    margin-top: auto;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Card structure for better organization */
.card-header {
    text-align: center;
    flex-shrink: 0;
}

.card-body {
    flex-grow: 1;
    overflow: visible;
    margin: 15px 0;
}

.card-footer {
    flex-shrink: 0;
    text-align: center;
    margin-top: auto;
}

.swipe-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.pass-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    color: white;
}

.pass-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.super-like-btn {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: var(--dark-bg);
}

.super-like-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.like-btn {
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    color: white;
}

.like-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 255, 212, 0.4);
}

/* Matches Summary */
.matches-summary {
    margin-top: 60px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
}

.matches-summary h4 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #FFD700;
}

.selected-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.selected-match {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.selected-match img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.selected-match h5 {
    margin-bottom: 5px;
    color: var(--pure-white);
}

.selected-match p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Swipe Hint Animations */
@keyframes swipeLeftHint {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 1;
    }
}

@keyframes swipeRightHint {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) translateX(10px);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

/* Contact Section */
.contact {
    background: rgba(0, 17, 51, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: var(--pure-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #FFD700;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--pure-white);
    opacity: 0.6;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.9rem;
    color: #FFD700;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.liquid-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}

.btn-submit.loading .liquid-loader {
    display: block;
}

.btn-submit.loading span {
    opacity: 0;
}

.liquid {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #FFF8DC);
    animation: liquidFill 2s ease-in-out forwards;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-card {
    padding: 30px;
    text-align: center;
}

.info-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: #FFD700;
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding-top: 0;
    position: relative;
}

.footer-waves {
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 160px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section a {
    color: #FFFFFF !important;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: #FFD700;
    opacity: 1;
}

.footer-section p {
    color: #FFFFFF !important;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px 0 0 50px;
    color: var(--pure-white);
}

.newsletter-form button {
    padding: 15px 25px;
    background: #FFD700;
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: #FFF8DC;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    opacity: 0.6;
}

.footer-bottom p,
.footer-bottom a {
    color: #FFFFFF !important;
}

/* AI Chat Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 280px;
    height: 70px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: var(--transition-smooth);
    padding: 10px 20px;
    animation: pulse 2s infinite;
}

.chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.chat-toggle-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zobo-avatar {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

.chat-toggle-text {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: left;
}

.chat-toggle-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-toggle-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-badge {
    font-size: 1.2rem;
    animation: sparkle 1.5s infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 420px;
    height: 600px;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
    border-radius: 20px;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
}

.zobo-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zobo-avatar-small {
    font-size: 1.5rem;
}

.zobo-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: block;
}

.chat-close {
    background: none;
    border: none;
    color: var(--pure-white);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease-out;
}

.message.bot {
    text-align: left;
}

.message.user {
    text-align: right;
}

.message p {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 20px;
    max-width: 80%;
}

.message.bot p {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.message.user p {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
}

.chat-input {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--pure-white);
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFD700;
    border: none;
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-input button:hover {
    background: #FFF8DC;
}

/* Enhanced Zobo Message Styling */
.message.bot {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bot-avatar {
    font-size: 1.5rem;
    margin-top: 5px;
}

.message-content {
    flex: 1;
}

.message-content ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.message-content ul li {
    padding: 5px 0;
    font-size: 0.9rem;
}

/* Chat Footer */
.chat-footer {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.chat-footer small {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Typing Indicator */
.chat-typing-indicator {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--text-accent);
    border-radius: 50%;
    animation: typingDots 1.4s infinite;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Zobo Action Buttons */
.quick-actions,
.goal-buttons,
.booking-buttons,
.product-buttons,
.upsell-buttons,
.emergency-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-border);
}

.quick-actions h5,
.goal-buttons h5 {
    width: 100%;
    margin: 0 0 10px 0;
    color: var(--text-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.quick-btn,
.goal-btn,
.booking-btn,
.product-btn,
.upsell-btn,
.emergency-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background: var(--glass-bg);
    color: var(--text-primary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.quick-btn:hover,
.goal-btn:hover,
.booking-btn:hover,
.product-btn:hover,
.upsell-btn:hover,
.emergency-btn:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-2px);
}

.booking-btn {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
    font-weight: 500;
}

.upsell-btn.primary {
    background: linear-gradient(135deg, #FFF8DC, #FFD700);
    color: white;
    font-weight: 600;
}

.upsell-btn.secondary {
    background: var(--card-bg);
    color: var(--text-secondary);
}

.emergency-btn {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: white;
    font-weight: 600;
}

.emergency-btn.urgent {
    animation: urgentPulse 1s infinite;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

@keyframes urgentPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light Mode Adjustments for Zobo */
[data-theme="light"] .chat-toggle-text {
    color: white;
}

[data-theme="light"] .chat-close {
    color: white;
}

[data-theme="light"] .chat-input input {
    color: var(--text-primary);
    background: var(--card-bg);
}

[data-theme="light"] .message.bot p {
    background: var(--card-bg);
    color: var(--text-primary);
}

[data-theme="light"] .quick-btn,
[data-theme="light"] .goal-btn,
[data-theme="light"] .product-btn,
[data-theme="light"] .upsell-btn.secondary {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Utilities */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
        text-align: center !important;
    }
    
    .timeline-marker {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .tech-item {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 90vw;
        right: 5vw;
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #B8860B 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 30s linear infinite;
}

.video-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.video-showcase-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.video-showcase-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Video Categories */
.video-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.category-btn:hover {
    background: #B8860B;
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
    border: none;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
    border-color: #B8860B;
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: var(--bg-secondary);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--pure-white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: var(--pure-white);
    opacity: 0.9;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 102, 204, 0.1);
    color: #B8860B;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    max-width: 90%;
    max-height: 90vh;
    width: 1000px;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.close-modal:hover {
    background: #B8860B;
    transform: rotate(90deg);
}

.close-modal i {
    font-size: 1.2rem;
    color: var(--pure-white);
}

.modal-video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.modal-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-video-info {
    padding: 30px;
}

.modal-video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.modal-video-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pagination */
.video-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.disabled) {
    background: #B8860B;
    color: var(--pure-white);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: var(--pure-white);
    border: none;
}

.pagination-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dots {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design for Video Showcase */
@media (max-width: 768px) {
    .video-showcase-title {
        font-size: 2.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .modal-video-info {
        padding: 20px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Order Status Management Styles */
.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.status-pending {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b7400;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.status-confirmed {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: #0d47a1;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
}

.status-processing {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #e65100;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.status-shipped {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: #fff;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.status-delivered {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: #1b5e20;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.status-cancelled {
    background: linear-gradient(135deg, #f44336, #e57373);
    color: #fff;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

/* Status Timeline for Order Tracking */
.status-timeline {
    padding: 30px 0;
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 60px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    margin-left: 20px;
}

.timeline-item:last-child {
    border-left: none;
}

.timeline-item.completed .timeline-icon {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
}

.timeline-item.active .timeline-icon {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
    color: white;
    animation: pulse 2s infinite;
}

.timeline-item.pending .timeline-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-icon {
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    color: var(--pure-white);
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.timeline-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(33, 150, 243, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(33, 150, 243, 0); }
}

/* Order Management Buttons */
.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-width: auto;
}

.order-card {
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-card-header h4 {
    margin: 0;
    color: var(--pure-white);
    font-size: 1.1rem;
}

.order-card-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
}

.order-info p {
    margin: 5px 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .order-card-body {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-actions {
        justify-content: flex-start;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-left: 15px;
    }
    
    .timeline-icon {
        left: -12px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}

/* Service Detail Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 17, 51, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    opacity: 1;
}

.service-modal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

/* Modal Header */
.modal-header {
    text-align: center;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 25px 25px 0 0;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-icon i {
    font-size: 2.5rem;
    color: var(--pure-white);
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0 0 10px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

/* Modal Body */
.modal-body {
    padding: 40px;
}

.modal-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.modal-service-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.service-intro {
    text-align: center;
    margin-bottom: 40px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.9;
}

/* Service Sections */
.service-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.service-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-section h3 i {
    color: #B8860B;
    font-size: 1.3rem;
}

.service-section > p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Expectation Lists */
.expectations-section,
.healy-benefits,
.corporate-packages {
    margin-top: 25px;
}

.expectations-section h4,
.healy-benefits h4,
.corporate-packages h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.expectation-list,
.benefit-list,
.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.expectation-list li,
.benefit-list li,
.package-list li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
    color: var(--text-primary);
}

.expectation-list li strong,
.benefit-list li strong,
.package-list li strong {
    color: #B8860B;
    font-weight: 600;
}

/* Exclusive Offer Section */
.exclusive-offer {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.exclusive-offer h4 {
    color: #B8860B;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.exclusive-offer p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Sections */
.cta-section {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modal Footer */
.modal-footer {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 25px 25px;
    text-align: center;
}

.contact-info h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.contact-info p {
    color: var(--text-primary);
    opacity: 0.8;
    margin: 0 0 20px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Service Modal */
@media (max-width: 768px) {
    .service-modal-content {
        width: 98%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-header {
        padding: 30px 20px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .service-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .service-section h3 {
        font-size: 1.3rem;
    }
    
    .modal-footer {
        padding: 25px 20px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn-primary,
    .contact-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .modal-icon i {
        font-size: 2rem;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .service-section h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}