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

:root {
    --bg-dark: #ffffff;
    --bg-purple-dark: #2c0e5e;
    --bg-card: #ffffff;
    --bg-glass: #ffffff;
    --bg-glass-hover: #f8fafc;
    --border-glass: #e2e8f0;
    --border-glass-hover: #cbd5e1;
    
    --primary: #6d28d9;
    --primary-hover: #5b21b6;
    --primary-glow: rgba(109, 40, 217, 0.15);
    
    --secondary: #ec4899;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Background Mesh / Glow Effects */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}
.bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-dark);
    padding: 11px 27px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: rgba(109, 40, 217, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
    transition: var(--transition);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

/* Glassmorphism Containers */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.glass-panel:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo span {
    color: #1e293b;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    padding: 10px 0;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link.active {
    color: var(--primary);
}

/* Mega Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}
.nav-item-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    padding: 30px;
}

/* Dropdown width adjustments */
.nav-item-dropdown.mega-academy .mega-dropdown {
    width: 760px;
}
.nav-item-dropdown.mega-coach .mega-dropdown {
    width: 380px;
}

.mega-dropdown-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.nav-item-dropdown.mega-academy .mega-dropdown-container {
    grid-template-columns: 1fr 1.2fr;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mega-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: left;
}
.mega-item:hover {
    background: #f8fafc;
}
.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.mega-item:hover .mega-icon {
    background: var(--primary);
    color: #ffffff;
}
.mega-text {
    display: flex;
    flex-direction: column;
}
.mega-text strong {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}
.mega-text span {
    font-size: 12px;
    color: #64748b;
}

/* Discover Column Cards */
.mega-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: left;
}
.mega-item-card:hover {
    background: #f8fafc;
}
.mega-thumb {
    width: 55px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #e2e8f0;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Shopping Cart Icon */
.cart-trigger {
    position: relative;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}
.cart-trigger:hover {
    color: var(--primary);
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Language Switcher Dropdown */
.lang-switcher-dropdown {
    position: relative;
    display: inline-block;
}
.lang-trigger {
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.lang-trigger:hover {
    background: #f1f5f9;
    color: var(--primary);
}
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13, 8, 25, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    overflow: hidden;
    padding: 6px 0;
}
.lang-switcher-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}
.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #f1f5f9;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.lang-dropdown-menu a:hover {
    background: var(--primary);
    color: #ffffff;
}
.lang-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1e293b;
    font-size: 22px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 20px 140px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: var(--bg-purple-dark);
    color: #ffffff;
    overflow: hidden;
}
.hero-headline {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 850px;
    color: #ffffff;
    font-weight: 800;
}
.hero-sub {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-bottom: 40px;
}
.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

/* Hero Media Wrapper (Mindvalley Video Preview) */
.hero-media-wrapper {
    width: 100%;
    max-width: 900px;
    perspective: 1000px;
}
.hero-media-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.25);
    background: #020105;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
    aspect-ratio: 16/9;
    width: 100%;
}
.hero-media-frame iframe,
.hero-media-frame video {
    width: 100%;
    height: 100%;
    border: none;
}

/* Home Section Layout */
.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-size: 40px;
    margin-bottom: 15px;
}
.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Philosophy / Cards */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.philosophy-card {
    text-align: left;
}
.philosophy-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    background: rgba(245, 158, 11, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.philosophy-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Programs & Products Grids */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-tab {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}
.filter-tab.active, .filter-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.items-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.item-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.item-card-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.item-card:hover .item-card-image img {
    transform: scale(1.05);
}
.item-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(7, 2, 13, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.item-card-instructor {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.item-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.item-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}
.item-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.item-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}
.item-btn-cart {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}
.item-btn-cart:hover {
    background: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Event List */
.events-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.event-date-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    min-width: 90px;
}
.event-date-badge span.day {
    display: block;
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.event-date-badge span.month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}
.event-info {
    flex-grow: 1;
}
.event-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.event-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}
.event-meta i {
    color: var(--accent);
}
.event-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    text-align: center;
}
.team-img-wrapper {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-glass);
    margin: 0 auto 20px auto;
    width: 180px;
    height: 180px;
    transition: var(--transition);
}
.team-card:hover .team-img-wrapper {
    border-color: var(--primary);
    transform: scale(1.03);
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.team-card p.title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.team-bio-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px dashed var(--text-muted);
    cursor: pointer;
}
.team-bio-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Accordion FAQs */
.accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item {
    border-radius: 12px;
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: #1e293b;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordion-icon {
    font-size: 14px;
    transition: var(--transition);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content-inner {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 15px;
    border-top: 1px solid #f1f5f9;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Spiritual Quiz Modal / Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 2, 13, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    max-width: 600px;
    width: 100%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover {
    color: #fff;
}

/* Quiz Steps */
.quiz-step {
    display: none;
}
.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.quiz-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
}
.quiz-question {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.quiz-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}
.quiz-option:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
}
.quiz-option.selected {
    background: rgba(139, 92, 246, 0.25);
    border-color: var(--primary);
    color: #fff;
}
.quiz-footer {
    display: flex;
    justify-content: space-between;
}

