/* CSS Variables */
:root {
    --brown-primary: #6B4F3B;
    --cream: #F5F1EB;
    --brown-dark: #3D2B1F;
    --brown-mid: #9C7B65;
    --white: #FFFFFF;
    --black: #0D0D0D;
    --gold-accent: #C8A97E;
    --text-muted: #8A7568;
    --gradient-btn: linear-gradient(135deg, #6B4F3B 0%, #9C7B65 50%, #C8A97E 100%);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-btn);
    z-index: 10002;
    width: 0%;
    transition: width 0.05s linear;
}

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

/* Custom cursor only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    * { cursor: none; }
}

html {
    scroll-behavior: auto; /* Handled by JS for smooth scroll */
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--black);
    overflow-x: hidden;
    font-weight: 300;
}

/* Top Banner */
.top-banner {
    background-color: var(--brown-dark);
    color: var(--gold-accent);
    padding: 0.8rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.top-banner .pulse-text {
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; text-shadow: 0 0 8px rgba(200, 169, 126, 0.6); }
}

.top-banner a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    margin-left: 1rem;
    border-bottom: 1px solid var(--gold-accent);
    transition: all 0.3s;
    padding: 0.2rem 0.5rem;
}

.top-banner a:hover {
    color: var(--brown-dark);
    background-color: var(--gold-accent);
    border-bottom-color: transparent;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: var(--brown-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--brown-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    background-color: rgba(107, 79, 59, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.font-display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.font-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
}

.font-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Global Layout & Utilities */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 79, 59, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--cream);
    border: none;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(200, 169, 126, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-outline {
    background-color: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 241, 235, 0.5);
    backdrop-filter: blur(4px);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--cream);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.btn-outline:hover {
    color: var(--brown-dark);
    border-color: var(--cream);
}

.btn-outline:hover::before {
    transform: translateX(100%);
}

.btn-outline span {
    position: relative;
    z-index: 2;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-clip {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.reveal-clip.in-view {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Page Load Animation Sequence */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--brown-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.preloader-logo {
    width: 350px;
    height: auto;
    animation: pulseFade 1.5s infinite alternate;
}

@keyframes pulseFade {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 38px; /* Offset for top banner */
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, top 0.4s ease, backdrop-filter 0.4s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    top: 0; /* Align to top when scrolled */
    padding: 1rem 0;
    background-color: rgba(245, 241, 235, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s ease;
}

.navbar.scrolled .logo {
    color: var(--brown-dark);
}

.navbar-logo-img {
    height: 55px; /* Restored layout height to fix overlap */
    width: auto;
    transform: scale(1.8) translateY(-4px); /* Scale visually and perfectly center */
    transform-origin: left center;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo-img {
    filter: brightness(0);
    transform: scale(1.4) translateY(0); /* Shrink slightly on scroll */
}

.logo-mark {
    font-weight: 400;
    font-style: italic;
    color: var(--gold-accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--brown-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: 0.3s ease;
    transform-origin: center;
}

.navbar.scrolled .mobile-toggle span {
    background-color: var(--brown-dark);
}

/* Hamburger open animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(61, 43, 31, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold-accent);
}

.mobile-menu .mobile-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background-color: var(--gold-accent);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1600&q=60');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(61,43,31,0.92) 0%, rgba(61,43,31,0.7) 40%, rgba(13,13,13,0.5) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    border-left: 1px solid var(--gold-accent);
    max-width: 800px;
}

.hero-label {
    color: var(--gold-accent);
    font-size: 11px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 120px);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 40px);
    color: var(--gold-accent);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--cream);
    border-bottom: 2px solid var(--cream);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Trust Stats  */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
    border-right: 1px solid rgba(200, 169, 126, 0.2);
    transition: transform 0.3s ease;
}

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

.stat-item:hover {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header.left-aligned {
    text-align: left;
}

.section-label {
    color: var(--brown-mid);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 60px);
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.bg-cream { background-color: var(--cream); }
.bg-dark { background-color: var(--brown-dark); color: var(--cream); }
.bg-dark .section-title { color: var(--cream); }

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-top: 3px solid var(--brown-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--brown-primary);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 79, 59, 0.15);
}

.service-card:hover::before {
    height: 100%;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--cream);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brown-dark);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--cream);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover .service-desc {
    color: rgba(245, 241, 235, 0.8);
}

/* Why Choose Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.why-card {
    padding: 3rem 2rem;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 3px solid var(--gold-accent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(200, 169, 126, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 79, 59, 0.12);
}

.why-card:hover::after {
    opacity: 1;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(13,13,13,0.9) 0%, rgba(61,43,31,0.4) 100%);
    padding: 3rem;
    border: 1px solid rgba(200, 169, 126, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 126, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(200, 169, 126, 0.05);
}

.stars {
    color: #C8A97E;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Philosophy Section */
.philosophy-split {
    display: flex;
    align-items: center;
}

.philosophy-img-wrap {
    flex: 1;
    position: relative;
    height: auto;
    overflow: hidden;
    display: flex;
}

.philosophy-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.philosophy-content {
    flex: 1;
    padding: 5rem 6rem;
    background-color: var(--cream);
    margin-left: 0;
    z-index: 2;
    position: relative;
    box-shadow: -20px 0 50px rgba(0,0,0,0.05);
}

.philosophy-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 3rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}

.philosophy-list {
    list-style: none;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--brown-dark);
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    color: var(--gold-accent);
    font-size: 0.8rem;
}

/* About / Coaches Section */
.coaches-wrap {
    display: flex;
    gap: 4rem;
    align-items: flex-end;
}

.coach-card {
    flex: 1;
    background-color: var(--black);
    border: 1px solid rgba(200, 169, 126, 0.2);
    padding: 3rem;
    position: relative;
}

.coach-card.large {
    flex: 1.2;
    padding-bottom: 4rem;
}

.coach-img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    object-fit: contain;
    border: none;
    margin-bottom: 1.5rem;
    filter: grayscale(15%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.coach-card:hover .coach-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.coach-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.coach-title {
    color: var(--gold-accent);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.coach-creds, .coach-stats {
    color: rgba(245, 241, 235, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.stat-highlight {
    color: var(--cream);
    font-weight: 500;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(156, 123, 101, 0.3);
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
    position: relative;
    transition: color 0.3s;
}

.tab-btn.active {
    color: var(--brown-dark);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s;
}

.tab-btn.active::after {
    width: 100%;
}

.pricing-content {
    display: none;
    animation: fadeIn 0.5s;
}

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

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

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

.pricing-card {
    background-color: var(--white);
    padding: 3rem;
    border: 1px solid rgba(156, 123, 101, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(107, 79, 59, 0.1), 0 0 20px rgba(200, 169, 126, 0.15);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(200, 169, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 169, 126, 0); }
}

.pricing-card.popular {
    border: 2px solid var(--gold-accent);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: pulseGlow 2.5s infinite;
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-12px);
    animation: none;
    box-shadow: 0 20px 40px rgba(200, 169, 126, 0.3);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gold-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pricing-title {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(156, 123, 101, 0.2);
    padding-bottom: 1.5rem;
}

.price-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.price-duration {
    color: var(--text-muted);
}

.price-amount {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--brown-dark);
}

/* Schedule Section */
.schedule-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.schedule-block {
    border-top: 1px solid rgba(245, 241, 235, 0.2);
    padding-top: 3rem;
}

.schedule-title {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.time-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.time-label {
    width: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(245, 241, 235, 0.6);
}

.time-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(61,43,31,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    color: var(--gold-accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* Social / Instagram */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.ig-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 9/16;
}

.ig-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ig-item:hover video {
    transform: scale(1.05);
}

/* Contact & Footer */
.contact-split {
    display: flex;
    background-color: var(--black);
    margin-top: -2rem;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    padding: 6rem 5rem;
    color: var(--cream);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-value {
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-value a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--gold-accent);
}

.map-container {
    flex: 1;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) hue-rotate(180deg); /* Dark mode map styling */
}

footer {
    background-color: #050505;
    color: #666;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.copy {
    margin-top: 3rem;
    font-size: 0.8rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    text-decoration: none;
    animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappRipple 2s ease-out infinite;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-8px) scale(1.05); }
    50% { transform: translateY(0) scale(1); }
    70% { transform: translateY(-4px) scale(1.02); }
}

@keyframes whatsappRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Dividers */
.divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
}

.divider-top {
    top: -99px;
}

.divider svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy-split, .coaches-wrap, .contact-split { flex-direction: column; }
    .philosophy-content { margin-left: 0; margin-top: 0; padding: 4rem 2rem; }
    .philosophy-img-wrap { height: auto; width: 100%; }
    .schedule-blocks { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .nav-links, .nav-btn { display: none; }
    .mobile-toggle { display: flex; }
    .services-grid, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(2) { grid-row: auto; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
    .btn { text-align: center; }
    .pricing-tabs { flex-direction: column; align-items: center; gap: 1.5rem; }
    
    .why-us-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .trust-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(200, 169, 126, 0.15); padding-bottom: 2rem; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .top-banner { font-size: 0.75rem; padding: 0.5rem 0; }
    .top-banner a { display: block; margin-top: 0.3rem; margin-left: 0; }
    .navbar { top: 50px; } /* taller on mobile for two lines in top banner */
    section { padding: 4rem 0; }

    /* Hide custom cursor on mobile */
    .cursor-dot, .cursor-ring { display: none !important; }

    /* Hero mobile optimization */
    .hero-bg {
        background-position: 70% center;
        background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=800&q=60');
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(61,43,31,0.9) 0%, rgba(13,13,13,0.6) 100%);
    }
    .hero-content {
        padding-left: 1rem;
    }

    /* Navbar logo scale fix for mobile */
    .navbar-logo-img {
        transform: scale(1.2) translateY(0);
    }
    .navbar.scrolled .navbar-logo-img {
        transform: scale(1.0) translateY(0);
    }
}
