/* ================================================
   SHUDDHANAAD SANGEET VIDYALAY
   Premium Modern Gradient Theme
   ================================================ */

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

/* === CSS Variables === */
:root {
    --bg: #F4E7D8;
    --bg-light: #FDF3E9;
    --bg-dark: #EDD8C0;
    --charcoal: #222222;
    --charcoal-soft: #444444;
    --muted: #7A6A5A;
    --border: #E2CEB8;
    --white: #FFFFFF;

    /* Gradient Palette */
    --orange: #FF6B2B;
    --pink: #E8377A;
    --purple: #7B2FBE;
    --grad-main: linear-gradient(135deg, #FF6B2B 0%, #E8377A 50%, #7B2FBE 100%);
    --grad-hover: linear-gradient(135deg, #FF8450 0%, #F0508A 50%, #9340D6 100%);
    --grad-soft: linear-gradient(135deg, rgba(255, 107, 43, 0.12) 0%, rgba(232, 55, 122, 0.12) 50%, rgba(123, 47, 190, 0.12) 100%);
    --grad-glow: linear-gradient(135deg, rgba(255, 107, 43, 0.35) 0%, rgba(232, 55, 122, 0.35) 50%, rgba(123, 47, 190, 0.35) 100%);
    --grad-wa: linear-gradient(135deg, #25D366, #128C7E);
    --grad-insta: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --grad-yt: linear-gradient(135deg, #FF0000, #CC0000);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(123, 47, 190, 0.08);
    --shadow-md: 0 4px 24px rgba(123, 47, 190, 0.12);
    --shadow-lg: 0 8px 40px rgba(123, 47, 190, 0.18);
    --shadow-glow: 0 0 30px rgba(232, 55, 122, 0.25);

    /* Typography */
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 6rem;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 231, 216, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(244, 231, 216, 0.97);
    box-shadow: var(--shadow-sm);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: transform 0.3s var(--ease);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal-soft);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-main);
    border-radius: var(--r-full);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--purple);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Join Now Button in Nav */
.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--grad-main);
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(123, 47, 190, 0.3);
    text-decoration: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 47, 190, 0.4);
    background: var(--grad-hover);
}

.btn-nav::after {
    display: none !important;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: var(--r-full);
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    min-height: 100vh;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

/* Radial Gradient Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.55;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.45), transparent 70%);
    top: -100px;
    right: -80px;
    animation: orbPulse 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 55, 122, 0.4), transparent 70%);
    bottom: 0;
    right: 30%;
    animation: orbPulse 10s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.35), transparent 70%);
    top: 40%;
    left: -80px;
    animation: orbPulse 12s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.18) translate(20px, 20px);
    }
}

/* Floating Music Shapes */
.shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    font-size: 2.5rem;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-1 {
    top: 18%;
    left: 5%;
    animation-delay: 0s;
    color: var(--orange);
}

.shape-2 {
    top: 55%;
    left: 8%;
    animation-delay: 1.5s;
    color: var(--pink);
}

.shape-3 {
    top: 20%;
    right: 6%;
    animation-delay: 3s;
    color: var(--purple);
}

.shape-4 {
    top: 70%;
    right: 4%;
    animation-delay: 4.5s;
    color: var(--orange);
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(12deg);
    }
}

/* Hero Layout */
.hero-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: var(--sp-2xl) var(--sp-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
    align-items: center;
    width: 100%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 43, 0.12);
    color: var(--orange);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 107, 43, 0.25);
    margin-bottom: var(--sp-md);
    letter-spacing: 0.03em;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    /* Slightly reduced max-size to fit one line */
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--sp-md);
    letter-spacing: -0.03em;
    /* Slightly tighter to help fit text */
}

.hero-pretitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--purple);
    opacity: 0.85;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal-soft);
    margin-bottom: var(--sp-sm);
    line-height: 1.5;
}

.hero-desc {
    font-size: 0.975rem;
    color: var(--muted);
    margin-bottom: var(--sp-xl);
    max-width: 480px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

.btn-primary-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--grad-main);
    color: white;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(123, 47, 190, 0.35);
    transition: all 0.3s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary-grad:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 47, 190, 0.45);
    background: var(--grad-hover);
}

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

