/* ============================================================
   SJ PHYSIOTHERAPY & YOGA CARE - Main Stylesheet
   ============================================================ */

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

/* CSS Variables */
:root {
    --primary: #1565c0;
    --primary-light: #1e88e5;
    --primary-dark: #0d47a1;
    --secondary: #00897b;
    --secondary-light: #26a69a;
    --accent: #43a047;
    --white: #ffffff;
    --light-bg: #f0f7ff;
    --light-green: #e8f5e9;
    --text-dark: #1a237e;
    --text-body: #37474f;
    --text-light: #607d8b;
    --border: #e3e8f0;
    --shadow: 0 4px 20px rgba(21,101,192,0.10);
    --shadow-hover: 0 8px 32px rgba(21,101,192,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --gradient-hero: linear-gradient(135deg, #0d47a1 0%, #1565c0 40%, #00695c 100%);
    --gradient-card: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(21,101,192,0.12);
    transition: var(--transition);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo .logo-icon {
    width: 44px; height: 44px;
    background: var(--gradient-hero);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}
.nav-logo .logo-text {
    display: flex; flex-direction: column;
}
.nav-logo .logo-text strong {
    font-size: 0.95rem; font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.nav-logo .logo-text span {
    font-size: 0.7rem; color: var(--secondary);
    font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-menu {
    display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 500; font-size: 0.88rem;
    color: var(--text-body);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--light-bg);
}
.nav-link.active::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-cta {
    display: flex; align-items: center; gap: 0.5rem; margin-left: 1rem;
}
.btn-call-nav {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.82rem;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}
.btn-call-nav:hover {
    background: var(--primary); color: white;
}
.btn-book-nav {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.82rem;
    box-shadow: 0 3px 12px rgba(21,101,192,0.3);
    transition: var(--transition);
}
.btn-book-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21,101,192,0.4);
}
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 0.5rem;
    background: none; border: none;
}
.hamburger span {
    display: block; width: 24px; height: 2.5px;
    background: var(--text-body); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
    background: linear-gradient(135deg, rgba(13,71,161,0.90) 0%, rgba(21,101,192,0.87) 40%, rgba(0,105,92,0.90) 100%), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&h=1080&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 1;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white; padding: 0.4rem 1rem;
    border-radius: 50px; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-badge i { color: #ffd54f; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.hero-title span { color: #80deea; }
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.88);
    margin-bottom: 2rem; max-width: 520px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: white; color: var(--primary);
    border-radius: 50px; font-weight: 700; font-size: 0.92rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: rgba(255,255,255,0.12); color: white;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px; font-weight: 600; font-size: 0.92rem;
    transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: #25d366; color: white;
    border-radius: 50px; font-weight: 700; font-size: 0.92rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.hero-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 2rem; font-weight: 800; color: white;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.7);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 0.25rem;
}
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-card-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; max-width: 420px;
}
.hero-mini-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    color: white;
    transition: var(--transition);
}
.hero-mini-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.hero-mini-card .icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 0.75rem;
    border: 1px solid rgba(255,255,255,0.25);
}
.hero-mini-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.3rem; }
.hero-mini-card p { font-size: 0.72rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.hero-mini-card.large { grid-column: span 2; background: rgba(255,255,255,0.18); }

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(13,71,161,0.90) 0%, rgba(21,101,192,0.88) 40%, rgba(0,105,92,0.90) 100%), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&h=600&q=80') center/cover no-repeat;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white; font-weight: 700; margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; margin-bottom: 1rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================================
   SECTIONS & LAYOUT
   ============================================================ */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--light-bg); }
