/* First Principles CSS - Clean, Purposeful Design */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    /* Colors - Original Bothy Sound Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --text: #2d3748;         /* Original dark text */
    --text-light: #4a5568;   /* Original light text */
    --background: #ffffff;   /* Pure white */
    --surface: #f8fafc;      /* Light surface */
    --border: #e2e8f0;       /* Subtle border */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing - Consistent Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Sizing */
    --container-max: 1200px;
    --border-radius: 8px;
    --nav-height: 64px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

/* Button System */
button {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 10;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    border-radius: 25px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-1px);
}

.btn-book {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 10;
}

.btn-book:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-1px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: var(--nav-height);
}

/* Desktop: Show full menu, hide hamburger */
.desktop-menu {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Mobile responsive rules */
@media (max-width: 768px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
}

/* Desktop responsive rules */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-menu {
        display: flex !important;
    }
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    margin: 0;
    transition: opacity 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-brand:hover {
    opacity: 0.8;
    color: var(--text);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Modern Desktop Navigation Links */
.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--text) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    background: transparent !important;
    position: relative !important;
}

.nav-link:hover {
    color: #667eea !important;
    background: rgba(102, 126, 234, 0.08) !important;
    transform: translateY(-1px) !important;
}

.nav-icon {
    font-size: 0.8rem !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s ease !important;
    width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.nav-link:hover .nav-icon {
    opacity: 1 !important;
}

/* Modern Book Button */
.modern-book {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.2s ease !important;
}

.modern-book:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
    transform: translateY(-2px) !important;
}

.modern-book i {
    font-size: 0.8rem !important;
}

/* Hamburger Menu Styles */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(102, 126, 234, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    max-height: 700px;
}



/* Modern Mobile Menu Items */
.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    text-decoration: none;
    color: var(--text);
    border-radius: 12px;
    transition: all 0.2s ease;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(4px);
}

.mobile-nav-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
}

.mobile-nav-icon i {
    font-size: 1.1rem;
    color: #667eea;
}

.mobile-nav-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #667eea !important;
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
}

.mobile-nav-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.mobile-nav-arrow {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Modern Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.mobile-book-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-md);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.2s ease;
}

.mobile-book-modern:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

.mobile-book-modern i {
    font-size: 0.9rem;
}

.mobile-menu-content {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    min-height: 350px;
    gap: 0;
}

.mobile-menu-content a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: var(--space-md) 0;
    text-align: left;
    transition: color 0.2s ease;
    flex: 1;
    display: flex;
    align-items: center;
}

.mobile-menu-content a:hover {
    color: #667eea;
}

.mobile-book {
    width: 100%;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--nav-height) var(--space-lg) var(--space-2xl);
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

/* Hide all video controls */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    width: 100%;
    z-index: 3;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    z-index: 3;
}

.sound-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 4s infinite ease-out;
    will-change: transform, opacity;
    z-index: 1;
    pointer-events: none;
}

.ripple:nth-child(1) { animation-delay: 0s; }
.ripple:nth-child(2) { animation-delay: 1.3s; }
.ripple:nth-child(3) { animation-delay: 2.6s; }

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
        top: 0;
        left: 0;
        transform: scale(0);
    }
    10% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
        top: -200px;
        left: -200px;
        transform: scale(1);
    }
}

/* Testimonial Highlight */
.testimonial-sticky {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: var(--space-lg) var(--space-md);
    backdrop-filter: blur(10px);
}

.testimonial-sticky-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    text-align: left;
}

.testimonial-quote-short {
    flex: 1;
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-author-short {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 120px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Events Widget Section */
.events-widget {
    padding: var(--space-2xl) 0;
    background: var(--surface);
}

.events-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.events-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-weight: 500;
}

.events-frame-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    z-index: 1;
}

.events-frame-container iframe {
    display: block;
    min-height: 800px;
    pointer-events: auto;
    z-index: 2;
    position: relative;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .events-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
        text-align: center;
    }
    
    .events-frame-container iframe {
        min-height: 700px;
    }
}

/* Services Section */
.services {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--background);
}