.btn-outline-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: transparent;
    color: var(--purple);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 2px solid var(--purple);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline-grad:hover {
    background: var(--grad-main);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 47, 190, 0.3);
}

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

/* Hero Image Area */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: var(--grad-glow);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.55;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.hero-main-img {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    border-radius: 40px 40px 50% 50% / 40px 40px 40% 40%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-2xl);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s var(--ease);
}

.hero-main-img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(123, 47, 190, 0.35);
}

/* Accent stars */
.accent-star {
    position: absolute;
    font-size: 1.5rem;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: starSpin 8s linear infinite;
}

.star-1 {
    top: 5%;
    right: -10px;
    font-size: 2rem;
    animation-duration: 10s;
}

.star-2 {
    bottom: 10%;
    left: -10px;
    font-size: 1.2rem;
    animation-direction: reverse;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.accent-ring {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 3px solid;
    border-image: var(--grad-main) 1;
    border-radius: 50%;
    opacity: 0.4;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* =============================================
   SHARED SECTION STYLES
============================================= */

/* Section header wrapper — centers everything */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-xl);
}



.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;

    /* Centered with gradient underline */
    display: inline-block;
    position: relative;
    padding-bottom: 18px;
}

/* Gradient underline — centered below the title */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background: var(--grad-main);
    border-radius: var(--r-full);
    transition: width 0.5s var(--ease);
}

/* Widen underline when in view (triggered by JS) */
.section-title.underline-expanded::after {
    width: 110px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: var(--sp-md) auto var(--sp-xl);
    line-height: 1.8;
    text-align: center;
}


/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
    position: relative;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-lg);
    margin-bottom: var(--sp-2xl);
}

.stat-card {
    flex: 1;
    max-width: 300px;
    min-width: 260px;
    background: white;
    border-radius: var(--r-lg);
    padding: var(--sp-xl) var(--sp-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(123, 47, 190, 0.08);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4;
}

/* About Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
}

.about-card {
    background: white;
    border-radius: var(--r-lg);
    padding: var(--sp-xl) var(--sp-md);
    border: 1px solid var(--border);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-soft);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 47, 190, 0.2);
}

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

.about-card-icon {
    font-size: 2.2rem;
    margin-bottom: var(--sp-sm);
}

.about-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--sp-xs);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

/* =============================================
   COURSES SECTION
============================================= */
.courses-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
    opacity: 0.2;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
    margin-bottom: var(--sp-xl);
}

.course-card {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl) var(--sp-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 55, 122, 0.25);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--grad-main);
    transition: height 0.35s var(--ease);
}

.course-card:hover::before {
    height: 4px;
}

/* Featured Course */
.featured-course {
    border: 2px solid rgba(232, 55, 122, 0.3);
    background: linear-gradient(160deg, #fff 0%, #FDF0F8 100%);
}

.featured-course::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(232, 55, 122, 0.04) 0%, rgba(123, 47, 190, 0.03) 100%);
    pointer-events: none;
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad-main);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-full);
    letter-spacing: 0.04em;
}

.course-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: var(--r-lg);
    background: var(--grad-soft);
    border: 1px solid rgba(123, 47, 190, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-md);
    transition: all 0.3s var(--ease);
}

.course-card:hover .course-icon-wrap {
    background: var(--grad-main);
    transform: rotate(-5deg) scale(1.1);
}

.course-emoji {
    font-size: 2rem;
    transition: filter 0.3s var(--ease);
}

.course-card:hover .course-emoji {
    filter: brightness(10) invert(1);
}

.course-badge-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-sm);
    text-transform: uppercase;
}

.course-badge-tag.certified {
    background: rgba(123, 47, 190, 0.1);
    color: var(--purple);
    border: 1px solid rgba(123, 47, 190, 0.2);
}

.course-badge-tag.devotional {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
    border: 1px solid rgba(255, 107, 43, 0.25);
}

.course-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--sp-xs);
}

.course-desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: var(--sp-md);
    line-height: 1.7;
    flex-grow: 1;
}

