/* ============================================
   ECO PARK YOGA – MADURAI
   Premium Wellness Brand Stylesheet
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Green Palette */
    --primary-50: #f0fdf4;
    --primary-100: #dcfce7;
    --primary-200: #bbf7d0;
    --primary-300: #86efac;
    --primary-400: #4ade80;
    --primary-500: #22c55e;
    --primary-600: #16a34a;
    --primary-700: #15803d;
    --primary-800: #166534;
    --primary-900: #14532d;

    /* Accent Earth Tones */
    --accent-gold: #d4a853;
    --accent-warm: #f5e6d3;
    --accent-sage: #87a96b;

    /* Light Theme */
    --bg-primary: #fafdf7;
    --bg-secondary: #f0f7ed;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fdf5;
    --text-primary: #1a2e1a;
    --text-secondary: #3d5a3d;
    --text-muted: #6b8f6b;
    --border-color: rgba(22, 101, 52, 0.1);
    --shadow-sm: 0 2px 8px rgba(22, 101, 52, 0.06);
    --shadow-md: 0 8px 30px rgba(22, 101, 52, 0.1);
    --shadow-lg: 0 20px 60px rgba(22, 101, 52, 0.12);
    --shadow-xl: 0 30px 80px rgba(22, 101, 52, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --nav-bg: rgba(250, 253, 247, 0.9);
    --overlay-gradient: linear-gradient(135deg, rgba(20,83,45,0.7), rgba(22,163,74,0.4));
}

[data-theme="dark"] {
    --bg-primary: #0a1a0a;
    --bg-secondary: #0f250f;
    --bg-card: #142814;
    --bg-card-hover: #1a3a1a;
    --text-primary: #e8f5e8;
    --text-secondary: #b8d4b8;
    --text-muted: #7aaa7a;
    --border-color: rgba(74, 222, 128, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
    --glass-bg: rgba(20, 40, 20, 0.85);
    --glass-border: rgba(74, 222, 128, 0.1);
    --nav-bg: rgba(10, 26, 10, 0.92);
    --overlay-gradient: linear-gradient(135deg, rgba(10,26,10,0.85), rgba(20,83,45,0.6));
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.lotus {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 20px;
    animation: lotusRotate 3s ease-in-out infinite;
}

.petal {
    position: absolute;
    width: 24px;
    height: 40px;
    background: var(--primary-500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 50%;
    left: 50%;
    transform-origin: center bottom;
    opacity: 0.8;
    animation: petalPulse 2s ease-in-out infinite;
}

.p1 { transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.p2 { transform: translate(-50%, -100%) rotate(60deg); animation-delay: 0.15s; }
.p3 { transform: translate(-50%, -100%) rotate(120deg); animation-delay: 0.3s; }
.p4 { transform: translate(-50%, -100%) rotate(180deg); animation-delay: 0.45s; }
.p5 { transform: translate(-50%, -100%) rotate(240deg); animation-delay: 0.6s; }
.p6 { transform: translate(-50%, -100%) rotate(300deg); animation-delay: 0.75s; }

.center-circle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes lotusRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(30deg); }
}

@keyframes petalPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scale(1.05); }
}

.loader-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* === Section Common === */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-600);
    background: var(--primary-100);
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

[data-theme="dark"] .section-tag {
    background: rgba(74, 222, 128, 0.1);
    color: var(--primary-400);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    z-index: 1001;
}

.navbar.scrolled .nav-logo {
    color: var(--primary-700);
}

[data-theme="dark"] .navbar.scrolled .nav-logo {
    color: var(--primary-400);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--primary-400);
    animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-400);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.toggle-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled .toggle-btn {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.toggle-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.navbar.scrolled .toggle-btn:hover {
    background: var(--primary-100);
    color: var(--primary-700);
}

.lang-toggle {
    width: auto;
    padding: 0 14px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-500); /* Fixed: Better visibility on mobile */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
}

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

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

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

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('images/hero-bg.png') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 26, 10, 0.5) 0%,
        rgba(20, 83, 45, 0.6) 50%,
        rgba(10, 26, 10, 0.8) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--primary-300);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--primary-300), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.2s both;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
}

/* Floating Particle */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(134, 239, 172, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* === Highlights Section === */
.highlights {
    background: var(--bg-secondary);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 20px;
    font-size: 1.6rem;
    color: var(--primary-700);
    transition: all 0.4s ease;
}

[data-theme="dark"] .highlight-icon {
    background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(74,222,128,0.2));
    color: var(--primary-400);
}

.highlight-card:hover .highlight-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary-400);
    border-radius: 24px;
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: #fff;
    padding: 20px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    z-index: 2;
}