.services-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.services-title {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: left;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    transition: all 0.2s ease;
    color: white;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* Simple Enquire Button */
.btn-service-simple {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-service-simple:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Card Buttons Layout */
.card-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.card-buttons .btn-service-simple {
    flex: 1;
    text-align: center;
}

/* Details Modal Styles */
.details-modal {
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.details-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    flex-shrink: 0;
    position: relative;
}

/* Details Modal Close Button */
.details-header .close-btn {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    cursor: pointer;
    background: rgba(102, 126, 234, 0.08);
    border: none;
    color: #667eea;
    padding: 0;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.details-header .close-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #5a6fd8;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.details-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.icon-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid white;
}

.icon-arrow {
    width: 20px;
    height: 20px;
    background: white;
    clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
}

.details-header h2 {
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.modal-body {
    padding: var(--space-xl);
    overflow-y: auto;
    flex: 1;
}

.details-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.details-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    display: grid;
    gap: var(--space-sm);
}

.details-features li {
    padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-lg);
    background: rgba(102, 126, 234, 0.04);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    position: relative;
    color: var(--text);
    line-height: 1.4;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.details-features li:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(2px);
}

.details-features li:before {
    content: "✓";
    position: absolute;
    left: var(--space-sm);
    top: var(--space-sm);
    color: #667eea;
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-details-book {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    margin-top: var(--space-sm);
}

.btn-details-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #5a6fd8, #6b42a6);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .details-modal {
        width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
    }
    
    .details-header {
        padding: var(--space-md) var(--space-lg);
    }
    
    .details-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: var(--space-lg);
    }
    
    .details-features li {
        font-size: 0.85rem;
        padding: var(--space-xs) var(--space-xs) var(--space-xs) var(--space-md);
    }
    
    .details-features li:before {
        left: var(--space-xs);
        top: var(--space-xs);
    }
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.icon-individual, .icon-group {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 4px;
}