.course-features {
    list-style: none;
    margin-bottom: var(--sp-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.course-features li {
    font-size: 0.85rem;
    color: var(--charcoal-soft);
    font-weight: 500;
}

.course-enroll-btn {
    display: block;
    text-align: center;
    padding: 11px 20px;
    background: var(--grad-main);
    color: white;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 14px rgba(123, 47, 190, 0.25);
    margin-top: auto;
}

.course-enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(123, 47, 190, 0.4);
}

/* Certification Banner */
.cert-banner {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    background: white;
    border: 1px solid rgba(123, 47, 190, 0.15);
    border-radius: var(--r-lg);
    padding: var(--sp-md) var(--sp-xl);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cert-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--grad-main);
}

.cert-icon {
    font-size: 2.2rem;
}

.cert-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.cert-text strong {
    color: var(--charcoal);
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* =============================================
   GURUS SECTION
============================================= */
.gurus-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
}

.gurus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
}

.guru-card {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--sp-xl);
    align-items: flex-start;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.guru-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--grad-soft);
    border-radius: 50%;
    transform: translate(40px, -40px);
    pointer-events: none;
}

.guru-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 55, 122, 0.2);
}

.guru-image-ring {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: var(--grad-main);
    position: relative;
}

.guru-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #F4E7D8, #EDD8C0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 3px solid white;
}

.guru-initials {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.guru-img-hint {
    font-size: 0.65rem;
    color: var(--muted);
    display: block;
}

.guru-info {
    flex: 1;
}

.guru-name {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.guru-instrument {
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--sp-md);
}

.guru-achievements {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guru-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--charcoal-soft);
    font-weight: 500;
    line-height: 1.5;
}

.ach-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =============================================
   SOCIAL SECTION
============================================= */
.social-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-lg);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-2xl) var(--sp-xl);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: white;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: white;
    border-color: transparent;
}

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

/* Instagram Card */
.insta-card:hover {
    background: var(--grad-insta);
}

.insta-card .social-icon-large {
    color: #E1306C;
}

.insta-card:hover .social-icon-large {
    color: white;
}

.insta-card h3 {
    color: #E1306C;
    transition: color 0.35s;
}

.insta-card:hover h3 {
    color: white;
}

/* YouTube Card */
.yt-card:hover {
    background: var(--grad-yt);
}

.yt-card .social-icon-large {
    color: #FF0000;
}

.yt-card:hover .social-icon-large {
    color: white;
}

.yt-card h3 {
    color: #CC0000;
    transition: color 0.35s;
}

.yt-card:hover h3 {
    color: white;
}

/* WhatsApp Card */
.wa-card:hover {
    background: var(--grad-wa);
}

.wa-card .social-icon-large {
    color: #25D366;
}

.wa-card:hover .social-icon-large {
    color: white;
}

.wa-card h3 {
    color: #128C7E;
    transition: color 0.35s;
}

.wa-card:hover h3 {
    color: white;
}

.social-icon-large {
    margin-bottom: var(--sp-md);
    transition: all 0.35s var(--ease);
    position: relative;
    z-index: 1;
}

.social-card:hover .social-icon-large {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.social-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    transition: color 0.35s var(--ease);
}

.social-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: var(--sp-md);
    position: relative;
    z-index: 1;
    transition: color 0.35s var(--ease);
}

.social-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.social-cta {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: var(--r-full);
    border: 2px solid currentColor;
    position: relative;
    z-index: 1;
    transition: all 0.35s var(--ease);
    display: inline-block;
}

.insta-card .social-cta {
    color: #E1306C;
}

.yt-card .social-cta {
    color: #CC0000;
}

.wa-card .social-cta {
    color: #128C7E;
}

.social-card:hover .social-cta {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-md);
    background: white;
    border-radius: var(--r-lg);
    padding: var(--sp-md) var(--sp-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    border-color: rgba(123, 47, 190, 0.2);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--grad-soft);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

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

.contact-link {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    display: block;
}

.contact-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-cta-btns {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin-top: var(--sp-xs);
}

/* Map */
.map-container {
    height: 460px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123, 47, 190, 0.12);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: #1A1020;
    color: white;
    padding: var(--sp-2xl) 0 var(--sp-lg);
    position: relative;
}