.section-green { background: var(--light-green); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--light-bg);
    color: var(--primary); padding: 0.35rem 1rem;
    border-radius: 50px; font-size: 0.78rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 0.75rem;
    border: 1px solid rgba(21,101,192,0.15);
}
.section-tag.green {
    background: var(--light-green); color: var(--secondary);
    border-color: rgba(0,137,123,0.15);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-dark); font-weight: 700;
    line-height: 1.3; margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1rem; color: var(--text-light);
    max-width: 580px; margin: 0 auto; line-height: 1.8;
}
.section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px; margin: 1rem auto 0;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(21,101,192,0.2);
}
.card-body { padding: 1.75rem; }
.card-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1rem;
    color: var(--primary);
}
.card-icon.green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: var(--secondary); }
.card-icon.orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #e65100; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.card-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: var(--primary); font-weight: 600; font-size: 0.85rem;
    margin-top: 1rem; transition: var(--transition);
}
.card-link:hover { gap: 0.6rem; }

/* Service Card with Image */
.service-card .card-img {
    height: 200px;
    background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
}
.service-card .card-img img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    transition: transform 0.5s ease;
}
.service-card:hover .card-img img { transform: scale(1.06); }
.service-card .card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}
.service-card .card-img .icon-overlay {
    position: relative; z-index: 1;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    color: var(--primary);
}
.service-card .card-img .icon-overlay i { font-size: 1.8rem; }

/* Condition Cards */
.condition-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.condition-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}
.condition-card h4 {
    font-size: 1rem; font-weight: 700;
    color: var(--text-dark); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.65rem;
}
.condition-card h4 .cond-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--primary);
}
.neuro-page .condition-card h4 .cond-icon { background: #e8eaf6; color: #3949ab; }
.condition-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   CHAMBER LOCATIONS
   ============================================================ */
.location-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.location-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.location-icon {
    width: 52px; height: 52px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem;
}
.location-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.location-card .area { font-size: 0.85rem; color: var(--secondary); font-weight: 600; margin-bottom: 0.75rem; }
.location-card .detail {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.4rem;
}
.location-card .detail i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.location-card .contact-links {
    display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap;
}
.location-card .contact-links a {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px; font-size: 0.78rem; font-weight: 600;
    transition: var(--transition);
}
.location-card .contact-links .btn-call-loc {
    background: var(--light-bg); color: var(--primary);
    border: 1px solid rgba(21,101,192,0.2);
}
.location-card .contact-links .btn-call-loc:hover { background: var(--primary); color: white; }
.location-card .contact-links .btn-wa-loc {
    background: #e8faf0; color: #1b5e20;
    border: 1px solid rgba(37,211,102,0.2);
}
.location-card .contact-links .btn-wa-loc:hover { background: #25d366; color: white; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testimonial-card .quote {
    position: absolute; top: 1.25rem; right: 1.25rem;
    font-size: 2.5rem; color: var(--primary-light);
    opacity: 0.2; line-height: 1;
}
.stars { color: #ffd54f; font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-detail { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    background: var(--gradient-hero);
    min-height: 450px;
    display: flex; align-items: center; justify-content: center;
}
.about-img .placeholder-img {
    font-size: 8rem; opacity: 0.3; color: white;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: white; border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-hover);
    text-align: center;
}
.about-badge .num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-badge .label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.qual-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.25rem 0; }
.qual-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; color: var(--text-body);
}
.qual-item i { color: var(--secondary); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   YOGA SECTION
   ============================================================ */
.yoga-condition-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.yoga-condition-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.yoga-condition-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,137,123,0.92) 0%, rgba(0,105,92,0.95) 100%);
    color: white;
    display: flex; align-items: center; gap: 1rem;
    position: relative; overflow: hidden; min-height: 90px;
}
.yoga-condition-header .header-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.22; z-index: 0;
    transition: transform 0.5s ease;
}
.yoga-condition-card:hover .header-bg { transform: scale(1.08); }
.yoga-condition-header .icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; position: relative; z-index: 1;
}
.yoga-condition-header h3 { font-size: 1.05rem; font-weight: 700; position: relative; z-index: 1; }
.yoga-condition-body { padding: 1.25rem; }
.yoga-types {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.yoga-type-tag {
    background: var(--light-green);
    color: var(--secondary);
    padding: 0.25rem 0.7rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    border: 1px solid rgba(0,137,123,0.15);
}
.yoga-condition-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   CONTACT & FORM
   ============================================================ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 3rem; align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; color: var(--text-dark); margin-bottom: 1rem;
}
.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary);
}
.contact-item h4 { font-size: 0.85rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text-body); font-weight: 500; }
.contact-item a:hover { color: var(--primary); }
.contact-phones { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-phones a {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 1rem; font-weight: 700; color: var(--primary);
}
.contact-phones a:hover { color: var(--secondary); }
.form-card {
    background: white; border-radius: var(--radius);
    padding: 2.5rem; box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-body); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.9rem;
    color: var(--text-body);
    background: var(--light-bg);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
    width: 100%;
    padding: 1rem; background: var(--gradient-hero);
    color: white; border: none; border-radius: 50px;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(21,101,192,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(21,101,192,0.4); }
.form-success {
    display: none;
    text-align: center; padding: 2rem;
    color: var(--secondary);
}
.form-success i { font-size: 3rem; margin-bottom: 1rem; }
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    height: 350px;
    border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    z-index: 999;
    display: flex; flex-direction: column; gap: 0.75rem;
    align-items: flex-end;
}
.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn .tooltip {
    position: absolute; right: 100%; margin-right: 0.75rem;
    background: rgba(0,0,0,0.75); color: white;
    padding: 0.35rem 0.75rem; border-radius: 6px;
    font-size: 0.78rem; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; }