.icon-individual {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.icon-group {
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.service-features {
    list-style: none;
    margin: var(--space-md) 0;
    text-align: left;
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--space-md);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.btn-service {
    width: 100%;
    margin-top: var(--space-md);
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.btn-service:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--surface);
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

/* Journey Text Styling */
.about-journey {
    margin-bottom: var(--space-xl);
}

.journey-intro {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #667eea;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.journey-experience {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.journey-philosophy {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
    padding-left: var(--space-md);
}

.journey-philosophy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.credentials {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.credential {
    text-align: center;
    color: var(--text-light);
}

.credential strong {
    display: block;
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 600;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: var(--space-2xl) var(--space-lg) var(--space-2xl);
    background: var(--background);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Continuous Ripple Background Effect */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: continuousRipple1 4s ease-out infinite;
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(118, 75, 162, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: continuousRipple2 4s ease-out infinite 1.5s;
    z-index: 1;
}

/* Additional ripple layers for more visual impact */
.contact {
    position: relative;
}

.contact::before {
    /* First ripple layer */
}

.contact::after {
    /* Second ripple layer */
}

/* Create third ripple using a pseudo approach */
.contact-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: continuousRipple3 4s ease-out infinite 3s;
    z-index: 0;
}

@keyframes continuousRipple1 {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes continuousRipple2 {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

@keyframes continuousRipple3 {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.25;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-container h2 {
    margin-bottom: var(--space-sm);
}

.contact-container p {
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

.contact-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.contact-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-secondary-actions {
    display: flex;
    justify-content: center;
}

.btn-primary-centered {
    display: inline-block;
    margin: 0 auto;
}



/* Sticky Action Menu - Mobile Only, Show on Scroll */
.sticky-action-menu {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: none; /* Hidden by default on desktop */
    gap: 0;
    z-index: 1000;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.sticky-action-menu.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.sticky-btn {
    padding: 12px 24px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    white-space: nowrap;
    min-width: 140px;
}

.book-btn {
    background: rgba(102, 126, 234, 0.95);
    color: white;
    border-radius: 25px 0 0 25px;
}

.book-btn:hover {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-2px);
}

.question-btn {
    background: rgba(45, 55, 72, 0.95);
    color: white;
    border-radius: 0 25px 25px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.question-btn:hover {
    background: rgba(45, 55, 72, 1);
    transform: translateY(-2px);
}

/* Question Modal */
.question-modal {
    max-width: 420px;
    width: 90vw;
    border-radius: 12px;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.question-modal .modal-header,
.question-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    color: var(--text);
    border-radius: 12px 12px 0 0;
    position: relative;
}

.question-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 12px 12px 0 0;
}

.question-modal .modal-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.question-modal .close-btn {
    font-size: 1.1rem;
    cursor: pointer;
    background: rgba(102, 126, 234, 0.08);
    border: none;
    color: #667eea;
    padding: 0;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.question-modal .close-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #5a6fd8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.question-modal .modal-body {
    padding: var(--space-lg);
    text-align: center;
}

.contact-options {
    margin-top: var(--space-lg);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.email-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Show sticky menu on mobile only */
@media (max-width: 768px) {
    .sticky-action-menu {
        display: flex;
        bottom: 15px;
        left: 15px;
        right: 15px;
        transform: translateY(100px);
        border-radius: 20px;
    }
    
    .sticky-action-menu.show {
        transform: translateY(0);
    }
    
    .sticky-btn {
        flex: 1;
        min-width: auto;
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .book-btn {
        border-radius: 20px 0 0 20px;
    }
    
    .question-btn {
        border-radius: 0 20px 20px 0;
    }
}



/* Testimonials Section - Super Minimal Design */
.testimonials {
    background: var(--surface);
    padding: var(--space-2xl) var(--space-lg);
}

.testimonials-container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-2xl);
    color: var(--text);
}

/* Swipeable Testimonials Carousel */
.testimonials-carousel-wrapper {
    margin-bottom: var(--space-2xl);
}

.testimonials-carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-lg);
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    touch-action: pan-y pinch-zoom;
}

.testimonial-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 0 var(--space-sm);
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: var(--space-lg) var(--space-md);
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    min-height: 150px;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.testimonial-card-modern .testimonial-quote-short {
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.testimonial-card-modern .testimonial-author-short {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 120px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #667eea;
    transform: scale(1.2);
}

.indicator:hover {
    background: #667eea;
}

.testimonial-featured p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}



/* Store Section - Single Gradient Card */
.store {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--background);
}

.store-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.store-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    border-radius: 20px;
    padding: var(--space-2xl);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3);
}

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

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.store-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-image {
    width: 280px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

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

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

.store-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.store-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.store-creator {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.store-cta {
    display: inline-block;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-card:hover .cta-text {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}





/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    animation: slideDown 0.3s ease;
}

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

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

/* Individual Consultation Modal */
.individual-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Workplace Consultation Modal */
.workplace-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.individual-modal .modal-header,
.workplace-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    color: var(--text);
    border-radius: 12px 12px 0 0;
    position: relative;
}

.individual-modal .modal-header::before,
.workplace-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 12px 12px 0 0;
}

.individual-modal .modal-header h2,
.workplace-modal .modal-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.individual-modal .close-btn,
.workplace-modal .close-btn {
    font-size: 1.1rem;
    cursor: pointer;
    background: rgba(102, 126, 234, 0.08);
    border: none;
    color: #667eea;
    padding: 0;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.individual-modal .close-btn:hover,
.workplace-modal .close-btn:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #5a6fd8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.individual-modal .modal-body {
    padding: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.workplace-modal .modal-body {
    padding: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

#individual-form-container,
#workplace-form-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}



#individual-form-container iframe,
#workplace-form-container iframe {
    width: 100%;
    height: 500px;
    min-height: 500px;
    border: none;
    border-radius: 0 0 12px 12px;
}

.individual-modal .modal-body::before,
.workplace-modal .modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 3% auto;
        width: 92%;
        max-width: none;
    }
    
    .individual-modal,
    .workplace-modal {
        max-width: 380px;
        border-radius: 12px;
        max-height: 90vh;
    }
    
    .individual-modal .modal-header {
        height: 140px;
    }
    
    .modal-hero-section {
        height: 140px;
    }
    
    .modal-hero-content {
        padding: var(--space-md);
    }
    
    .modal-hero-content h2 {
        font-size: 1.2rem;
    }
    
    .modal-hero-content p {
        font-size: 0.85rem;
    }
    
    .workplace-modal .modal-header {
        padding: var(--space-sm) var(--space-md);
        border-radius: 12px 12px 0 0;
    }
    
    .workplace-modal .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .individual-modal .modal-body,
    .workplace-modal .modal-body {
        min-height: 450px;
    }
    
    .individual-modal .modal-body iframe,
    .workplace-modal .modal-body iframe {
        height: 450px !important;
        min-height: 450px;
    }
    
    .individual-modal .close-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    
    .workplace-modal .close-btn {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .individual-modal,
    .workplace-modal {
        max-width: 350px;
    }
    
    .individual-modal .modal-header {
        height: 120px;
    }
    
    .modal-hero-section {
        height: 120px;
    }
    
    .modal-hero-content {
        padding: var(--space-sm);
    }
    
    .modal-hero-content h2 {
        font-size: 1.1rem;
    }
    
    .modal-hero-content p {
        font-size: 0.8rem;
    }
    
    .individual-modal .modal-body iframe,
    .workplace-modal .modal-body iframe {
        height: 400px !important;
        min-height: 400px;
    }
}

/* Modern FAQ Section */
.faq {
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-sm);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.02);
}