/* Quiz Results page elements */
.quiz-recommendations {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.rec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 12px;
    border-radius: 8px;
}
.rec-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}
.rec-info h4 {
    font-size: 16px;
}
.rec-info a {
    font-size: 12px;
    color: var(--accent);
}

/* Footer & Newsletter */
.site-footer {
    background: #040108;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 20px 30px 20px;
    color: #f8fafc;
}
.site-footer .logo span {
    color: #ffffff;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-newsletter p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    max-width: 320px;
}
.newsletter-input {
    background: none;
    border: none;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    flex-grow: 1;
    outline: none;
}
.newsletter-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-btn:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}
.social-links {
    display: flex;
    gap: 15px;
    font-size: 16px;
}
.social-link:hover {
    color: #fff;
}

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

/* Custom dynamic alerts */
.toast-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-glass);
    border-left: 4px solid var(--primary);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    z-index: 3000;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Grid Utility Classes */
.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.grid-1-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px 20px;
        align-items: flex-start;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-item-dropdown:hover .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        width: 100%;
        background: transparent;
        border: none;
        padding-left: 15px;
    }
    .hero-headline {
        font-size: 40px;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .grid-2-1,
    .grid-1-1,
    .grid-1-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Custom Overhaul Styles */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
    background: #f8fafc;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #ffffff !important;
    padding: 13px 31px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

/* Featured Logos */
.featured-logos-section {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}
.featured-logos-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 20px;
    font-weight: 700;
}
.featured-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.featured-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #0f172a;
    opacity: 0.5;
    transition: var(--transition);
}
.featured-logo:hover {
    opacity: 0.9;
}

/* Begin Your Journey Today */
.journey-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.journey-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.journey-sub {
    font-size: 17px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}
.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 5px;
}
.avatar-group {
    display: flex;
    margin-right: 10px;
}
.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
    background: #e2e8f0;
}
.avatar-img:first-child {
    margin-left: 0;
}
.avatar-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Immersive Experiences / Meditation Tracks Slider */
.immersive-section {
    background: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}
.immersive-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.meditation-slider-wrapper {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.slider-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 50s linear infinite;
}
.slider-row-reverse {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-reverse 50s linear infinite;
}
.meditation-slider-wrapper:hover .slider-row,
.meditation-slider-wrapper:hover .slider-row-reverse {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes marquee-reverse {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.meditation-card {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.meditation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.meditation-card span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.meditation-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.2);
}

/* Center Overlapping iPhone Player Mockup */
.iphone-player-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 490px;
    background: #0f172a;
    border: 8px solid #334155;
    border-radius: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    z-index: 100;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e0b36 0%, #0c021f 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    font-family: var(--font-body);
}
.iphone-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    opacity: 0.8;
}
.iphone-player-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.iphone-art {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, var(--bg-purple-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.1);
    animation: rotateArt 10s linear infinite;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
}
@keyframes rotateArt {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.iphone-art i {
    font-size: 40px;
    color: #ffffff;
}
.iphone-track-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}
.iphone-track-sub {
    font-size: 12px;
    color: #a78bfa;
}
.iphone-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 10px;
}
.iphone-progress {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    position: relative;
}
.iphone-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    background: var(--primary);
    border-radius: 3px;
}
.iphone-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.iphone-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.8;
}
.iphone-btn-play {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 1;
}

/* Form Styles for light theme */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}
.form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 12px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
}

@media (max-width: 1024px) {
    .iphone-player-mockup {
        display: none;
    }
}

/* Premium Meditation Timer Modal Widget */
.timer-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.timer-widget-overlay.active {
    opacity: 1;
    visibility: visible;
}
.timer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(109, 40, 217, 0.12), 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.timer-widget-overlay.active .timer-card {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}
.timer-display {
    font-size: 72px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -2px;
    margin: 10px 0;
    background: linear-gradient(135deg, #2e0854, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.timer-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
.timer-actions button {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.timer-actions #timer-start-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
}
.timer-actions #timer-start-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.2);
}
.timer-actions #timer-pause-btn {
    background: #f59e0b;
    color: #ffffff;
    border: none;
}
.timer-actions #timer-pause-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}
.timer-actions #timer-reset-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.timer-actions #timer-reset-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
}
.timer-slider {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin: 15px 0;
}
.timer-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
    transition: transform 0.1s ease;
}
.timer-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Mobile responsive adjustments for header action buttons and language dropdown */
@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }
    .lang-trigger {
        padding: 6px 8px;
        font-size: 13px;
        gap: 4px;
    }
    .lang-dropdown-menu {
        min-width: 90px;
    }
    .lang-dropdown-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
}