.footer-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-main);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-md);
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-style: italic;
}

.footer-links-row {
    display: flex;
    gap: var(--sp-lg);
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--sp-sm) 0;
}

.footer-links-row a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--ease);
}

.footer-links-row a:hover {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-socials {
    display: flex;
    gap: var(--sp-sm);
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.footer-social-icon:hover {
    background: var(--grad-main);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(232, 55, 122, 0.35);
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--grad-main);
    border-radius: var(--r-full);
    margin: var(--sp-xs) auto;
    opacity: 0.5;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.heart {
    font-style: normal;
}

/* =============================================
   FLOATING BUTTONS
============================================= */

/* Back To Top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid rgba(123, 47, 190, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    color: var(--purple);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 990;
}

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

.back-to-top:hover {
    background: var(--grad-main);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(123, 47, 190, 0.35);
}

/* Float Buttons Stack */
.float-btn {
    position: fixed;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease);
    z-index: 990;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.12);
}

/* WhatsApp Float */
.float-wa {
    bottom: 28px;
    background: var(--grad-wa);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    animation: waBounce 2s infinite;
}

@keyframes waBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.float-wa:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}

/* Instagram Float */
.float-insta {
    bottom: 96px;
    background: var(--grad-insta);
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.4);
}

.float-insta:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(225, 48, 108, 0.55);
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--sp-md);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sp-xl);
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrap {
        order: 2;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .gurus-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 320px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================= */
@media (max-width: 768px) {
    :root {
        --sp-xl: 2rem;
        --sp-2xl: 2.5rem;
        --sp-3xl: 3.5rem;
    }

    /* Navbar Mobile */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(244, 231, 216, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--sp-lg);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        padding: 80px var(--sp-lg) var(--sp-lg);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .btn-nav {
        font-size: 1.05rem;
        padding: 14px 36px;
    }

    .hamburger {
        z-index: 1100;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
    }

    .hero-container {
        padding: var(--sp-xl) var(--sp-md);
        gap: var(--sp-lg);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--sp-sm);
    }

    .btn-primary-grad,
    .btn-outline-grad {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .hero-image-placeholder {
        max-width: 280px;
    }

    /* Stats + Cards */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-sm);
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .social-cards {
        grid-template-columns: 1fr;
    }

    /* Gurus */
    .guru-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--sp-md);
    }

    .guru-achievements {
        align-items: center;
    }

    .guru-achievements li {
        justify-content: center;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 280px;
    }

    .contact-cta-btns .btn-primary-grad,
    .contact-cta-btns .btn-outline-grad {
        max-width: 100%;
    }

    /* Cert Banner */
    .cert-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--sp-md);
    }

    /* Footer */
    .footer-links-row {
        gap: var(--sp-md);
    }

    /* Floaters */
    .float-btn {
        width: 48px;
        height: 48px;
        right: 16px;
    }

    .float-wa {
        bottom: 20px;
    }

    .float-insta {
        bottom: 82px;
    }

    .back-to-top {
        left: 16px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-sm);
    }

    .hero-container {
        padding: var(--sp-lg) var(--sp-sm);
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-sub {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guru-card {
        padding: var(--sp-md);
    }

    .social-card {
        padding: var(--sp-xl) var(--sp-md);
    }

    .footer-links-row {
        gap: var(--sp-sm);
    }

    .footer-links-row a {
        font-size: 0.85rem;
    }

    .map-container {
        height: 240px;
    }
}

/* Local SEO Section */
.local-seo-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.local-seo-content p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--sp-3xl) 0;
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: var(--sp-2xl) auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--r-md);
    margin-bottom: var(--sp-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(123, 47, 190, 0.05);
}

.faq-question {
    width: 100%;
    padding: var(--sp-md) var(--sp-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    transition: all 0.3s var(--ease);
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 600;
    margin: 0;
    padding-right: var(--sp-md);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--purple);
    transition: transform 0.4s var(--ease-spring);
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    background: var(--bg-light);
}

.faq-answer p {
    padding: 0 var(--sp-lg) var(--sp-md);
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 47, 190, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust based on content */
}

.faq-item:hover {
    border-color: rgba(123, 47, 190, 0.2);
}