/* ==========================================================================
   SOHAM YOGA TRAINER - LUXURY WELLNESS DESIGN SYSTEM
   Primary Color: #d6809c (Soft Rose / Luxury Pink)
   Secondary Color: #927397 (Deep Lavender / Elegant Mauve)
   ========================================================================== */

:root {
    /* Brand Colors */
    --primary-color: #d6809c;
    --primary-hover: #c46d88;
    --primary-light: #f7e6eb;
    --primary-soft: rgba(214, 128, 156, 0.12);
    
    --secondary-color: #927397;
    --secondary-hover: #7e5e83;
    --secondary-light: #f0eaf2;
    --secondary-soft: rgba(146, 115, 151, 0.12);

    --accent-gold: #d4af37;
    --accent-soft: #FAF3E0;

    /* Neutrals & Dark Tones */
    --bg-light: #FAF7F8;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-dark: #201323;
    --bg-dark-accent: #2B1B2D;

    --text-dark: #2B1B2D;
    --text-muted: #6B5B6E;
    --text-light: #F8F5F9;

    /* Fonts */
    --font-serif: 'Crimson Pro', Georgia, serif;
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transition & Shadows */
    --transition-base: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-sm: 0 4px 15px rgba(146, 115, 151, 0.06);
    --shadow-md: 0 10px 30px rgba(146, 115, 151, 0.10);
    --shadow-lg: 0 20px 40px rgba(43, 27, 45, 0.14);
    --shadow-glow: 0 10px 30px rgba(214, 128, 156, 0.35);

    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --border-radius-pill: 50px;
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */

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

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
}

.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.775rem; }
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }
.text-primary-color { color: var(--primary-color) !important; }
.text-secondary-color { color: var(--secondary-color) !important; }
.text-accent { color: var(--accent-gold) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-light);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.spinner-lotus {
    font-size: 3rem;
    color: var(--primary-color);
    animation: pulseLotus 1.8s infinite ease-in-out;
}

.loader-text {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
}