.float-whatsapp { background: #25d366; color: white; }
.float-call { background: var(--primary); color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0d1b2a;
    color: rgba(255,255,255,0.75);
    padding: 4rem 1.5rem 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem; max-width: 1280px; margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: #4db6ac; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h4 {
    color: white; font-size: 0.95rem; font-weight: 700;
    margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    font-size: 0.87rem; color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--primary-light); }
.footer-contact-item {
    display: flex; gap: 0.75rem; margin-bottom: 0.85rem;
    font-size: 0.87rem;
}
.footer-contact-item i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
    max-width: 1280px; margin: 0 auto;
    padding: 1.5rem 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.82rem;
}
.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: white; }

/* ============================================================
   HIGHLIGHTS / FEATURE STRIP
   ============================================================ */
.highlight-strip {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
}
.highlight-strip-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; gap: 2rem;
    justify-content: center; flex-wrap: wrap;
}
.highlight-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.88rem; color: var(--text-body);
}
.highlight-item i { font-size: 1.2rem; color: var(--primary); }
.highlight-item strong { font-weight: 700; color: var(--text-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Pulse animation for floating button */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.float-whatsapp { animation: pulse 2.5s infinite; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    background: var(--light-bg); color: var(--primary);
    border: 1px solid rgba(21,101,192,0.15);
}
.badge.green { background: var(--light-green); color: var(--secondary); border-color: rgba(0,137,123,0.15); }

/* Scroll to top */
.scroll-top {
    position: fixed; bottom: 6rem; right: 1.5rem; z-index: 998;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: var(--shadow);
    cursor: pointer; transition: var(--transition);
    opacity: 0; pointer-events: none; border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Info Banner */
.info-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white; padding: 0.6rem 1.5rem;
    text-align: center; font-size: 0.82rem;
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    flex-wrap: wrap;
}
.info-banner a { color: #80deea; font-weight: 600; }
.info-banner a:hover { color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: white; padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0.25rem;
    }
    .nav-menu.open .nav-cta { display: flex; flex-direction: column; margin: 0.5rem 0 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-auto { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-inner { padding: 3rem 1rem 2rem; }
    .section { padding: 3.5rem 1rem; }
    .about-badge { right: 0; bottom: -1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; justify-content: center; }
    .highlight-strip-inner { flex-direction: column; align-items: center; gap: 1rem; }
}