.about-image {
    position: relative;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-feature i {
    color: var(--primary-500);
    font-size: 1rem;
}

/* === Trainers Section === */
.trainers {
    background: var(--bg-secondary);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trainer-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.trainer-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.trainer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.trainer-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.trainer-link:hover {
    background: var(--primary-500);
    transform: translateY(-3px);
}

.trainer-info {
    padding: 24px;
    text-align: center;
}

.trainer-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trainer-qualification {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 4px;
}

[data-theme="dark"] .trainer-qualification {
    color: var(--primary-400);
}

.trainer-experience {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.trainer-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary-600);
    font-weight: 500;
    padding: 8px 16px;
    background: var(--primary-50);
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent phone number wrapping */
}

.trainer-phone i {
    transform: rotate(90deg);
}

[data-theme="dark"] .trainer-phone {
    background: rgba(74, 222, 128, 0.1);
    color: var(--primary-400);
}

.trainer-phone:hover {
    background: var(--primary-500);
    color: #fff;
}

/* Management */
.management-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.management-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.management-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-100);
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mgmt-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.management-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2px 0 6px;
}

/* === Parallax Quote === */
.parallax-quote {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('images/parallax-bg.png') center/cover no-repeat fixed;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 26, 10, 0.85), rgba(20, 83, 45, 0.75));
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    max-width: 700px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-400);
    margin-bottom: 20px;
    opacity: 0.6;
}

.parallax-content blockquote {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    font-style: italic;
}

.quote-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-gold));
    margin: 24px auto;
    border-radius: 3px;
}

.quote-author {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* === Timing Section === */
.timing-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.timing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

[data-theme="dark"] .timing-card::before {
    background: radial-gradient(circle, rgba(74,222,128,0.05) 0%, transparent 70%);
}

.timing-visual {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sun-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.sun {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4), 0 0 60px rgba(251, 191, 36, 0.2);
}

.sun-rays {
    position: absolute;
    inset: -15px;
    border: 3px dashed rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    animation: rayRotate 15s linear infinite;
}

@keyframes rayRotate {
    to { transform: rotate(360deg); }
}

.timing-details {
    position: relative;
    z-index: 1;
}

.timing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    padding: 6px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.timing-time {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.time-start, .time-end {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.time-start small, .time-end small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.time-separator {
    color: var(--primary-500);
    font-size: 1.2rem;
}

.timing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.timing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.timing-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.timing-features i {
    color: var(--primary-500);
}

/* === Location Section === */
.location {
    background: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.location-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 14px;
    color: var(--primary-700);
    font-size: 1.1rem;
}

[data-theme="dark"] .location-icon {
    background: rgba(74, 222, 128, 0.1);
    color: var(--primary-400);
}

.location-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.location-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 16px;
    color: #fff;
    font-size: 1.2rem;
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #1da851);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-card a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-600);
}

/* Global Phone Icon – Uniform -90° rotation */
.fa-phone, 
.fa-phone-alt,
.trainer-link i.fa-phone,
.contact-icon i.fa-phone,
.trainer-phone i,
.call-btn i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg) !important;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-500);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--primary-600);
    background: var(--bg-card);
    font-weight: 600;
}

[data-theme="dark"] .form-group input:focus ~ label,
[data-theme="dark"] .form-group input:not(:placeholder-shown) ~ label,
[data-theme="dark"] .form-group textarea:focus ~ label,
[data-theme="dark"] .form-group textarea:not(:placeholder-shown) ~ label {
    color: var(--primary-400);
}

/* === Footer === */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--primary-500);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-500);
    transform: translateX(4px);
}

.footer-contact-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-info i {
    color: var(--primary-500);
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === Floating Buttons === */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.floating-btn {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 58px;
}

.floating-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}


.floating-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.call-btn {
    background: linear-gradient(135deg, #25d366, #1da851); /* Unified brand green */
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #1da851);
    animation: floatPulse 3s ease-in-out infinite 0.5s;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    50% { box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 8px rgba(34, 197, 94, 0.15); }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-500);
    color: #fff;
    transform: translateY(-4px);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll[data-aos-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-aos-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-aos-delay="300"] { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 1024px) {
    .highlights-grid,
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timing-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .timing-time {
        justify-content: center;
    }
    
    .timing-features {
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* === Gallery Section === */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 10, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* === FAQ Section === */
.faq {
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-300);
}

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

.faq-question i {
    color: var(--primary-500);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-600);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        color: var(--text-primary) !important;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 24px;
        width: 80%;
        text-align: center;
        border-radius: 12px;
        transition: background 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--primary-100);
        color: var(--primary-700) !important;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-logo {
        font-size: 1.15rem;
        gap: 6px;
    }

    .toggle-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .lang-toggle {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 12px;
        gap: 8px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .highlights-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .trainer-overlay {
        opacity: 1; /* Always visible on mobile */
        background: linear-gradient(to top, rgba(14, 43, 20, 0.7), transparent 40%);
    }

    .trainer-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .timing-card {
        padding: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-img-wrapper img {
        height: 300px;
    }
    
    .management-card {
        padding: 20px 24px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .time-start, .time-end {
        font-size: 2rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        line-height: 48px;
    }

    .floating-buttons {
        right: 20px;
        bottom: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* === Print Styles === */
@media print {
    .navbar, .floating-buttons, .back-to-top, .hero-particles {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