.faq-question-text {
    flex: 1;
    text-align: left;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: var(--space-md);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 0.875rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    background: var(--primary-gradient);
    transform: rotate(45deg);
}

.faq-question.active .faq-icon i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding-bottom: var(--space-lg);
}

.faq-answer-content {
    padding: 0 var(--space-xl);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding-top: var(--space-lg);
}

.faq-answer-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 var(--space-md) 0;
    font-size: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: var(--space-sm) 0 0 0;
    padding-left: var(--space-lg);
    color: var(--text-light);
    line-height: 1.6;
}

.faq-answer-content li {
    margin-bottom: var(--space-sm);
    word-wrap: break-word;
    hyphens: auto;
}

.faq-answer-content li:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
    
    .faq-question-text {
        line-height: 1.5;
        word-break: break-word;
    }
    
    .faq-answer-content {
        padding: 0 var(--space-lg);
        padding-top: var(--space-md);
    }
    
    .faq-answer.active {
        padding-bottom: var(--space-md);
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: var(--space-sm);
    }
    
    .faq-icon i {
        font-size: 0.75rem;
    }
}

/* Footer */
.footer {
    padding: var(--space-lg);
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-content p {
    margin: 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
}

.social-links a i {
    font-size: 1.1rem;
    line-height: 1;
}

/* Fallback text for when Font Awesome doesn't load */
.social-links a[href*="instagram"]:before {
    content: "📷";
    font-style: normal;
}

.social-links a[href*="facebook"]:before {
    content: "👤";
    font-style: normal;
}

.social-links a[href*="bothyqigong.com"]:before {
    content: "🪷";
    font-style: normal;
}

/* Hide fallback when Font Awesome icons are present */
.social-links a i + *:before,
.social-links a:has(i):before {
    display: none;
}

.social-links a:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links a[href*="facebook"]:hover {
    background: #1877f2;
}

.social-links a[href*="bothyqigong.com"]:hover {
    background: linear-gradient(135deg, #10b981, #059669);
}

.footer p {
    color: var(--text-light);
    margin: 0;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(102, 126, 234, 0.08);
    border: none;
    font-size: 1.2rem;
    color: #667eea;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.modal-close:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #5a6fd8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.booking-widget-container {
    margin-top: var(--space-lg);
    min-height: 400px;
}

/* Ticket Tailor Widget Styling */
.tt-widget {
    width: 100%;
}

.tt-widget iframe {
    width: 100% !important;
    min-height: 500px !important;
    border: none;
    border-radius: var(--border-radius);
}

.tt-widget-fallback {
    padding: var(--space-lg);
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    background: var(--surface);
}

.tt-widget-fallback a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.tt-widget-fallback a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
    }
    
    .testimonial-sticky-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .testimonial-quote-short {
        font-size: 0.95rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
    }
    
    .sound-circle {
        width: 150px;
        height: 150px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .journey-intro {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .journey-experience {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: justify;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .journey-philosophy {
        font-size: 1rem;
        line-height: 1.6;
        padding-left: var(--space-sm);
        text-align: justify;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .contact-actions-container {
        gap: var(--space-md);
    }
    
    .contact-actions {
        width: 100%;
    }
    
    .contact-secondary-actions {
        width: 100%;
    }
    
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .testimonial-slide {
        padding: 0;
    }
    
    .testimonial-card-modern {
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .testimonial-card-modern .testimonial-quote-short {
        font-size: 0.95rem;
    }
    
    .testimonial-card-modern .testimonial-author-short {
        min-width: auto;
        justify-content: center;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .carousel-btn {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .store-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .store-visual {
        order: -1;
    }
    
    .store-image {
        width: 250px;
        height: 200px;
        margin: 0 auto;
    }
    
    .store-info h2 {
        font-size: 2rem;
    }
    
    .store-description {
        font-size: 1.1rem;
    }
    
    .store-creator {
        font-size: 1rem;
    }
    

    
    .back-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--nav-height) var(--space-sm) var(--space-lg);
    }
    
    .services, .about, .contact, .testimonials, .instagram-feed {
        padding: var(--space-lg) var(--space-sm);
    }
    
    /* Enhanced mobile ripple visibility */
    .contact::before {
        border-width: 3px;
        opacity: 0.5;
    }
    
    .contact::after {
        border-width: 2px;
        opacity: 0.4;
    }
    
    .contact-container::before {
        border-width: 2px;
        opacity: 0.35;
    }
}
    
    .journey-intro {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .journey-experience {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .journey-philosophy {
        line-height: 1.6;
        text-align: justify;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .journey-philosophy {
        font-size: 0.95rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--space-lg);
    }
}

/* Co-Created Events Section */
.co-created-events {
    padding: 4rem 0;
    background: #f8fafc;
}

.co-created-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.co-created-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.co-created-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.co-created-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 800px;
    margin: 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.co-created-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    overflow: hidden;
}

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

.co-created-event-card:hover .event-image img {
    transform: scale(1.02);
}

.event-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
    line-height: 1.3;
}

.event-content p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.event-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-event-details {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-event-details:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.btn-event-ticket {
    padding: 0.5rem 1rem;
    background: #1f2937;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-event-ticket:hover {
    background: #374151;
    transform: translateY(-1px);
}

/* Mobile responsiveness for Co-Created Events */
@media (max-width: 768px) {
    .co-created-events {
        padding: 3rem 0;
    }
    
    .co-created-container {
        padding: 0 1.5rem;
    }
    
    .co-created-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .co-created-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .co-created-event-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .event-image {
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
    }
    
    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-content h3 {
        font-size: 1.25rem;
    }
    
    .event-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .event-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-event-details,
    .btn-event-ticket {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* Event Details Modal */
.event-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.event-details-modal.show {
    display: flex;
}

.event-details-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.event-details-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.event-details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102, 126, 234, 0.08);
    border: none;
    font-size: 1.2rem;
    color: #667eea;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.event-details-close:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #5a6fd8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.event-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    padding-right: 3rem;
    line-height: 1.3;
}

.event-details-body {
    padding: 2rem;
}

.event-details-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1rem;
}

.event-details-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.event-details-highlights li {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.event-details-highlights li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
}

.event-details-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.btn-modal-ticket {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-modal-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .event-details-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .event-details-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .event-details-title {
        font-size: 1.3rem;
        padding-right: 3rem;
    }
    
    .event-details-body {
        padding: 1.5rem;
    }
    
    .event-details-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .btn-modal-ticket {
        width: 100%;
    }
}