@keyframes pulseLotus {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* ==========================================================================
   NAVBAR & HEADER (NEAT, CLEAN, COMPACT)
   ========================================================================== */

.site-header {
    transition: var(--transition-base);
    z-index: 1030;
}

.site-header.header-transparent {
    background: rgba(250, 247, 248, 0.85);
    backdrop-filter: blur(10px);
}

.site-header.header-solid,
.site-header.is-sticky {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(43, 27, 45, 0.06);
}

.site-header.is-sticky .top-bar {
    display: none !important;
}

.top-bar {
    background: rgba(250, 247, 248, 0.95);
    transition: var(--transition-base);
}

.top-link {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: var(--transition-base);
}

.top-link:hover {
    color: var(--primary-color);
}

.brand-logo {
    object-fit: contain;
    transition: var(--transition-base);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 0.4rem 0.7rem !important;
    transition: var(--transition-base);
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Compact Nav CTA Button */
.btn-nav-cta {
    white-space: nowrap !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.9rem !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 42px !important;
    box-shadow: 0 4px 15px rgba(214, 128, 156, 0.35);
}

/* Dropdown Menu */
.luxury-dropdown {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-sm);
    min-width: 250px;
    animation: fadeInDropdown 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.luxury-dropdown .dropdown-item {
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.luxury-dropdown .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Mobile Offcanvas */
.luxury-offcanvas {
    background: var(--bg-light);
    border-left: none;
    width: 300px !important;
}

.mobile-link {
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
    transition: var(--transition-base);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--primary-color);
    transform: translateX(6px);
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition-base);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn-pill {
    border-radius: var(--border-radius-pill) !important;
}

.btn-luxury-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c46d88 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(214, 128, 156, 0.35);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-luxury-primary:hover {
    background: linear-gradient(135deg, #c46d88 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 128, 156, 0.45);
    color: #ffffff !important;
}

.btn-luxury-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #7e5e83 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(146, 115, 151, 0.35);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-luxury-secondary:hover {
    background: linear-gradient(135deg, #7e5e83 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(146, 115, 151, 0.45);
    color: #ffffff !important;
}

.btn-luxury-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-luxury-outline:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.badge-luxury {
    background: var(--primary-soft);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.45rem 1.2rem;
    border-radius: var(--border-radius-pill);
    display: inline-block;
    border: 1px solid rgba(214, 128, 156, 0.2);
}

/* ==========================================================================
   HERO SECTIONS (ULTRA ATTRACTIVE & MODERN)
   ========================================================================== */

.hero-section {
    position: relative;
    padding-top: 135px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 85% 25%, rgba(214, 128, 156, 0.18) 0%, rgba(146, 115, 151, 0.08) 45%, rgba(250, 247, 248, 1) 80%);
    overflow: hidden;
}

/* Decorative ambient background glows */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(214, 128, 156, 0.15);
    filter: blur(90px);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(146, 115, 151, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(214, 128, 156, 0.25);
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(146, 115, 151, 0.15);
}

.hero-main-img {
    border-radius: 28px;
    transition: var(--transition-base);
    object-fit: cover;
}

.floating-badge-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(43, 27, 45, 0.08);
    border: 1px solid rgba(214, 128, 156, 0.2);
    z-index: 2;
    animation: floatAnimation 4s infinite ease-in-out;
}

.floating-badge-1 {
    top: 8%;
    left: -25px;
}

.floating-badge-2 {
    bottom: 8%;
    right: -15px;
    animation-delay: 2s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Page Header Hero (Inner Pages) */
.page-hero {
    padding-top: 155px;
    padding-bottom: 75px;
    background: linear-gradient(135deg, rgba(214, 128, 156, 0.12) 0%, rgba(146, 115, 151, 0.12) 100%), url('../images/soham-yoga-group-2-1024x683.png') center/cover no-repeat;
    position: relative;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 19, 35, 0.78);
    backdrop-filter: blur(4px);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CARDS & COMPONENTS
   ========================================================================== */

.luxury-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.2rem;
    border: 1px solid rgba(146, 115, 151, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(214, 128, 156, 0.3);
}

.icon-box-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    transition: var(--transition-base);
}

.luxury-card:hover .icon-box-wrapper {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(214, 128, 156, 0.2);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.glass-dark {
    background: rgba(43, 27, 45, 0.88);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature Counters */
.counter-box {
    text-align: center;
    padding: 1.8rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--primary-color);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-card);
    padding: 2.2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    height: 100%;
}

.rating-stars {
    color: var(--accent-gold);
}

/* Accordions (FAQs) */
.luxury-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(146, 115, 151, 0.12);
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
}

.luxury-accordion .accordion-button {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-card);
    padding: 1.1rem 1.4rem;
    box-shadow: none !important;
}

.luxury-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: var(--primary-light);
}

/* Gallery Masonry & Fancybox */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: var(--transition-base);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(32, 19, 35, 0.82) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    opacity: 0;
    transition: var(--transition-base);
}

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

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

/* ==========================================================================
   FOOTER & FLOATING CTA
   ========================================================================== */

.bg-dark-luxury {
    background: var(--bg-dark);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-icon-sm:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition-base);
    animation: pulseWhatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #ffffff;
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--bg-dark-accent);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 998;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (100% OVERFLOW-FREE)
   ========================================================================== */

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .top-bar {
        display: none !important;
    }
    .hero-image-container {
        max-width: 100%;
        padding: 12px;
        border-radius: 24px;
    }
    .hero-main-img {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
    }
    .floating-badge-1 {
        top: 4%;
        left: 5px;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    .floating-badge-2 {
        bottom: 4%;
        right: 5px;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 95px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .page-hero {
        padding-top: 125px;
        padding-bottom: 50px;
    }
    .display-4, .display-5 {
        font-size: 1.8rem !important;
    }
    .display-6 {
        font-size: 1.5rem !important;
    }
    .floating-badge-card {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 10px auto;
        display: inline-flex !important;
        animation: none !important;
        width: 100%;
        justify-content: center;
    }
    .btn-luxury-primary, .btn-luxury-secondary, .btn-luxury-outline {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 18px;
        right: 18px;
    }
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}
