/* =====================================================
   NIRAKARA YOGA SHALA — Shared Stylesheet
   styles.css
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --blue-deep: #0a1f5c;
    --blue-mid: #1a3a8f;
    --blue-bright: #2563eb;
    --blue-light: #3b82f6;
    --blue-sky: #60a5fa;
    --blue-pale: #dbeafe;
    --blue-ultra: #eff6ff;
    --white: #ffffff;
    --off-white: #f8faff;
    --gold: #c9943a;
    --gold-light: #e8b84b;
    --text-dark: #0d1b3e;
    --text-mid: #2d4a7a;
    --text-light: #6b8fc4;
    --border: rgba(37, 99, 235, 0.15);
    --shadow-blue: rgba(37, 99, 235, 0.12);
    --nav-height: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--blue-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-lotus {
    width: 70px;
    height: 70px;
    animation: loaderSpin 2s linear infinite;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.7; }
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--blue-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(37, 99, 235, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 30px var(--shadow-blue);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 40px rgba(37, 99, 235, 0.15);
}

.nav-inner {
    width: min(1380px, calc(100% - 60px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 48px;
    height: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-mark {
    transform: scale(1.05);
}

.nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text .brand {
    font-family: 'Cinzel', serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--blue-deep);
}

.nav-logo-text .tagline {
    font-size: 12px;
    letter-spacing: 3.5px;
    color: var(--blue-light);
    text-transform: uppercase;
    margin-top: 3px;
}

/* ===== DESKTOP NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 14.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s, background 0.3s;
    white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--blue-bright);
    background: var(--blue-ultra);
}

.nav-links > li > a .chevron {
    width: 14px;
    height: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    display: inline-block;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-links > li.has-dropdown:hover > a .chevron {
    transform: rotate(225deg) translateY(0);
}

/* Invisible bridge to prevent hover loss between nav and dropdown */
.nav-links > li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    z-index: 10;
}

/* ===== MEGA DROPDOWN ===== */
.dropdown-mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 680px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(10, 31, 92, 0.18), 0 0 0 1px rgba(37, 99, 235, 0.1);
    padding: 28px 28px 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
}

/* Removed caret arrow */

.nav-links > li.has-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-header {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s ease;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: var(--blue-ultra);
    border-color: var(--border);
    transform: translateY(-2px);
}

.dropdown-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    line-height: 1;
}

.dropdown-item:hover .dropdown-item-icon {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    transform: scale(1.08);
}

.dropdown-item-text {
    min-width: 0;
}

.dropdown-item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    font-family: 'Cinzel', serif;
}

.dropdown-item-text span {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.45;
    display: block;
}

.dropdown-item:hover .dropdown-item-text strong {
    color: var(--blue-deep);
}

.dropdown-footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-footer-text {
    font-size: 14.5px;
    color: var(--text-light);
}

.dropdown-footer-link {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--blue-bright);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.dropdown-footer-link:hover {
    gap: 10px;
}

/* ===== NAV CTA ===== */
.nav-cta-wrap {
    flex-shrink: 0;
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: inline-block;
    white-space: nowrap;
    font-family: 'Cinzel', serif;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1100;
}

.nav-hamburger:hover {
    background: var(--blue-ultra);
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 92, 0.5);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 92vw);
    height: 100dvh;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(10, 31, 92, 0.2);
    overflow: hidden;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-menu-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.mobile-menu-logo-text .brand {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue-deep);
}

.mobile-close-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-mid);
    transition: all 0.2s;
}

.mobile-close-btn:hover {
    background: var(--blue-ultra);
    color: var(--blue-bright);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.mobile-menu-body::-webkit-scrollbar {
    width: 3px;
}

.mobile-menu-body::-webkit-scrollbar-thumb {
    background: var(--blue-pale);
    border-radius: 2px;
}

.mob-nav-item {
    display: block;
    text-decoration: none;
}

.mob-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.mob-nav-link:hover {
    background: var(--blue-ultra);
    color: var(--blue-bright);
}

.mob-nav-link .mob-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mob-nav-link.open .mob-chevron {
    transform: rotate(225deg);
}

.mob-nav-link-plain {
    display: block;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.mob-nav-link-plain:hover {
    background: var(--blue-ultra);
    color: var(--blue-bright);
}

.mob-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mob-dropdown.open {
    max-height: 800px;
}

.mob-dropdown-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 14px 22px 8px;
    font-weight: 600;
}

.mob-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 22px;
    text-decoration: none;
    transition: all 0.2s;
}

.mob-dropdown-item:hover {
    background: var(--blue-ultra);
}

.mob-dropdown-item .mob-item-icon {
    width: 38px;
    height: 38px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.22s;
    color: var(--blue-mid);
    font-size: 16px;
    margin-top: 1px;
}

.mob-dropdown-item:hover .mob-item-icon {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: #fff;
}

.mob-dropdown-item .mob-item-text {
    min-width: 0;
}

.mob-dropdown-item .mob-item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.mob-dropdown-item:hover .mob-item-text strong {
    color: var(--blue-deep);
}

.mob-dropdown-item .mob-item-text span {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.4;
    display: block;
}

.mob-dropdown-footer {
    padding: 12px 22px 14px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.mob-dropdown-footer a {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-bright);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.mob-dropdown-footer a:hover {
    color: var(--gold);
}

.mobile-menu-footer {
    padding: 18px 22px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: #fff;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

.mobile-contact-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: var(--text-mid);
    transition: all 0.2s;
    font-weight: 600;
}

.mobile-contact-btn:hover {
    background: var(--blue-ultra);
    border-color: var(--blue-bright);
    color: var(--blue-bright);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float,
.call-float {
    position: fixed;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: waFloat 3s ease-in-out infinite;
}

.call-float {
    left: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}

.whatsapp-float {
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.call-float:hover,
.whatsapp-float:hover {
    transform: scale(1.12) !important;
}

.whatsapp-float svg,
.call-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-float:hover {
    transform: scale(1.12) !important;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ===== CONTAINER ===== */
.container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}

/* ===== SECTION UTILITIES ===== */
section {
    position: relative;
}

.section-pad {
    padding: 120px 0;
}

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

.section-eyebrow {
    font-size: 13.5px;
    letter-spacing: 5px;
    color: var(--blue-bright);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 600;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--blue-bright);
    opacity: 0.4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 50px);
    font-weight: 700;
    color: var(--blue-deep);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
    border-radius: 2px;
    margin: 0 auto 18px;
}

.section-desc {
    font-size: 19px;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ===== SHARED BUTTON STYLES ===== */
.btn-primary {
    background: #fff;
    color: var(--blue-deep);
    padding: 15px 36px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--blue-pale);
}

.btn-secondary-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 13px 34px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 2.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: #fff;
    padding: 14px 30px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
    background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 55%, #1e4d9b 100%);
    padding: calc(var(--nav-height) + 60px) 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    animation: bannerGlow 14s infinite alternate;
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes bannerGlow {
    0% { transform: translate(0, 0); opacity: 0.5; }
    100% { transform: translate(-40px, -30px); opacity: 1; }
}

.page-banner-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.page-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-banner h1 em {
    font-style: italic;
    color: var(--blue-sky);
}

.page-banner-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: var(--gold-light);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.social-links a svg {
    width: 17px;
    height: 17px;
    fill: var(--text-light);
    transition: fill 0.3s;
}

.social-links a:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.social-links a:hover svg {
    fill: #fff;
}

/* ===== FOOTER ===== */
footer {
    background: var(--blue-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 36px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright), var(--blue-sky), var(--gold), var(--blue-sky), var(--blue-bright));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}

.footer-brand-mark {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.footer-brand-mark:hover {
    transform: scale(1.04);
}

.footer-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.footer-brand p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    max-width: 270px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-icon:hover {
    border-color: var(--blue-sky);
    color: #fff;
    background: rgba(96, 165, 250, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.2);
}

.footer-col h5 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li a svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14.5px;
    letter-spacing: 0.5px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.stagger.visible > *:nth-child(9)  { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }


/* ==========================================
   AUTO-EXTRACTED STYLES
   ========================================== */

/* --- Styles for about-us.html --- */

        .scope-about-us .about-hero {
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .scope-about-us .about-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(40px, 5vw, 66px); color: #fff; margin-bottom: 18px; font-weight: 700; }
        .scope-about-us .about-hero p { font-size: 20px; color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; line-height: 1.7; }
        .scope-about-us .story-section { padding: 100px 0; background: var(--white); }
        .scope-about-us .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        .scope-about-us .story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.5vw, 46px); color: var(--blue-deep); margin-bottom: 20px; }
        .scope-about-us .story-text p { font-size: 18px; line-height: 1.9; color: var(--text-light); margin-bottom: 18px; }
        .scope-about-us .story-image img { width: 100%; border-radius: 24px; display: block; box-shadow: 0 30px 70px rgba(37,99,235,0.15); }
        .scope-about-us .mission-section { padding: 90px 0; background: var(--off-white); }
        .scope-about-us .section-title { font-family: 'Cinzel', serif; font-size: clamp(30px, 3.5vw, 44px); color: var(--blue-deep); text-align: center; margin-bottom: 56px; }
        .scope-about-us .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .scope-about-us .mission-card { background: var(--white); border-radius: 24px; padding: 40px 32px; border: 1px solid var(--border); transition: all 0.3s; }
        .scope-about-us .mission-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px var(--shadow-blue); }
        .scope-about-us .card-icon { font-size: 42px; margin-bottom: 20px; }
        .scope-about-us .mission-card h3 { font-family: 'Cinzel', serif; font-size: 22px; color: var(--blue-deep); margin-bottom: 14px; }
        .scope-about-us .mission-card p { font-size: 17px; color: var(--text-light); line-height: 1.75; }
        .scope-about-us .philosophy-section { padding: 100px 0; background: var(--white); }
        .scope-about-us .values-flex { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; margin-top: 16px; }
        .scope-about-us .value-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px; border: 1px solid var(--border); border-radius: 20px; transition: all 0.3s; }
        .scope-about-us .value-item:hover { background: var(--blue-ultra); border-color: var(--blue-pale); }
        .scope-about-us .value-num { font-family: 'Cinzel', serif; font-size: 38px; font-weight: 700; color: var(--gold-light); flex-shrink: 0; line-height: 1; }
        .scope-about-us .value-item h4 { font-family: 'Cinzel', serif; font-size: 19px; color: var(--blue-deep); margin-bottom: 8px; }
        .scope-about-us .value-item p { font-size: 16px; color: var(--text-light); line-height: 1.7; }
        .scope-about-us .teachers-section { padding: 100px 0; background: var(--off-white); }
        .scope-about-us .teachers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .scope-about-us .teacher-card { background: var(--white); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
        .scope-about-us .teacher-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px var(--shadow-blue); }
        .scope-about-us .teacher-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
        .scope-about-us .teacher-card > div { padding: 26px; }
        .scope-about-us .teacher-card h3 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--blue-deep); margin-bottom: 6px; }
        .scope-about-us .teacher-card .role { font-size: 14px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; display: block; }
        .scope-about-us .teacher-card p { font-size: 16px; color: var(--text-light); line-height: 1.7; }

.scope-about-us .inline-1 { grid-column: span 1; }
.scope-about-us .inline-2 { display:flex;align-items:center;gap:14px; }
.scope-about-us .inline-3 { font-size: 12px;color:var(--blue-light); }
.scope-about-us .inline-4 { padding:8px 0 0 18px; }
.scope-about-us .inline-5 { color:var(--blue-bright);font-size: 14px; }


/* --- Styles for arts-creativity.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-arts-creativity .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #4a2c2a 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
        }
        .scope-arts-creativity .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-arts-creativity .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-arts-creativity .services-page-hero > .container > p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.6; margin: 0 auto; }

        .scope-arts-creativity .service-detail-band { padding: 100px 0; }
        .scope-arts-creativity .bg-light { background: var(--off-white); }
        .scope-arts-creativity .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-arts-creativity .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }

        .scope-arts-creativity .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
        .scope-arts-creativity .service-image-grid article { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-arts-creativity .service-image-grid article:hover { transform: translateY(-10px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); border-color: var(--blue-pale); }
        .scope-arts-creativity .service-image-grid article img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; }
        .scope-arts-creativity .service-image-grid article:hover img { transform: scale(1.04); }
        .scope-arts-creativity .service-image-grid article div { padding: 32px; }
        .scope-arts-creativity .service-image-grid article strong { font-family: 'Cinzel', serif; font-size: 26px; display: block; margin-bottom: 14px; color: var(--blue-deep); letter-spacing: 0.5px; }
        .scope-arts-creativity .service-image-grid article p { font-size: 17px; line-height: 1.75; color: var(--text-light); margin-bottom: 24px; }
        .scope-arts-creativity .service-image-grid article a { font-size: 14px; font-weight: 700; color: var(--blue-bright); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; font-family: 'Cinzel', serif; border-bottom: 2px solid var(--gold-light); padding-bottom: 4px; transition: all 0.3s ease; display: inline-block; }
        .scope-arts-creativity .service-image-grid article a:hover { color: var(--gold); letter-spacing: 2.5px; border-bottom-color: var(--blue-bright); }

        .service-detail-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            cursor: pointer;
        }
        .service-detail-card > div {
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .service-detail-card a.btn-primary.sm {
            margin-top: auto;
            align-self: flex-start;
        }

        .scope-arts-creativity .art-benefits { padding: 70px 0; background: var(--white); }
        .scope-arts-creativity .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .scope-arts-creativity .benefit-card { background: var(--off-white); border-radius: 24px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border); }
        .scope-arts-creativity .benefit-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 20px 35px rgba(37,99,235,0.08); }
        .scope-arts-creativity .benefit-card .icon { font-size: 50px; margin-bottom: 18px; display: inline-block; }
        .scope-arts-creativity .benefit-card h4 { font-family: 'Cinzel', serif; font-size: 22px; margin-bottom: 12px; color: var(--blue-deep); }
        .scope-arts-creativity .benefit-card p { font-size: 16px; color: var(--text-light); line-height: 1.6; }

        .scope-arts-creativity .mediums-showcase { padding: 70px 0; background: var(--blue-ultra); }
        .scope-arts-creativity .mediums-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
        .scope-arts-creativity .medium-item { padding: 28px 20px; background: #fff; border-radius: 20px; border: 1px solid var(--border); transition: all 0.3s; }
        .scope-arts-creativity .medium-item:hover { transform: scale(1.02); border-color: var(--gold-light); box-shadow: 0 12px 25px rgba(0,0,0,0.05); }
        .scope-arts-creativity .medium-item span { font-size: 50px; display: block; margin-bottom: 12px; }
        .scope-arts-creativity .medium-item h5 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--blue-deep); margin-bottom: 8px; }
        .scope-arts-creativity .medium-item p { font-size: 15px; color: var(--text-mid); }

        .scope-arts-creativity .workshop-section { padding: 70px 0; background: var(--white); }
        .scope-arts-creativity .workshop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .scope-arts-creativity .workshop-card { background: linear-gradient(145deg, var(--blue-deep), #2d3748); border-radius: 28px; padding: 40px; color: white; text-align: center; }
        .scope-arts-creativity .workshop-card span { font-size: 54px; display: block; margin-bottom: 16px; }
        .scope-arts-creativity .workshop-card h4 { font-family: 'Cinzel', serif; font-size: 28px; margin-bottom: 12px; }
        .scope-arts-creativity .workshop-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
        .scope-arts-creativity .btn-outline-light { background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light); padding: 10px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; }
        .scope-arts-creativity .btn-outline-light:hover { background: var(--gold-light); color: var(--blue-deep); }

        .scope-arts-creativity .faq-section { padding: 80px 0; background: var(--off-white); }
        .scope-arts-creativity .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-arts-creativity .faq-list details { background: #fff; padding: 18px 24px; border-radius: 20px; margin-bottom: 16px; border: 1px solid var(--border); transition: all 0.2s; }
        .scope-arts-creativity .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; letter-spacing: 0.5px; cursor: pointer; }
        .scope-arts-creativity .faq-list details p { margin-top: 12px; color: var(--text-mid); line-height: 1.6; }

.scope-arts-creativity .inline-6 { grid-column: span 1; }
.scope-arts-creativity .inline-7 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep);margin-bottom:16px; }
.scope-arts-creativity .inline-8 { color:var(--text-light);line-height:1.7; }
.scope-arts-creativity .inline-9 { margin-top:24px;list-style:none; }
.scope-arts-creativity .inline-10 { margin-bottom:12px; }
.scope-arts-creativity .inline-11 { margin-bottom:12px; }
.scope-arts-creativity .inline-12 { margin-bottom:12px; }
.scope-arts-creativity .inline-13 { margin-top:28px; }
.scope-arts-creativity .inline-14 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-arts-creativity .inline-15 { margin-top:16px;color:var(--text-mid); }
.scope-arts-creativity .inline-16 { margin-top:32px; }
.scope-arts-creativity .inline-17 { color:rgba(255,255,255,0.45);font-size: 16px;line-height:1.7; }


/* --- Styles for blog-details.html --- */

        /* ── Blog Details Page-Specific Styles ── */

        .scope-blog-details .article-wrapper {
            padding-top: var(--nav-height);
            background: linear-gradient(180deg, var(--blue-ultra) 0%, var(--white) 40%);
        }

        .scope-blog-details .blog-hero {
            padding: 120px 0 40px;
            background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            color: white;
            margin-bottom: 30px;
        }

        .scope-blog-details .blog-hero .hero-content {
            text-align: center;
        }

        .scope-blog-details .hero-label {
            font-size: 14px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 16px;
        }

        .scope-blog-details .blog-hero .hero-content h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(38px, 5vw, 58px);
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--white);
        }

        .scope-blog-details .blog-hero .hero-content p {
            font-size: 20px;
            max-width: 680px;
            margin: 0 auto;
            opacity: 0.85;
            color: var(--white);
        }

        .scope-blog-details .article-section {
            padding: 40px 0 70px;
        }

        .scope-blog-details .article-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 62px;
            align-items: start;
        }

        .scope-blog-details .article-content p {
            color: var(--text-mid);
            font-size: 20px;
            line-height: 1.9;
            margin-bottom: 28px;
        }

        .scope-blog-details .article-content h2 {
            font-family: 'Playfair Display', serif;
            color: var(--blue-deep);
            font-size: clamp(30px, 3vw, 40px);
            margin: 52px 0 20px;
            font-weight: 700;
        }

        .scope-blog-details .blog-quote {
            margin: 52px 0;
            padding: 40px 48px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
            color: white;
            border-radius: 24px;
            position: relative;
        }

        .scope-blog-details .blog-quote p {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            line-height: 1.4;
            margin-bottom: 18px;
        }

        .scope-blog-details .blog-quote cite {
            color: var(--gold-light);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
        }

        .scope-blog-details .practice-list {
            display: grid;
            gap: 16px;
            margin: 32px 0;
            list-style: none;
        }

        .scope-blog-details .practice-list li {
            padding: 18px 24px;
            border: 1px solid var(--border);
            background: var(--off-white);
            border-radius: 16px;
            font-weight: 500;
        }

        .scope-blog-details .article-sidebar {
            position: sticky;
            top: 104px;
            display: grid;
            gap: 28px;
        }

        .scope-blog-details .side-card {
            border: 1px solid var(--border);
            background: white;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 16px 40px rgba(37, 99, 235, 0.06);
        }

        .scope-blog-details .side-card h3 {
            font-family: 'Cinzel', serif;
            color: var(--blue-deep);
            border-left: 3px solid var(--gold);
            padding-left: 12px;
            margin-bottom: 18px;
            font-size: 20px;
        }

        .scope-blog-details .side-card a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            color: var(--text-mid);
            font-weight: 600;
            transition: color 0.2s;
        }

        .scope-blog-details .side-card a:hover {
            color: var(--blue-bright);
        }

        .scope-blog-details .side-card-author {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .scope-blog-details .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-light);
            flex-shrink: 0;
        }

        .scope-blog-details .side-card-author h3 {
            border-left: none;
            padding-left: 0;
        }

        .scope-blog-details .side-card-author p {
            font-size: 16px;
            color: var(--text-mid);
            line-height: 1.5;
        }

        /* Related Section */
        .scope-blog-details .related-section {
            padding: 70px 0 110px;
            background: var(--off-white);
        }

        .scope-blog-details .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .scope-blog-details .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            color: var(--gold);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .scope-blog-details .section-eyebrow::before,
        .scope-blog-details .section-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .scope-blog-details .section-title {
            font-family: 'Cinzel', serif;
            color: var(--blue-deep);
            font-size: clamp(34px, 4vw, 46px);
        }

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

        .scope-blog-details .related-card {
            border: 1px solid var(--border);
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .scope-blog-details .related-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(37, 99, 235, 0.12);
        }

        .scope-blog-details .related-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .scope-blog-details .related-body {
            padding: 24px;
        }

        .scope-blog-details .related-body .blog-tag-sm {
            font-size: 12px;
            letter-spacing: 1.5px;
            color: var(--blue-bright);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 8px;
            display: inline-block;
        }

        .scope-blog-details .related-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            line-height: 1.32;
            margin-bottom: 12px;
            color: var(--blue-deep);
        }

        .scope-blog-details .read-link {
            display: inline-flex;
            margin-top: 10px;
            color: var(--blue-bright);
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            font-size: 14px;
        }

        .scope-blog-details .read-link:hover {
            color: var(--blue-mid);
        }

.scope-blog-details .inline-18 { grid-column: span 1; }
.scope-blog-details .inline-19 { display:flex;align-items:center;gap:14px; }
.scope-blog-details .inline-20 { font-size: 12px;color:var(--blue-light); }
.scope-blog-details .inline-21 { color:var(--blue-bright); }
.scope-blog-details .inline-22 { color:var(--text-mid);font-size: 17px;margin-bottom:16px; }


/* --- Styles for blog.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-blog .blog-hero {
            position: relative;
            min-height: 65vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(125deg, rgba(10,31,92,0.88) 0%, rgba(26,58,143,0.82) 100%),
                        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1800&q=85');
            background-size: cover;
            background-position: center 35%;
            overflow: hidden;
            padding: calc(var(--nav-height) + 60px) 0 70px;
        }
        .scope-blog .blog-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--white); border-radius: 40px 40px 0 0; z-index: 1; }
        .scope-blog .blog-hero .container { position: relative; z-index: 2; }
        .scope-blog .hero-content { max-width: 800px; margin: 0 auto; }
        .scope-blog .hero-label { display: inline-block; font-size: 13px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-light); background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); padding: 6px 24px; border-radius: 40px; margin-bottom: 28px; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); }
        .scope-blog .hero-content h1 { font-family: 'Cinzel', serif; font-size: clamp(58px, 8vw, 98px); font-weight: 800; line-height: 1.08; color: white; margin-bottom: 24px; letter-spacing: 3px; text-shadow: 0 4px 24px rgba(0,0,0,0.2); }
        .scope-blog .hero-content h1 span { color: var(--gold-light); border-bottom: 3px solid var(--gold); display: inline-block; }
        .scope-blog .hero-content p { font-size: 1.35rem; line-height: 1.8; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto; }

        .scope-blog .blog-grid-section { padding: 90px 0 120px; background: var(--white); }
        .scope-blog .section-intro { text-align: center; margin-bottom: 64px; }
        .scope-blog .section-title { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 50px); font-weight: 700; color: var(--blue-deep); margin-bottom: 18px; letter-spacing: -0.3px; }
        .scope-blog .section-desc { font-size: 19px; color: var(--text-light); max-width: 620px; margin: 0 auto; line-height: 1.8; }

        .scope-blog .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        .scope-blog .blog-card { background: var(--white); border-radius: 28px; overflow: hidden; border: 1px solid rgba(37,99,235,0.08); transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); box-shadow: 0 12px 28px rgba(0,0,0,0.02); }
        .scope-blog .blog-card:hover { transform: translateY(-10px); box-shadow: 0 32px 52px -20px rgba(37,99,235,0.22); border-color: rgba(37,99,235,0.2); }
        .scope-blog .blog-card-media { height: 260px; overflow: hidden; }
        .scope-blog .blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
        .scope-blog .blog-card:hover .blog-card-media img { transform: scale(1.08); }
        .scope-blog .blog-card-body { padding: 28px 28px 32px; }
        .scope-blog .blog-meta { display: flex; gap: 20px; font-size: 13px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--blue-light); font-weight: 700; margin-bottom: 16px; }
        .scope-blog .blog-card h3 { font-family: 'Playfair Display', serif; font-size: 26px; line-height: 1.32; margin-bottom: 16px; color: var(--blue-deep); font-weight: 700; transition: color 0.2s; }
        .scope-blog .blog-card:hover h3 { color: var(--blue-bright); }
        .scope-blog .blog-card p { color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; font-size: 17px; }
        .scope-blog .read-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue-bright); text-decoration: none; border-bottom: 1.5px solid transparent; transition: all 0.25s; }
        .scope-blog .read-link:hover { gap: 14px; border-bottom-color: var(--blue-bright); }

.scope-blog .inline-23 { grid-column: span 1; }


/* --- Styles for carrier.html --- */

        /* ── Careers Page-Specific Styles ── */

        /* Hero */
        .scope-carrier .career-hero {
            position: relative;
            min-height: 65vh;
            display: flex;
            align-items: center;
            padding: calc(var(--nav-height) + 80px) 0 80px;
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 50%, #2a4a6e 100%);
            overflow: hidden;
        }

        .scope-carrier .career-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 120%;
            background: radial-gradient(circle, rgba(201,148,58,0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .scope-carrier .career-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--white), transparent);
        }

        .scope-carrier .career-hero-content {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            color: var(--white);
        }

        .scope-carrier .career-hero .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--gold-light);
            margin-bottom: 28px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .scope-carrier .career-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(44px, 5.5vw, 70px);
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .scope-carrier .career-hero h1 em {
            color: var(--gold-light);
            font-style: italic;
        }

        .scope-carrier .career-hero p {
            font-size: 20px;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            margin: 0 auto 36px;
            max-width: 550px;
        }

        .scope-carrier .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .scope-carrier .btn-career-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--blue-deep);
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .scope-carrier .btn-career-primary:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201,148,58,0.3);
        }

        .scope-carrier .btn-career-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,0.35);
            background: transparent;
            color: var(--white);
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s;
        }

        .scope-carrier .btn-career-outline:hover {
            border-color: var(--gold);
            background: rgba(201,148,58,0.1);
            transform: translateY(-3px);
        }

        /* Section header */
        .scope-carrier .careers-section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .scope-carrier .careers-eyebrow {
            font-size: 13px;
            letter-spacing: 5px;
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 14px;
            display: block;
        }

        .scope-carrier .careers-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--blue-deep);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .scope-carrier .careers-divider {
            width: 70px;
            height: 3px;
            background: var(--gold);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        /* Why join section */
        .scope-carrier .why-join {
            padding: 90px 0;
            background: var(--white);
        }

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

        .scope-carrier .perk-card {
            background: var(--off-white);
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.3s;
            border: 1px solid var(--border);
            text-align: center;
        }

        .scope-carrier .perk-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(10,31,92,0.12);
            background: var(--white);
            border-color: var(--gold-light);
        }

        .scope-carrier .perk-icon {
            font-size: 50px;
            margin-bottom: 24px;
            display: block;
        }

        .scope-carrier .perk-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            margin-bottom: 14px;
            color: var(--blue-deep);
        }

        .scope-carrier .perk-card p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Open positions */
        .scope-carrier .openings {
            padding: 0 0 90px;
            background: var(--white);
        }

        .scope-carrier .positions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 30px;
        }

        .scope-carrier .position-card {
            background: var(--white);
            border-radius: 24px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.4s;
        }

        .scope-carrier .position-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(37,99,235,0.12);
            border-color: var(--gold-light);
        }

        .scope-carrier .position-header {
            padding: 28px 28px 20px;
            border-bottom: 1px solid var(--border);
        }

        .scope-carrier .position-dept {
            display: inline-block;
            font-size: 13px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .scope-carrier .position-header h3 {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            color: var(--blue-deep);
            margin-bottom: 10px;
        }

        .scope-carrier .position-location {
            font-size: 15px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 6px;
        }

        .scope-carrier .position-body {
            padding: 20px 28px;
        }

        .scope-carrier .position-body p {
            font-size: 16px;
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .scope-carrier .requirements {
            list-style: none;
            margin: 16px 0;
        }

        .scope-carrier .requirements li {
            font-size: 15px;
            color: var(--text-light);
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border);
        }

        .scope-carrier .requirements li:last-child {
            border-bottom: none;
        }

        .scope-carrier .req-check {
            color: var(--gold);
            font-size: 16px;
            flex-shrink: 0;
        }

        .scope-carrier .position-footer {
            padding: 20px 28px 28px;
            border-top: 1px solid var(--border);
        }

        .scope-carrier .apply-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
            color: var(--white);
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }

        .scope-carrier .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10,31,92,0.3);
        }

        /* CTA Banner */
        .scope-carrier .cta-section {
            padding: 0 0 100px;
            background: var(--white);
        }

        .scope-carrier .cta-banner {
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
            border-radius: 32px;
            padding: 60px;
            text-align: center;
            color: var(--white);
        }

        .scope-carrier .cta-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            margin-bottom: 16px;
        }

        .scope-carrier .cta-banner p {
            font-size: 18px;
            opacity: 0.85;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .scope-carrier .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--blue-deep);
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
        }

        .scope-carrier .btn-cta:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201,148,58,0.35);
        }

.scope-carrier .inline-24 { grid-column: span 1; }
.scope-carrier .inline-25 { display:flex;align-items:center;gap:14px; }
.scope-carrier .inline-26 { font-size: 12px;color:var(--blue-light); }
.scope-carrier .inline-27 { color:var(--blue-bright); }
.scope-carrier .inline-28 { color:var(--text-light);font-size: 18px; }


/* --- Styles for contact-us.html --- */

        /* ── Contact Page-Specific Styles ── */

        /* Hero */
        .scope-contact-us .contact-hero {
            position: relative;
            min-height: 68vh;
            padding: calc(var(--nav-height) + 86px) 0 82px;
            background: linear-gradient(135deg, rgba(10,31,92,0.96), rgba(37,99,235,0.86)),
                        url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1800&q=80') center/cover;
            color: var(--white);
            overflow: hidden;
        }

        .scope-contact-us .contact-hero::after {
            content: '';
            position: absolute;
            inset: auto -10% -42% -10%;
            height: 58%;
            background: var(--white);
            border-radius: 50% 50% 0 0;
            opacity: 0.98;
        }

        .scope-contact-us .contact-hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
            gap: 48px;
            align-items: center;
        }

        .scope-contact-us .contact-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.24);
            border-radius: 999px;
            font-size: 13px;
            letter-spacing: 2.2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .scope-contact-us .contact-hero-badge span {
            width: 6px;
            height: 6px;
            background: var(--blue-sky);
            border-radius: 50%;
        }

        .scope-contact-us .contact-hero h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(44px, 7vw, 84px);
            line-height: 0.98;
            letter-spacing: 2px;
            margin-bottom: 24px;
            color: var(--white);
        }

        .scope-contact-us .contact-hero p {
            max-width: 660px;
            color: rgba(255,255,255,0.84);
            font-size: 20px;
            line-height: 1.8;
        }

        .scope-contact-us .contact-hero-card {
            background: rgba(255,255,255,0.95);
            color: var(--text-dark);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 30px 90px rgba(3,15,50,0.28);
            border: 1px solid rgba(255,255,255,0.56);
        }

        .scope-contact-us .contact-hero-card strong {
            display: block;
            font-family: 'Cinzel', serif;
            color: var(--blue-deep);
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .scope-contact-us .contact-hero-card a,
        .scope-contact-us .contact-hero-card span {
            display: block;
            color: var(--text-mid);
            text-decoration: none;
            line-height: 1.8;
            margin-top: 10px;
        }

        .scope-contact-us .contact-hero-card a:hover {
            color: var(--blue-bright);
        }

        /* Main wrapper */
        .scope-contact-us .contact-page-main {
            position: relative;
            z-index: 2;
            background: var(--white);
        }

        /* Contact section */
        .scope-contact-us #contact.contact-page-section {
            padding: 80px 0 70px;
        }

        .scope-contact-us .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .scope-contact-us .section-eyebrow {
            font-size: 13px;
            letter-spacing: 5px;
            color: var(--blue-bright);
            text-transform: uppercase;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .scope-contact-us .section-eyebrow::before,
        .scope-contact-us .section-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--blue-bright);
            opacity: 0.4;
        }

        .scope-contact-us .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--blue-deep);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .scope-contact-us .section-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
            border-radius: 2px;
            margin: 0 auto 18px;
        }

        .scope-contact-us .section-desc {
            font-size: 19px;
            color: var(--text-light);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.85;
        }

        /* Contact layout */
        .scope-contact-us .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            align-items: start;
        }

        .scope-contact-us .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--blue-deep);
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .scope-contact-us .contact-info > p {
            font-size: 19px;
            color: var(--text-light);
            line-height: 1.85;
            margin-bottom: 36px;
        }

        .scope-contact-us .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .scope-contact-us .contact-detail .icon-wrap {
            width: 42px;
            height: 42px;
            background: var(--blue-ultra);
            border: 1.5px solid var(--blue-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .scope-contact-us .contact-detail:hover .icon-wrap {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
        }

        .scope-contact-us .contact-detail .text strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--blue-mid);
            margin-bottom: 4px;
        }

        .scope-contact-us .contact-detail .text span,
        .scope-contact-us .contact-detail .text a {
            font-size: 16.5px;
            color: var(--text-light);
            line-height: 1.7;
            text-decoration: none;
        }

        .scope-contact-us .contact-detail .text a:hover {
            color: var(--blue-bright);
        }

        .scope-contact-us .contact-socials {
            display: flex;
            gap: 10px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .scope-contact-us .contact-socials a {
            width: 42px;
            height: 42px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: var(--off-white);
        }

        .scope-contact-us .contact-socials a svg {
            width: 17px;
            height: 17px;
            fill: var(--text-light);
            transition: fill 0.3s;
        }

        .scope-contact-us .contact-socials a:hover {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37,99,235,0.25);
        }

        .scope-contact-us .contact-socials a:hover svg {
            fill: #fff;
        }

        /* Form */
        .scope-contact-us .contact-form {
            background: var(--blue-ultra);
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 48px 44px;
            box-shadow: 0 10px 40px rgba(37,99,235,0.07);
        }

        .scope-contact-us .contact-form h4 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--blue-deep);
            margin-bottom: 28px;
        }

        .scope-contact-us .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .scope-contact-us .form-group {
            margin-bottom: 20px;
        }

        .scope-contact-us .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .scope-contact-us .form-group input,
        .scope-contact-us .form-group textarea,
        .scope-contact-us .form-group select {
            width: 100%;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 12px 16px;
            color: var(--text-dark);
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .scope-contact-us .form-group input:focus,
        .scope-contact-us .form-group textarea:focus,
        .scope-contact-us .form-group select:focus {
            border-color: var(--blue-bright);
            box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        }

        .scope-contact-us .form-group textarea {
            height: 110px;
            resize: none;
        }

        .scope-contact-us .form-group select {
            appearance: none;
            cursor: pointer;
        }

        .scope-contact-us .form-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2.5px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(37,99,235,0.3);
            margin-top: 4px;
        }

        .scope-contact-us .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(37,99,235,0.4);
        }

        /* Map section */
        .scope-contact-us .map-section {
            padding: 0 0 100px;
            background: var(--white);
        }

        .scope-contact-us .map-layout {
            width: min(1180px, calc(100% - 60px));
            margin: 0 auto;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 24px 70px var(--shadow-blue);
            background: var(--off-white);
        }

        .scope-contact-us .map-frame {
            aspect-ratio: 16 / 6.5;
            min-height: 360px;
        }

        .scope-contact-us .map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

.scope-contact-us .inline-29 { grid-column: span 1; }
.scope-contact-us .inline-30 { display:flex;align-items:center;gap:14px; }
.scope-contact-us .inline-31 { font-size: 12px;color:var(--blue-light); }
.scope-contact-us .inline-32 { color:var(--blue-bright); }


/* --- Styles for course-details.html --- */

/* ── Hero ── */
.scope-course-details .course-hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 90px) 0 140px;
    background: linear-gradient(135deg, #081848 0%, #0f2d82 45%, #1a4a9e 100%);
    overflow: hidden;
}

.scope-course-details .course-hero::before,
.scope-course-details .course-hero::after { display: none; }

.scope-course-details .hero-mandala-bg {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    width: 560px;
    height: 560px;
    pointer-events: none;
    opacity: 0.13;
    animation: cdMandalaRotate 80s linear infinite;
}

@keyframes cdMandalaRotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.scope-course-details .hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.scope-course-details .hero-glow-1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(201,148,58,0.18) 0%, transparent 68%);
    top: -220px; right: -80px;
}
.scope-course-details .hero-glow-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(96,165,250,0.14) 0%, transparent 68%);
    bottom: -100px; left: 8%;
}

.scope-course-details .hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    line-height: 0;
    z-index: 3;
}
.scope-course-details .hero-wave svg {
    width: 100%; height: 80px; display: block;
}

.scope-course-details .course-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.scope-course-details .course-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 2.5px;
    color: var(--gold-light);
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.scope-course-details .course-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 5.8vw, 72px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 26px;
    font-weight: 700;
}
.scope-course-details .course-hero h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.scope-course-details .course-hero > .container > .course-hero-content > p {
    font-size: 20px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 42px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.scope-course-details .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.scope-course-details .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #e8b84b);
    color: var(--blue-deep);
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(201,148,58,0.45);
}
.scope-course-details .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(201,148,58,0.55);
}

.scope-course-details .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.38);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}
.scope-course-details .btn-hero-outline:hover {
    border-color: var(--gold-light);
    background: rgba(201,148,58,0.1);
    transform: translateY(-3px);
}

/* ── Stats Banner ── */
.scope-course-details .stats-banner-wrap {
    background: var(--white);
}

.scope-course-details .stats-banner {
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 20px 64px rgba(10,31,92,0.14);
    padding: 10px 20px;
    margin-top: -54px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    border: 1px solid rgba(37,99,235,0.1);
}

.scope-course-details .stat-item {
    padding: 28px 20px 24px;
    position: relative;
}
.scope-course-details .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 22%; height: 56%;
    width: 1px;
    background: rgba(37,99,235,0.12);
}

.scope-course-details .stat-icon-bg {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.scope-course-details .stat-item .stat-number {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
}
.scope-course-details .stat-item .stat-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 9px;
    display: block;
    font-weight: 600;
}

/* ── Section Utilities ── */
.scope-course-details .course-section {
    padding: 90px 0;
}
.scope-course-details .course-section.bg-light {
    background: var(--off-white);
}

.scope-course-details .course-header {
    text-align: center;
    margin-bottom: 60px;
}

.scope-course-details .course-eyebrow {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
}

.scope-course-details .course-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 16px;
}

.scope-course-details .course-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Course Info Row ── */
.scope-course-details .course-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.scope-course-details .course-image-feature {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10,31,92,0.18);
    position: relative;
}
.scope-course-details .course-image-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 520px;
    transition: transform 0.6s ease;
}
.scope-course-details .course-image-feature:hover img {
    transform: scale(1.03);
}

.scope-course-details .img-badge {
    position: absolute;
    top: 22px; left: 22px;
    background: rgba(8,24,72,0.82);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255,255,255,0.14);
    z-index: 2;
}
.scope-course-details .img-badge-pulse {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: imgPulse 2s ease-in-out infinite;
}
@keyframes imgPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.65); }
    50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.scope-course-details .img-gradient-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to top, rgba(10,31,92,0.45), transparent);
    pointer-events: none;
}

.scope-course-details .course-details-side {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid rgba(37,99,235,0.12);
    box-shadow: 0 20px 54px rgba(10,31,92,0.09);
    overflow: hidden;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.scope-course-details .details-side-header {
    background: linear-gradient(135deg, #081848 0%, #1a3fad 100%);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scope-course-details .details-side-header-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scope-course-details .details-side-header-icon svg {
    width: 22px; height: 22px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scope-course-details .details-side-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 0;
}
.scope-course-details .details-side-header h3 span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.52);
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-top: 4px;
}

.scope-course-details .details-side-body {
    padding: 32px 36px;
}

.scope-course-details .info-list {
    list-style: none;
    margin-bottom: 28px;
}
.scope-course-details .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(37,99,235,0.08);
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.55;
    transition: padding-left 0.2s;
}
.scope-course-details .info-list li:last-child { border-bottom: none; }
.scope-course-details .info-list li:hover { padding-left: 4px; }

.scope-course-details .info-icon-wrap {
    width: 40px; height: 40px;
    background: rgba(37,99,235,0.06);
    border: 1.5px solid rgba(37,99,235,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.scope-course-details .info-list li:hover .info-icon-wrap {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
}
.scope-course-details .info-icon-wrap svg {
    width: 17px; height: 17px;
    fill: none;
    stroke: var(--blue-mid);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.scope-course-details .info-list li:hover .info-icon-wrap svg { stroke: #fff; }

.scope-course-details .info-text strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 3px;
    font-weight: 700;
}
.scope-course-details .info-text span {
    font-size: 16px;
    color: var(--text-light);
}

.scope-course-details .enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: var(--white);
    padding: 17px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
}
.scope-course-details .enquiry-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}
.scope-course-details .enquiry-btn:hover::after { left: 100%; }
.scope-course-details .enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37,99,235,0.4);
}

/* ── Description & Benefits ── */
.scope-course-details .desc-benefits {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.scope-course-details .desc-box {
    background: var(--white);
    border-radius: 28px;
    padding: 50px 46px;
    border: 1px solid rgba(37,99,235,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.scope-course-details .desc-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--blue-sky));
    border-radius: 0 3px 3px 0;
}
.scope-course-details .desc-box::after {
    content: '\201C';
    position: absolute;
    top: -10px; right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 172px;
    color: rgba(37,99,235,0.04);
    line-height: 1;
    pointer-events: none;
}
.scope-course-details .desc-box:hover {
    box-shadow: 0 28px 60px rgba(37,99,235,0.1);
    border-color: rgba(201,148,58,0.28);
    transform: translateY(-5px);
}

.scope-course-details .desc-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.scope-course-details .desc-box-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(201,148,58,0.13), rgba(201,148,58,0.05));
    border: 1.5px solid rgba(201,148,58,0.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scope-course-details .desc-box-icon svg {
    width: 24px; height: 24px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.scope-course-details .desc-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--blue-deep);
    margin: 0;
    letter-spacing: 0.5px;
}
.scope-course-details .desc-box p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-mid);
}
.scope-course-details .desc-box p + p { margin-top: 16px; }
.scope-course-details .desc-box blockquote {
    margin-top: 28px;
    padding: 20px 26px;
    background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(37,99,235,0.02));
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--blue-mid);
    line-height: 1.75;
}

.scope-course-details .benefits-box {
    background: var(--white);
    border-radius: 28px;
    padding: 50px 46px;
    border: 1px solid rgba(37,99,235,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.scope-course-details .benefits-box::before {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #10b981, #34d399, #6ee7b7);
    border-radius: 3px 0 0 3px;
}
.scope-course-details .benefits-box:hover {
    box-shadow: 0 28px 60px rgba(37,99,235,0.1);
    border-color: rgba(16,185,129,0.22);
    transform: translateY(-5px);
}

.scope-course-details .benefits-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.scope-course-details .benefits-box-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.05));
    border: 1.5px solid rgba(16,185,129,0.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.scope-course-details .benefits-box-icon svg {
    width: 24px; height: 24px;
    fill: none;
    stroke: #10b981;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.scope-course-details .benefits-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--blue-deep);
    margin: 0;
    letter-spacing: 0.5px;
}

.scope-course-details .benefits-list { list-style: none; }
.scope-course-details .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 17px;
    color: var(--text-mid);
    transition: all 0.25s;
    margin-bottom: 6px;
    border: 1px solid transparent;
    line-height: 1.55;
}
.scope-course-details .benefits-list li:hover {
    background: rgba(16,185,129,0.05);
    border-color: rgba(16,185,129,0.16);
    transform: translateX(4px);
}
.scope-course-details .benefits-list li:last-child { margin-bottom: 0; }

.scope-course-details .benefit-check {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 3px 10px rgba(16,185,129,0.32);
}
.scope-course-details .benefit-check svg {
    width: 13px; height: 13px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Gallery — Bento Grid ── */
.scope-course-details .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.scope-course-details .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}
.scope-course-details .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
}
.scope-course-details .gallery-wide {
    grid-column: span 2;
}

.scope-course-details .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(10,31,92,0.18);
}
.scope-course-details .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}
.scope-course-details .gallery-item:hover img { transform: scale(1.08); }

.scope-course-details .gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,31,92,0.75) 0%, rgba(10,31,92,0.25) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
    backdrop-filter: blur(2px);
}
.scope-course-details .gallery-item .overlay span {
    font-size: 30px;
    transform: translateY(10px);
    transition: transform 0.3s;
}
.scope-course-details .gallery-item:hover .overlay { opacity: 1; }
.scope-course-details .gallery-item:hover .overlay span { transform: translateY(0); }

.scope-course-details .gallery-caption {
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s 0.05s;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.scope-course-details .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ── FAQ ── */
.scope-course-details .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 70px;
    align-items: start;
}

.scope-course-details .faq-left .course-eyebrow { margin-bottom: 16px; }

.scope-course-details .faq-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 44px);
    color: var(--blue-deep);
    line-height: 1.22;
    margin-bottom: 20px;
}
.scope-course-details .faq-left p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.scope-course-details .btn-ask {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
.scope-course-details .btn-ask:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37,99,235,0.35);
}

.scope-course-details .faq-item {
    background: var(--white);
    border-radius: 18px;
    margin-bottom: 12px;
    border: 1.5px solid rgba(37,99,235,0.1);
    overflow: hidden;
    transition: all 0.3s;
}
.scope-course-details .faq-item:hover {
    border-color: rgba(37,99,235,0.22);
    box-shadow: 0 8px 24px rgba(37,99,235,0.07);
}
.scope-course-details .faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201,148,58,0.13);
}

.scope-course-details .faq-question {
    padding: 20px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--blue-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: var(--white);
    transition: background 0.2s;
    user-select: none;
}
.scope-course-details .faq-item.active .faq-question {
    background: rgba(201,148,58,0.04);
}

.scope-course-details .faq-q-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.scope-course-details .faq-num {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    background: rgba(201,148,58,0.1);
    padding: 4px 11px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}
.scope-course-details .faq-item.active .faq-num {
    background: var(--gold);
    color: var(--blue-deep);
}

.scope-course-details .faq-chevron {
    font-size: 16px;
    transition: transform 0.35s;
    color: var(--gold);
    flex-shrink: 0;
}
.scope-course-details .faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.scope-course-details .faq-answer {
    padding: 18px 24px 22px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.82;
    display: none;
    border-top: 1px solid rgba(201,148,58,0.14);
}
.scope-course-details .faq-item.active .faq-answer { display: block; }

/* ── CTA Banner ── */
.scope-course-details .cta-section {
    padding: 0 0 100px;
    background: var(--white);
}

.scope-course-details .cta-banner {
    background: linear-gradient(135deg, #081848 0%, #1338a8 55%, #1a4aad 100%);
    border-radius: 36px;
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.scope-course-details .cta-lotus-decoration {
    position: absolute;
    right: -30px; bottom: -30px;
    width: 260px; height: 260px;
    pointer-events: none;
    opacity: 0.6;
}
.scope-course-details .cta-lotus-decoration svg {
    width: 100%; height: 100%;
}

.scope-course-details .cta-eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.scope-course-details .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 52px);
    margin-bottom: 18px;
    position: relative;
    line-height: 1.15;
}

.scope-course-details .cta-banner p {
    font-size: 20px;
    opacity: 0.78;
    margin-bottom: 38px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.72;
    position: relative;
}

.scope-course-details .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), #e8b84b);
    color: var(--blue-deep);
    padding: 17px 46px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 10px 36px rgba(201,148,58,0.45);
    letter-spacing: 0.4px;
    position: relative;
}
.scope-course-details .btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(201,148,58,0.55);
}

.scope-course-details .cta-features {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    position: relative;
}
.scope-course-details .cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    font-weight: 500;
}
.scope-course-details .cta-features span svg {
    width: 16px; height: 16px;
    color: var(--gold-light);
}

/* ── Course Subtitle ── */
.scope-course-details .course-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 580px;
    margin: 16px auto 0;
    line-height: 1.72;
}

/* ── Curriculum Modules ── */
.scope-course-details .curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.scope-course-details .curriculum-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 28px 28px;
    border: 1.5px solid rgba(37,99,235,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.scope-course-details .curriculum-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s;
}
.scope-course-details .curriculum-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(10,31,92,0.12);
    border-color: rgba(201,148,58,0.28);
}
.scope-course-details .curriculum-card:hover::before { opacity: 1; }

.scope-course-details .curriculum-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.scope-course-details .curriculum-num {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    background: rgba(201,148,58,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}
.scope-course-details .curriculum-hours {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-bright);
    background: rgba(37,99,235,0.08);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.scope-course-details .curriculum-icon {
    font-size: 38px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}
.scope-course-details .curriculum-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--blue-deep);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.scope-course-details .curriculum-card > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.72;
    margin-bottom: 18px;
}
.scope-course-details .curriculum-topics {
    list-style: none;
    border-top: 1px solid rgba(37,99,235,0.08);
    padding-top: 16px;
}
.scope-course-details .curriculum-topics li {
    font-size: 15px;
    color: var(--text-mid);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.scope-course-details .curriculum-topics li::before {
    content: '›';
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

/* ── Who Is This For ── */
.scope-course-details .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.scope-course-details .who-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 32px;
    border: 1.5px solid rgba(37,99,235,0.1);
    transition: all 0.4s;
    position: relative;
}
.scope-course-details .who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(10,31,92,0.1);
    border-color: rgba(37,99,235,0.2);
}

.scope-course-details .who-card-featured {
    background: linear-gradient(150deg, #081848 0%, #1a3fad 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10,31,92,0.25);
}
.scope-course-details .who-card-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 70px rgba(10,31,92,0.3);
    border-color: transparent;
}

.scope-course-details .who-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scope-course-details .who-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}
.scope-course-details .who-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    color: var(--blue-deep);
}
.scope-course-details .who-card-featured h3 { color: white; }
.scope-course-details .who-card > p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
}
.scope-course-details .who-card-featured > p { color: rgba(255,255,255,0.72); }

.scope-course-details .who-list {
    list-style: none;
    border-top: 1px solid rgba(37,99,235,0.1);
    padding-top: 18px;
}
.scope-course-details .who-card-featured .who-list { border-color: rgba(255,255,255,0.15); }
.scope-course-details .who-list li {
    font-size: 16px;
    color: var(--text-mid);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.scope-course-details .who-card-featured .who-list li { color: rgba(255,255,255,0.78); }
.scope-course-details .who-list li::before {
    content: '✓';
    width: 20px; height: 20px;
    background: rgba(16,185,129,0.15);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.scope-course-details .who-card-featured .who-list li::before {
    background: rgba(255,255,255,0.12);
    color: var(--gold-light);
}

/* ── Meet the Instructor ── */
.scope-course-details .instructor-row {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: start;
}

.scope-course-details .instructor-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10,31,92,0.18);
}
.scope-course-details .instructor-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}
.scope-course-details .instructor-image-wrap:hover img { transform: scale(1.03); }

.scope-course-details .instructor-exp-badge {
    position: absolute;
    bottom: 24px; right: 24px;
    background: linear-gradient(135deg, #081848, #1a3fad);
    border-radius: 20px;
    padding: 16px 24px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}
.scope-course-details .exp-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.scope-course-details .exp-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.scope-course-details .instructor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.scope-course-details .cred-chip {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--blue-bright);
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.scope-course-details .instructor-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 40px);
    color: var(--blue-deep);
    margin-bottom: 8px;
    line-height: 1.2;
}
.scope-course-details .instructor-title {
    display: block;
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.scope-course-details .instructor-desc {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 14px;
}
.scope-course-details .instructor-quote {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(37,99,235,0.04);
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--blue-mid);
    line-height: 1.72;
}

.scope-course-details .instructor-stats {
    display: flex;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(37,99,235,0.1);
    margin-top: 28px;
}
.scope-course-details .ins-stat { text-align: left; }
.scope-course-details .ins-stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.scope-course-details .ins-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}

/* ── Student Testimonials ── */
.scope-course-details .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.scope-course-details .testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    border: 1.5px solid rgba(37,99,235,0.1);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.scope-course-details .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(10,31,92,0.1);
    border-color: rgba(37,99,235,0.2);
}

.scope-course-details .testimonial-featured {
    background: linear-gradient(150deg, #081848 0%, #1a3fad 100%);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10,31,92,0.25);
}
.scope-course-details .testimonial-featured:hover {
    transform: translateY(-14px);
    border-color: transparent;
}

.scope-course-details .testimonial-stars {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 2px;
}
.scope-course-details .testimonial-featured .testimonial-stars { color: var(--gold-light); }

.scope-course-details .testimonial-text {
    font-size: 17px;
    line-height: 1.82;
    color: var(--text-mid);
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
    font-family: 'Playfair Display', serif;
}
.scope-course-details .testimonial-featured .testimonial-text { color: rgba(255,255,255,0.82); }

.scope-course-details .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(37,99,235,0.1);
}
.scope-course-details .testimonial-featured .testimonial-author { border-color: rgba(255,255,255,0.15); }

.scope-course-details .author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(201,148,58,0.3);
}
.scope-course-details .author-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: 0.5px;
}
.scope-course-details .testimonial-featured .author-name { color: white; }
.scope-course-details .author-detail {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 3px;
}
.scope-course-details .testimonial-featured .author-detail { color: rgba(255,255,255,0.55); }

/* ── Upcoming Batches ── */
.scope-course-details .batches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.scope-course-details .batch-card {
    background: var(--white);
    border-radius: 28px;
    padding: 36px 30px;
    border: 1.5px solid rgba(37,99,235,0.1);
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.scope-course-details .batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(10,31,92,0.1);
    border-color: rgba(37,99,235,0.22);
}

.scope-course-details .batch-featured {
    background: linear-gradient(150deg, #081848 0%, #1a3fad 100%);
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(10,31,92,0.28);
    color: white;
}
.scope-course-details .batch-featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 42px 80px rgba(10,31,92,0.35);
    border-color: transparent;
}

.scope-course-details .batch-popular-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.scope-course-details .batch-format-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.15);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.scope-course-details .batch-format-light {
    color: var(--gold-light);
    background: rgba(201,148,58,0.12);
    border-color: rgba(201,148,58,0.25);
}

.scope-course-details .batch-month {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 6px;
    line-height: 1.1;
}
.scope-course-details .batch-featured .batch-month { color: white; }

.scope-course-details .batch-date-range {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.scope-course-details .batch-featured .batch-date-range { color: rgba(255,255,255,0.6); }

.scope-course-details .batch-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}
.scope-course-details .batch-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.scope-course-details .bm-label {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.scope-course-details .batch-featured .bm-label { color: rgba(255,255,255,0.5); }
.scope-course-details .bm-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}
.scope-course-details .batch-featured .bm-value { color: rgba(255,255,255,0.88); }

.scope-course-details .seats-limited { color: #f59e0b !important; }
.scope-course-details .seats-open { color: #10b981 !important; }

.scope-course-details .batch-seats-bar {
    height: 6px;
    background: rgba(37,99,235,0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}
.scope-course-details .batch-seats-bar-light {
    background: rgba(255,255,255,0.15);
}
.scope-course-details .batch-seats-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    transition: width 1s ease;
}

.scope-course-details .batch-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: rgba(37,99,235,0.07);
    border: 1.5px solid rgba(37,99,235,0.2);
    color: var(--blue-deep);
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    margin-top: auto;
}
.scope-course-details .batch-cta-btn:hover {
    background: var(--blue-deep);
    border-color: var(--blue-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,31,92,0.2);
}
.scope-course-details .batch-cta-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: transparent;
    color: var(--blue-deep);
    box-shadow: 0 8px 28px rgba(201,148,58,0.35);
}
.scope-course-details .batch-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(201,148,58,0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: transparent;
    color: var(--blue-deep);
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
}
.lightbox .close-lightbox {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
}

.scope-course-details .inline-34 { display:flex;align-items:center;gap:14px; }
.scope-course-details .inline-35 { font-size: 12px;color:var(--blue-light); }


/* ── Course Details: Alignment & Button fixes ── */

/* Make course-info-row give slightly more space to the image */
.scope-course-details .course-info-row {
    grid-template-columns: 1.2fr 1fr;
}

/* Image feature stretches to match the sidebar height */
.scope-course-details .course-image-feature {
    height: 100%;
    min-height: 460px;
}

/* When only description exists (no benefits), span full width */
.scope-course-details .desc-benefits.desc-only {
    grid-template-columns: 1fr;
    max-width: 840px;
    margin: 0 auto;
}

/* enquiry-btn and btn-cta as button elements */
.scope-course-details .enquiry-btn,
.scope-course-details .btn-cta,
.scope-course-details .btn-ask {
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.scope-course-details .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: var(--gold);
    color: var(--blue-deep);
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 10px 36px rgba(201,148,58,0.45);
    text-decoration: none;
}
.scope-course-details .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(201,148,58,0.55);
}

/* ── Enquiry Modal ── */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 72, 0.72);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.enquiry-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.enquiry-modal {
    background: var(--white);
    border-radius: 28px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(8,24,72,0.35);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.enquiry-modal-overlay.open .enquiry-modal {
    transform: translateY(0) scale(1);
}

.enquiry-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(8,24,72,0.08);
    border: none;
    font-size: 20px;
    color: var(--blue-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    font-family: inherit;
}
.enquiry-modal-close:hover {
    background: rgba(8,24,72,0.15);
    transform: rotate(90deg);
}

.enquiry-modal-header {
    background: linear-gradient(135deg, #081848 0%, #1a3fad 100%);
    padding: 32px 36px 28px;
    border-radius: 28px 28px 0 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}
.enquiry-modal-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.enquiry-modal-icon svg {
    width: 22px; height: 22px;
    stroke: var(--gold-light);
}
.enquiry-modal-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--white);
    margin: 0 0 4px;
    letter-spacing: 1px;
}
.enquiry-modal-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    margin: 0;
}

.enquiry-modal-form {
    padding: 28px 36px 36px;
}

.enquiry-modal-course {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.14);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 24px;
}
.enquiry-modal-course svg { stroke: var(--blue-bright); flex-shrink: 0; }

.enquiry-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.enquiry-field.full { grid-column: span 2; }

.enquiry-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    letter-spacing: 0.3px;
}
.enquiry-field label span { color: #e53e3e; }
.enquiry-field label .optional {
    color: var(--text-light);
    font-weight: 400;
}

.enquiry-field input,
.enquiry-field textarea {
    padding: 12px 14px;
    border: 1.5px solid rgba(37,99,235,0.18);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--blue-deep);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}
.enquiry-field input:focus,
.enquiry-field textarea:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: var(--white);
}
.enquiry-field textarea { resize: vertical; min-height: 80px; }

.enq-err {
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
}

.enquiry-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16,185,129,0.08);
    border: 1.5px solid rgba(16,185,129,0.24);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 20px;
}
.enquiry-success svg { stroke: #10b981; flex-shrink: 0; }

.enquiry-error-msg {
    background: rgba(220,38,38,0.07);
    border: 1.5px solid rgba(220,38,38,0.22);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #dc2626;
    margin-bottom: 16px;
    font-weight: 500;
}

.enquiry-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 28px rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
}
.enquiry-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37,99,235,0.4);
}
.enquiry-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── Lightbox ── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 36, 0.92);
    z-index: 20000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.lightbox-overlay.open img { transform: scale(1); }
.lightbox-close {
    position: fixed;
    top: 20px; right: 20px;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    font-family: inherit;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-caption {
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    text-align: center;
    max-width: 600px;
}

/* --- Styles for dance-classes.html --- */

        .scope-dance-classes .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #2c1a4a 0%, #1a3a8f 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
            text-align: center;
        }
        .scope-dance-classes .services-page-hero .container { width: 100%; }
        .scope-dance-classes .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-dance-classes .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-dance-classes .services-page-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .scope-dance-classes .section-eyebrow { font-size: 13.5px; letter-spacing: 5px; color: var(--blue-bright); text-transform: uppercase; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
        .scope-dance-classes .section-eyebrow::before, .scope-dance-classes .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--blue-bright); opacity: 0.4; }
        .scope-dance-classes .service-detail-band { padding: 100px 0; }
        .scope-dance-classes .bg-light { background: var(--off-white); }
        .scope-dance-classes .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-dance-classes .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }
        .scope-dance-classes .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
        .scope-dance-classes .service-detail-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s; box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-dance-classes .service-detail-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); }
        .scope-dance-classes .service-detail-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s; display: block; border-radius: 24px 24px 0 0; }
        .scope-dance-classes .service-detail-card:hover img { transform: scale(1.04); }
        .scope-dance-classes .service-detail-card > div { padding: 28px; }
        .scope-dance-classes .service-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: inline-block; background: var(--blue-ultra); padding: 4px 14px; border-radius: 30px; }
        .scope-dance-classes .service-detail-card h3 { font-family: 'Cinzel', serif; font-size: 22px; margin: 10px 0 12px; color: var(--blue-deep); }
        .scope-dance-classes .service-detail-card p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 14px; }
        .scope-dance-classes .service-detail-card ul { margin-bottom: 16px; padding-left: 18px; }
        .scope-dance-classes .service-detail-card ul li { font-size: 15px; color: var(--text-mid); margin-bottom: 5px; }
        .scope-dance-classes .btn-primary.sm { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: #fff; padding: 10px 26px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; border: none; cursor: pointer; margin-top: 8px; }
        .scope-dance-classes .btn-primary.sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
        .scope-dance-classes .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .scope-dance-classes .benefit-item { background: var(--white); border-radius: 20px; padding: 32px 24px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
        .scope-dance-classes .benefit-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px var(--shadow-blue); }
        .scope-dance-classes .benefit-item .icon { font-size: 38px; margin-bottom: 16px; }
        .scope-dance-classes .benefit-item h4 { font-family: 'Cinzel', serif; font-size: 18px; color: var(--blue-deep); margin-bottom: 10px; }
        .scope-dance-classes .benefit-item p { font-size: 16px; color: var(--text-light); line-height: 1.65; }
        .scope-dance-classes .schedule-section { padding: 80px 0; background: var(--white); }
        .scope-dance-classes .schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
        .scope-dance-classes .schedule-list h3 { font-family: 'Cinzel', serif; font-size: 24px; color: var(--blue-deep); margin-bottom: 22px; }
        .scope-dance-classes .schedule-list ul { list-style: none; }
        .scope-dance-classes .schedule-list ul li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 17px; color: var(--text-mid); display: flex; justify-content: space-between; }
        .scope-dance-classes .schedule-list ul li span { color: var(--gold); font-weight: 600; }
        .scope-dance-classes .trial-card { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); border-radius: 24px; padding: 36px; color: #fff; }
        .scope-dance-classes .trial-card h3 { font-family: 'Cinzel', serif; font-size: 24px; margin-bottom: 14px; }
        .scope-dance-classes .trial-card p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.6; }
        .scope-dance-classes .btn-outline-light { display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 12px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; transition: all 0.3s; }
        .scope-dance-classes .btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
        .scope-dance-classes .faq-section { padding: 80px 0; background: var(--off-white); }
        .scope-dance-classes .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-dance-classes .faq-list details { background: var(--white); padding: 18px 24px; border-radius: 20px; margin-bottom: 14px; border: 1px solid var(--border); }
        .scope-dance-classes .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; cursor: pointer; }
        .scope-dance-classes .faq-list details p { margin-top: 10px; color: var(--text-mid); line-height: 1.6; }

.scope-dance-classes .inline-36 { grid-column: span 1; }
.scope-dance-classes .inline-37 { display:flex;align-items:center;gap:14px; }
.scope-dance-classes .inline-38 { font-size: 12px;color:var(--blue-light); }
.scope-dance-classes .inline-39 { padding:8px 0 0 18px; }
.scope-dance-classes .inline-40 { color:var(--blue-bright);font-size: 14px; }
.scope-dance-classes .inline-41 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-dance-classes .inline-42 { margin-top:16px;color:var(--text-light); }
.scope-dance-classes .inline-43 { display:inline-block;margin-top:24px;background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright));color:#fff;padding:14px 32px;border-radius:40px;text-decoration:none;font-family:'Cinzel',serif;font-size: 14px;letter-spacing:1.5px; }


/* --- Styles for events.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-events .events-hero {
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 60px) 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .scope-events .events-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(96,165,250,0.2) 0%, transparent 70%);
            animation: floatGlow 14s infinite alternate;
        }
        @keyframes floatGlow { 0% { transform: translate(0,0); opacity: 0.5; } 100% { transform: translate(-40px, -30px); opacity: 1; } }
        .scope-events .events-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 74px); color: #fff; margin-bottom: 20px; }
        .scope-events .events-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto; }
        .scope-events .upcoming-badge { background: var(--gold); color: var(--blue-deep); padding: 6px 16px; border-radius: 40px; font-size: 13px; font-weight: 700; letter-spacing: 2px; display: inline-block; margin-bottom: 16px; }

        .scope-events .events-main { padding: 70px 0 100px; background: var(--off-white); }
        .scope-events .events-grid { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 40px; }
        .scope-events .event-card { background: var(--white); border-radius: 28px; overflow: hidden; display: flex; flex-wrap: wrap; transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); box-shadow: 0 12px 30px rgba(10,31,92,0.08); border: 1px solid var(--border); }
        .scope-events .event-card:hover { transform: translateY(-6px); box-shadow: 0 25px 45px rgba(10,31,92,0.15); border-color: rgba(201,148,58,0.3); }
        .scope-events .event-image { flex: 0 0 280px; overflow: hidden; }
        .scope-events .event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
        .scope-events .event-card:hover .event-image img { transform: scale(1.05); }
        .scope-events .event-details { flex: 1; padding: 32px 36px; position: relative; }
        .scope-events .event-category { display: inline-block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-bright); background: var(--blue-ultra); padding: 5px 14px; border-radius: 30px; margin-bottom: 14px; font-weight: 600; }
        .scope-events .event-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--blue-deep); margin-bottom: 12px; line-height: 1.3; }
        .scope-events .event-description { font-size: 17px; line-height: 1.75; color: var(--text-light); margin-bottom: 22px; }
        .scope-events .event-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 28px; border-top: 1px solid var(--border); padding-top: 22px; }
        .scope-events .meta-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--text-mid); }
        .scope-events .meta-item .icon { font-size: 20px; }
        .scope-events .event-btn { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: #fff; padding: 12px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(37,99,235,0.25); border: none; cursor: pointer; }
        .scope-events .event-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,99,235,0.35); gap: 12px; }
        .scope-events .past-event { opacity: 0.7; }
        .scope-events .past-badge { position: absolute; top: 20px; right: 30px; background: rgba(10,31,92,0.7); color: white; font-size: 12px; padding: 4px 12px; border-radius: 30px; letter-spacing: 1px; backdrop-filter: blur(4px); }
        .scope-events .no-events { text-align: center; padding: 70px; background: white; border-radius: 32px; font-size: 22px; color: var(--text-light); font-family: 'Playfair Display', serif; }

.scope-events .inline-44 { grid-column: span 1; }
.scope-events .inline-45 { transition-delay:0.1s; }


/* --- Styles for fitness-martial.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-fitness-martial .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #2d2a1e 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
        }
        .scope-fitness-martial .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-fitness-martial .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-fitness-martial .services-page-hero > .container > p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.6; margin: 0 auto; }

        .scope-fitness-martial .service-detail-band { padding: 100px 0; }
        .scope-fitness-martial .bg-light { background: var(--off-white); }
        .scope-fitness-martial .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-fitness-martial .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }

        .scope-fitness-martial .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
        .scope-fitness-martial .service-image-grid article { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-fitness-martial .service-image-grid article:hover { transform: translateY(-10px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); border-color: var(--blue-pale); }
        .scope-fitness-martial .service-image-grid article img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s ease; }
        .scope-fitness-martial .service-image-grid article:hover img { transform: scale(1.04); }
        .scope-fitness-martial .service-image-grid article div { padding: 32px; }
        .scope-fitness-martial .service-image-grid article strong { font-family: 'Cinzel', serif; font-size: 26px; display: block; margin-bottom: 14px; color: var(--blue-deep); letter-spacing: 0.5px; }
        .scope-fitness-martial .service-image-grid article p { font-size: 17px; line-height: 1.75; color: var(--text-light); margin-bottom: 24px; }
        .scope-fitness-martial .service-image-grid article a { font-size: 14px; font-weight: 700; color: var(--blue-bright); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; font-family: 'Cinzel', serif; border-bottom: 2px solid var(--gold-light); padding-bottom: 4px; transition: all 0.3s ease; display: inline-block; }
        .scope-fitness-martial .service-image-grid article a:hover { color: var(--gold); letter-spacing: 2.5px; border-bottom-color: var(--blue-bright); }

        .scope-fitness-martial .benefits-section { padding: 70px 0; background: var(--white); }
        .scope-fitness-martial .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .scope-fitness-martial .benefit-card { background: var(--off-white); border-radius: 24px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border); }
        .scope-fitness-martial .benefit-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 20px 35px rgba(37,99,235,0.08); }
        .scope-fitness-martial .benefit-card .icon { font-size: 50px; margin-bottom: 18px; display: inline-block; }
        .scope-fitness-martial .benefit-card h4 { font-family: 'Cinzel', serif; font-size: 22px; margin-bottom: 12px; color: var(--blue-deep); }
        .scope-fitness-martial .benefit-card p { font-size: 16px; color: var(--text-light); line-height: 1.6; }

        .scope-fitness-martial .skills-showcase { padding: 70px 0; background: var(--blue-ultra); }
        .scope-fitness-martial .skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
        .scope-fitness-martial .skill-item { padding: 28px 20px; background: #fff; border-radius: 20px; border: 1px solid var(--border); transition: all 0.3s; }
        .scope-fitness-martial .skill-item:hover { transform: scale(1.02); border-color: var(--gold-light); box-shadow: 0 12px 25px rgba(0,0,0,0.05); }
        .scope-fitness-martial .skill-item span { font-size: 50px; display: block; margin-bottom: 12px; }
        .scope-fitness-martial .skill-item h5 { font-family: 'Cinzel', serif; font-size: 20px; color: var(--blue-deep); margin-bottom: 8px; }
        .scope-fitness-martial .skill-item p { font-size: 15px; color: var(--text-mid); }

        .scope-fitness-martial .schedule-section { padding: 70px 0; background: var(--white); }
        .scope-fitness-martial .schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .scope-fitness-martial .trial-card { background: linear-gradient(145deg, var(--blue-deep), #2d2a1e); border-radius: 28px; padding: 40px; color: white; text-align: center; }
        .scope-fitness-martial .trial-card span { font-size: 54px; display: block; margin-bottom: 16px; }
        .scope-fitness-martial .trial-card h4 { font-family: 'Cinzel', serif; font-size: 28px; margin-bottom: 12px; }
        .scope-fitness-martial .trial-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
        .scope-fitness-martial .btn-outline-light { background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light); padding: 10px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; }
        .scope-fitness-martial .btn-outline-light:hover { background: var(--gold-light); color: var(--blue-deep); }

        .scope-fitness-martial .faq-section { padding: 80px 0; background: var(--off-white); }
        .scope-fitness-martial .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-fitness-martial .faq-list details { background: #fff; padding: 18px 24px; border-radius: 20px; margin-bottom: 16px; border: 1px solid var(--border); transition: all 0.2s; }
        .scope-fitness-martial .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; letter-spacing: 0.5px; cursor: pointer; }
        .scope-fitness-martial .faq-list details p { margin-top: 12px; color: var(--text-mid); line-height: 1.6; }

.scope-fitness-martial .inline-46 { grid-column: span 1; }
.scope-fitness-martial .inline-47 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep);margin-bottom:16px; }
.scope-fitness-martial .inline-48 { color:var(--text-light);line-height:1.7; }
.scope-fitness-martial .inline-49 { margin-top:24px;list-style:none; }
.scope-fitness-martial .inline-50 { margin-bottom:12px; }
.scope-fitness-martial .inline-51 { margin-bottom:12px; }
.scope-fitness-martial .inline-52 { margin-bottom:12px; }
.scope-fitness-martial .inline-53 { margin-top:28px; }
.scope-fitness-martial .inline-54 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-fitness-martial .inline-55 { margin-top:16px;color:var(--text-mid); }
.scope-fitness-martial .inline-56 { margin-top:32px; }
.scope-fitness-martial .inline-57 { color:rgba(255,255,255,0.45);font-size: 16px;line-height:1.7; }


/* --- Styles for gallery.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-gallery .gallery-hero {
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 80px) 0 90px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .scope-gallery .gallery-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, var(--white), transparent);
        }
        .scope-gallery .gallery-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(42px, 5vw, 66px); color: #fff; letter-spacing: -0.5px; position: relative; z-index: 2;}
        .scope-gallery .gallery-hero h1 em { color: var(--gold-light); font-style: italic; }
        .scope-gallery .gallery-hero p { font-size: 20px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 16px auto 0; position: relative; z-index: 2;}

        .scope-gallery .category-tabs {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: var(--nav-height);
            z-index: 99;
        }
        .scope-gallery .tabs-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 20px; max-width: 1380px; margin: 0 auto; }
        .scope-gallery .tab-btn { background: transparent; border: 2px solid var(--border); padding: 10px 28px; border-radius: 40px; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.3s ease; }
        .scope-gallery .tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--blue-deep); font-weight: 700; box-shadow: 0 8px 20px rgba(201,148,58,0.25); }
        .scope-gallery .tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--blue-deep); }

        .scope-gallery .gallery-main { padding: 60px 0 100px; background: var(--white); }
        .scope-gallery .gallery-grid {
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 20px;
            column-count: 3;
            column-gap: 26px;
        }
        .scope-gallery .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 12px 28px rgba(10,31,92,0.08);
            transition: all 0.4s;
            background: #fff;
            break-inside: avoid;
            margin-bottom: 26px;
        }
        .scope-gallery .gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,31,92,0.15); border: 1px solid var(--gold-light); }
        .scope-gallery .gallery-item img { width: 100%; height: auto; object-fit: cover; display: block; transition: transform 0.6s ease; }
        .scope-gallery .gallery-item:hover img { transform: scale(1.05); }
        .scope-gallery .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10,31,92,0.4);
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 24px;
        }
        .scope-gallery .gallery-item:hover .gallery-overlay { opacity: 1; }
        .scope-gallery .gallery-info { transform: translateY(20px); transition: transform 0.4s ease; }
        .scope-gallery .gallery-item:hover .gallery-info { transform: translateY(0); }
        .scope-gallery .gallery-info-icon { width: 40px; height: 40px; background: rgba(201,148,58,0.2); border: 1px solid var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold-light); font-size: 20px; }
        .scope-gallery .gallery-info h4 { font-family: 'Cinzel', serif; font-size: 22px; color: #fff; letter-spacing: 1px; margin-bottom: 6px;}
        .scope-gallery .gallery-info p { font-size: 16px; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }
        .scope-gallery .empty-state { text-align: center; column-span: all; padding: 70px; background: var(--off-white); border-radius: 32px; color: var(--text-light); font-family: 'Playfair Display', serif; font-size: 24px; }

        /* Lightbox */
        .scope-gallery .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s; flex-direction: column; }
        .scope-gallery .lightbox.active { opacity: 1; }
        .scope-gallery .lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s; }
        .scope-gallery .lightbox.active img { transform: scale(1); }
        .scope-gallery .lightbox .close-lightbox { position: absolute; top: 25px; right: 35px; color: var(--white); font-size: 46px; cursor: pointer; line-height: 1; transition: color 0.3s; }
        .scope-gallery .lightbox .close-lightbox:hover { color: var(--gold); }
        .scope-gallery .lightbox-caption { color: var(--white); font-family: 'Cinzel', serif; font-size: 22px; margin-top: 20px; letter-spacing: 1px; }

.scope-gallery .inline-58 { grid-column: span 1; }
.scope-gallery .inline-59 { transition-delay:0.1s; }


/* --- Styles for index.html --- */

        .scope-index {
            --blue-deep: #0a1f5c;
            --blue-mid: #1a3a8f;
            --blue-bright: #2563eb;
            --blue-light: #3b82f6;
            --blue-sky: #60a5fa;
            --blue-pale: #dbeafe;
            --blue-ultra: #eff6ff;
            --white: #ffffff;
            --off-white: #f8faff;
            --gold: #c9943a;
            --gold-light: #e8b84b;
            --text-dark: #0d1b3e;
            --text-mid: #2d4a7a;
            --text-light: #6b8fc4;
            --border: rgba(37, 99, 235, 0.15);
            --shadow-blue: rgba(37, 99, 235, 0.12);
            --nav-height: 76px;
        }

        .scope-index * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .scope-index {
            scroll-behavior: smooth;
        }

        .scope-index {
            background: var(--white);
            color: var(--text-dark);
            font-family: 'DM Sans', sans-serif;
            overflow-x: hidden;
        }

        /* ===== LOADER ===== */
        .scope-index #loader {
            position: fixed;
            inset: 0;
            background: var(--blue-deep);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .scope-index #loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .scope-index .loader-lotus {
            width: 70px;
            height: 70px;
            animation: loaderSpin 2s linear infinite;
        }

        @keyframes loaderSpin {
            0% {
                transform: rotate(0deg) scale(1);
                opacity: 0.7;
            }

            50% {
                transform: rotate(180deg) scale(1.2);
                opacity: 1;
            }

            100% {
                transform: rotate(360deg) scale(1);
                opacity: 0.7;
            }
        }

        .scope-index .loader-text {
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 6px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            animation: loaderPulse 1.5s ease infinite;
        }

        @keyframes loaderPulse {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        /* ===== CURSOR ===== */
        .scope-index .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--blue-bright);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
        }

        .scope-index .cursor-ring {
            position: fixed;
            width: 32px;
            height: 32px;
            border: 2px solid rgba(37, 99, 235, 0.5);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9997;
            transform: translate(-50%, -50%);
            transition: all 0.18s ease;
        }

        /* ===== NAVBAR ===== */
        .scope-index nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 30px var(--shadow-blue);
            transition: all 0.4s ease;
        }

        .scope-index nav.scrolled {
            background: rgba(255, 255, 255, 0.99);
            box-shadow: 0 4px 40px rgba(37, 99, 235, 0.15);
        }

        .scope-index .nav-inner {
            width: min(1380px, calc(100% - 60px));
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }

        .scope-index .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .scope-index .nav-logo-mark {
            width: 48px;
            height: 48px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .scope-index .nav-logo:hover .nav-logo-mark {
            transform: scale(1.05);
        }

        .scope-index .nav-logo-mark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .scope-index .nav-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .scope-index .nav-logo-text .brand {
            font-family: 'Cinzel', serif;
            font-size: 19px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--blue-deep);
        }

        .scope-index .nav-logo-text .tagline {
            font-size: 12px;
            letter-spacing: 3.5px;
            color: var(--blue-light);
            text-transform: uppercase;
            margin-top: 3px;
        }

        /* ===== DESKTOP NAV LINKS ===== */
        .scope-index .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex: 1;
            justify-content: center;
        }

        .scope-index .nav-links>li {
            position: relative;
        }

        .scope-index .nav-links>li>a {
            color: var(--text-mid);
            text-decoration: none;
            font-size: 14.5px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s, background 0.3s;
            white-space: nowrap;
        }

        .scope-index .nav-links>li>a:hover {
            color: var(--blue-bright);
            background: var(--blue-ultra);
        }

        .scope-index .nav-links>li>a .chevron {
            width: 14px;
            height: 14px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            display: inline-block;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .scope-index .nav-links>li.has-dropdown:hover>a .chevron {
            transform: rotate(225deg) translateY(0);
        }

        /* Invisible bridge to prevent hover loss between nav and dropdown */
        .scope-index .nav-links>li.has-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 30px;
            background: transparent;
            z-index: 10;
        }

        /* ===== MEGA DROPDOWN ===== */
        .scope-index .dropdown-mega {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            width: 680px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 30px 80px rgba(10, 31, 92, 0.18), 0 0 0 1px rgba(37, 99, 235, 0.1);
            padding: 28px 28px 22px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 200;
        }

        /* Removed caret arrow */

        .scope-index .nav-links>li.has-dropdown:hover .dropdown-mega {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .scope-index .dropdown-header {
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 16px;
        }

        .scope-index .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .scope-index .dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.22s ease;
            border: 1px solid transparent;
        }

        .scope-index .dropdown-item:hover {
            background: var(--blue-ultra);
            border-color: var(--border);
            transform: translateY(-2px);
        }

        .scope-index .dropdown-item-icon {
            font-size: 24px;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.22s ease;
            line-height: 1;
        }

        .scope-index .dropdown-item:hover .dropdown-item-icon {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
            transform: scale(1.08);
        }

        .scope-index .dropdown-item-text {
            min-width: 0;
        }

        .scope-index .dropdown-item-text strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: 0.3px;
            margin-bottom: 2px;
            font-family: 'Cinzel', serif;
        }

        .scope-index .dropdown-item-text span {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.45;
            display: block;
        }

        .scope-index .dropdown-item:hover .dropdown-item-text strong {
            color: var(--blue-deep);
        }

        .scope-index .dropdown-footer {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .scope-index .dropdown-footer-text {
            font-size: 14.5px;
            color: var(--text-light);
        }

        .scope-index .dropdown-footer-link {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 2px;
            color: var(--blue-bright);
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .scope-index .dropdown-footer-link:hover {
            gap: 10px;
        }

        /* ===== NAV CTA ===== */
        .scope-index .nav-cta-wrap {
            flex-shrink: 0;
        }

        .scope-index .nav-cta {
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 8px;
            letter-spacing: 1.5px;
            font-weight: 700;
            font-size: 13.5px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            display: inline-block;
            white-space: nowrap;
            font-family: 'Cinzel', serif;
        }

        .scope-index .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
        }

        /* ===== HAMBURGER BUTTON ===== */
        .scope-index .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            border: none;
            background: none;
            border-radius: 8px;
            transition: background 0.2s;
            z-index: 1100;
        }

        .scope-index .nav-hamburger:hover {
            background: var(--blue-ultra);
        }

        .scope-index .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--blue-deep);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

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

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

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

        /* ===== MOBILE MENU OVERLAY ===== */
        .scope-index .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 31, 92, 0.5);
            backdrop-filter: blur(4px);
            z-index: 900;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .scope-index .mobile-menu-overlay.open {
            opacity: 1;
        }

        /* ===== MOBILE MENU DRAWER ===== */
        .scope-index .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(380px, 92vw);
            height: 100dvh;
            background: #fff;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -20px 0 60px rgba(10, 31, 92, 0.2);
            overflow: hidden;
        }

        .scope-index .mobile-menu.open {
            right: 0;
        }

        .scope-index .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
        }

        .scope-index .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .scope-index .mobile-menu-logo img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .scope-index .mobile-menu-logo-text .brand {
            font-family: 'Cinzel', serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--blue-deep);
        }

        .scope-index .mobile-close-btn {
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            background: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-mid);
            transition: all 0.2s;
        }

        .scope-index .mobile-close-btn:hover {
            background: var(--blue-ultra);
            color: var(--blue-bright);
        }

        .scope-index .mobile-menu-body {
            flex: 1;
            overflow-y: auto;
            padding: 16px 0;
        }

        .scope-index .mobile-menu-body::-webkit-scrollbar {
            width: 3px;
        }

        .scope-index .mobile-menu-body::-webkit-scrollbar-thumb {
            background: var(--blue-pale);
            border-radius: 2px;
        }

        /* Mobile nav items */
        .scope-index .mob-nav-item {
            display: block;
            text-decoration: none;
        }

        .scope-index .mob-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 22px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .scope-index .mob-nav-link:hover {
            background: var(--blue-ultra);
            color: var(--blue-bright);
        }

        .scope-index .mob-nav-link .mob-chevron {
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .scope-index .mob-nav-link.open .mob-chevron {
            transform: rotate(225deg);
        }

        .scope-index .mob-nav-link-plain {
            display: block;
            padding: 14px 22px;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.2s;
        }

        .scope-index .mob-nav-link-plain:hover {
            background: var(--blue-ultra);
            color: var(--blue-bright);
        }

        /* Mobile accordion dropdown */
        .scope-index .mob-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--off-white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .scope-index .mob-dropdown.open {
            max-height: 800px;
        }

        .scope-index .mob-dropdown-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
            padding: 14px 22px 8px;
            font-weight: 600;
        }

        .scope-index .mob-dropdown-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 22px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .scope-index .mob-dropdown-item:hover {
            background: var(--blue-ultra);
        }

        .scope-index .mob-dropdown-item .mob-item-icon {
            width: 38px;
            height: 38px;
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.22s;
            color: var(--blue-mid);
            font-size: 16px;
            margin-top: 1px;
        }

        .scope-index .mob-dropdown-item:hover .mob-item-icon {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
            color: #fff;
        }

        .scope-index .mob-dropdown-item .mob-item-text {
            min-width: 0;
        }

        .scope-index .mob-dropdown-item .mob-item-text strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            font-family: 'Cinzel', serif;
            letter-spacing: 0.3px;
            margin-bottom: 2px;
        }

        .scope-index .mob-dropdown-item:hover .mob-item-text strong {
            color: var(--blue-deep);
        }

        .scope-index .mob-dropdown-item .mob-item-text span {
            font-size: 13.5px;
            color: var(--text-light);
            line-height: 1.4;
            display: block;
        }

        .scope-index .mob-dropdown-footer {
            padding: 12px 22px 14px;
            border-top: 1px solid var(--border);
            margin-top: 4px;
        }

        .scope-index .mob-dropdown-footer a {
            font-size: 14px;
            font-weight: 700;
            color: var(--blue-bright);
            text-decoration: none;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.5px;
            transition: color 0.2s;
        }

        .scope-index .mob-dropdown-footer a:hover {
            color: var(--gold);
        }

        .scope-index .mobile-menu-footer {
            padding: 18px 22px;
            border-top: 1px solid var(--border);
            flex-shrink: 0;
        }

        .scope-index .mobile-cta-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: #fff;
            text-align: center;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 2.5px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            transition: all 0.3s;
        }

        .scope-index .mobile-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
        }

        .scope-index .mobile-contact-row {
            display: flex;
            gap: 10px;
            margin-top: 12px;
        }

        .scope-index .mobile-contact-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            color: var(--text-mid);
            transition: all 0.2s;
            font-weight: 600;
        }

        .scope-index .mobile-contact-btn:hover {
            background: var(--blue-ultra);
            border-color: var(--blue-bright);
            color: var(--blue-bright);
        }

        /* ===== HERO ===== */
        .scope-index #home {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-mid) 45%, #1e4d9b 100%);
        }

        .scope-index .hero-geo {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .scope-index .hero-geo::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, transparent 70%);
            animation: geoFloat 8s ease-in-out infinite;
        }

        .scope-index .hero-geo::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
            animation: geoFloat 10s ease-in-out infinite reverse;
        }

        @keyframes geoFloat {

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

            50% {
                transform: translate(30px, -30px) scale(1.05);
            }
        }

        .scope-index .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .scope-index .hero-img-overlay {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50%;
            background: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1200&q=85') center/cover;
            opacity: 0.18;
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.9) 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.9) 100%);
        }

        /* Hero banner slider (crossfading image layers) */
        .scope-index .hero-slider { position: absolute; inset: 0; z-index: 0; }
        .scope-index .hero-img-overlay.hero-slide { background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
        .scope-index .hero-img-overlay.hero-slide.active { opacity: 0.18; }

        .scope-index .hero-dots { display: flex; gap: 10px; margin-top: 30px; }
        .scope-index .hero-dot { width: 36px; height: 5px; border-radius: 4px; border: none; padding: 0; cursor: pointer; background: rgba(255, 255, 255, 0.28); transition: background 0.3s, width 0.3s; }
        .scope-index .hero-dot:hover { background: rgba(255, 255, 255, 0.5); }
        .scope-index .hero-dot.active { background: var(--gold-light); width: 52px; }

        .scope-index .hero-content {
            position: relative;
            z-index: 2;
            max-width: min(1280px, calc(100% - 80px));
            margin: 0 auto;
            padding: 120px 0 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            width: 100%;
        }

        .scope-index .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            animation: heroFadeIn 0.8s ease both;
        }

        .scope-index .hero-badge span {
            width: 6px;
            height: 6px;
            background: #60a5fa;
            border-radius: 50%;
            animation: blinkDot 2s ease infinite;
        }

        @keyframes blinkDot {

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

            50% {
                opacity: 0.4;
                transform: scale(0.7);
            }
        }

        .scope-index .hero-badge p {
            font-size: 14.5px;
            letter-spacing: 2.5px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
        }

        .scope-index .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(50px, 6vw, 80px);
            font-weight: 700;
            line-height: 1.08;
            color: #fff;
            margin-bottom: 22px;
            animation: heroFadeIn 0.8s 0.15s ease both;
        }

        .scope-index .hero-title em {
            font-style: italic;
            color: var(--blue-sky);
        }

        .scope-index .hero-title .highlight {
            position: relative;
            display: inline-block;
        }

        .scope-index .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: underlineReveal 0.8s 1.2s ease forwards;
        }

        @keyframes underlineReveal {
            to {
                transform: scaleX(1);
            }
        }

        .scope-index .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 23px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 18px;
            animation: heroFadeIn 0.8s 0.3s ease both;
        }

        .scope-index .hero-desc {
            font-size: 19px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 500px;
            animation: heroFadeIn 0.8s 0.45s ease both;
        }

        .scope-index .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: heroFadeIn 0.8s 0.6s ease both;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        .scope-index .btn-primary {
            background: #fff;
            color: var(--blue-deep);
            padding: 15px 36px;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2.5px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .scope-index .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
            background: var(--blue-pale);
        }

        .scope-index .btn-secondary-light {
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            padding: 13px 34px;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2.5px;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
        }

        .scope-index .btn-secondary-light:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-3px);
        }

        .scope-index .hero-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
            animation: heroFadeIn 0.8s 0.75s ease both;
        }

        .scope-index .hero-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .scope-index .hero-stat {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            backdrop-filter: blur(12px);
            transition: all 0.3s ease;
        }

        .scope-index .hero-stat:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .scope-index .hero-stat .num {
            font-family: 'Cinzel', serif;
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            display: block;
            line-height: 1;
        }

        .scope-index .hero-stat .num span {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .scope-index .hero-stat .label {
            font-size: 14px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            margin-top: 6px;
            display: block;
        }

        .scope-index .hero-trust {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            backdrop-filter: blur(12px);
        }

        .scope-index .hero-trust-icon {
            font-size: 34px;
        }

        .scope-index .hero-trust-text strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 16.5px;
            color: #fff;
            letter-spacing: 1px;
        }

        .scope-index .hero-trust-text span {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 3px;
            display: block;
        }

        .scope-index .hero-scroll {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .scope-index .hero-scroll span {
            font-size: 13px;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
        }

        .scope-index .hero-scroll .arrow {
            width: 28px;
            height: 28px;
            border-right: 2px solid rgba(255, 255, 255, 0.35);
            border-bottom: 2px solid rgba(255, 255, 255, 0.35);
            transform: rotate(45deg);
            animation: scrollBounce 2s ease infinite;
        }

        @keyframes scrollBounce {

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

            50% {
                transform: rotate(45deg) translateY(6px);
                opacity: 0.9;
            }
        }

        /* ===== WAVE DIVIDER ===== */
        .scope-index .wave-divider {
            display: block;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            margin-top: -2px;
        }

        .scope-index .wave-divider svg {
            display: block;
            width: 100%;
        }

        /* ===== SECTIONS BASE ===== */
        .scope-index section {
            position: relative;
        }

        .scope-index .container {
            width: min(1280px, calc(100% - 80px));
            margin: 0 auto;
        }

        .scope-index .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .scope-index .section-eyebrow {
            font-size: 13.5px;
            letter-spacing: 5px;
            color: var(--blue-bright);
            text-transform: uppercase;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-weight: 600;
        }

        .scope-index .section-eyebrow::before,
        .scope-index .section-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--blue-bright);
            opacity: 0.4;
        }

        .scope-index .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 50px);
            font-weight: 700;
            color: var(--blue-deep);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .scope-index .section-divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-bright), var(--blue-sky));
            border-radius: 2px;
            margin: 0 auto 18px;
        }

        .scope-index .section-desc {
            font-size: 18px;
            color: var(--text-light);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.85;
        }

        /* ===== ABOUT ===== */
        .scope-index #about {
            padding: 60px 0;
            background: var(--white);
        }

        .scope-index .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .scope-index .about-img-wrap {
            position: relative;
        }

        .scope-index .about-img-main {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 20px;
            display: block;
            filter: saturate(0.9);
            box-shadow: 0 30px 80px rgba(37, 99, 235, 0.15);
        }

        .scope-index .about-img-wrap::before {
            content: '';
            position: absolute;
            top: -16px;
            left: -16px;
            right: 16px;
            bottom: 16px;
            border: 2px solid var(--blue-pale);
            border-radius: 22px;
            z-index: -1;
        }

        .scope-index .about-badge {
            position: absolute;
            bottom: 28px;
            right: -24px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            border-radius: 16px;
            padding: 22px 28px;
            text-align: center;
            box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
        }

        .scope-index .about-badge .num {
            font-family: 'Cinzel', serif;
            font-size: 44px;
            font-weight: 700;
            color: #fff;
            display: block;
            line-height: 1;
        }

        .scope-index .about-badge .label {
            font-size: 13px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            margin-top: 6px;
            display: block;
        }

        .scope-index .about-content .eyebrow {
            font-size: 13.5px;
            letter-spacing: 4px;
            color: var(--blue-bright);
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        .scope-index .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3vw, 44px);
            font-weight: 700;
            color: var(--blue-deep);
            line-height: 1.15;
            margin-bottom: 8px;
        }

        .scope-index .about-content .subtitle {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 23px;
            color: var(--blue-light);
            margin-bottom: 22px;
        }

        .scope-index .about-content p {
            font-size: 19px;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .scope-index .about-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 24px 0 30px;
        }

        .scope-index .about-pills span {
            font-size: 14.5px;
            letter-spacing: 1.5px;
            padding: 7px 16px;
            border: 1.5px solid var(--blue-pale);
            border-radius: 30px;
            color: var(--blue-mid);
            background: var(--blue-ultra);
            font-weight: 500;
            transition: all 0.3s;
        }

        .scope-index .about-pills span:hover {
            background: var(--blue-bright);
            color: #fff;
            border-color: var(--blue-bright);
        }

        .scope-index .btn-blue {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: #fff;
            padding: 14px 30px;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 2.5px;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        }

        .scope-index .btn-blue:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
        }

        /* ===== CLASSES ===== */
        .scope-index #classes {
            padding: 60px 0;
            background: var(--off-white);
        }

        .scope-index .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .scope-index .course-card {
            display: block;
            text-decoration: none;
            color: inherit;
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
            transition: all 0.4s ease;
        }

        .scope-index .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
        }

        .scope-index .course-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            filter: saturate(0.8) brightness(0.65);
        }

        .scope-index .course-card:hover img {
            transform: scale(1.08);
            filter: saturate(1) brightness(0.5);
        }

        .scope-index .course-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 20%, rgba(10, 31, 92, 0.92) 100%);
            transition: all 0.4s;
        }

        .scope-index .course-card:hover .course-overlay {
            background: linear-gradient(180deg, rgba(37, 99, 235, 0.2) 0%, rgba(10, 31, 92, 0.95) 100%);
        }

        .scope-index .course-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
        }

        .scope-index .course-discipline {
            display: inline-flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            color: var(--gold-light);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            backdrop-filter: blur(6px);
        }

        .scope-index .course-icon {
            display: block;
            width: 32px;
            height: 32px;
            margin-bottom: 12px;
            transform: translateY(8px);
            opacity: 0;
            transition: all 0.35s 0.05s ease;
        }

        .scope-index .course-card:hover .course-icon {
            opacity: 1;
            transform: translateY(0);
        }

        .scope-index .course-name {
            font-family: 'Cinzel', serif;
            font-size: 21px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: #fff;
            margin-bottom: 8px;
            display: block;
        }

        .scope-index .course-desc {
            font-size: 16.5px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .scope-index .course-card:hover .course-desc {
            max-height: 90px;
        }

        .scope-index .course-pill {
            display: inline-block;
            margin-top: 10px;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold-light);
            border-bottom: 1px solid var(--gold-light);
            padding-bottom: 1px;
            opacity: 0;
            transition: opacity 0.3s 0.15s ease;
        }

        .scope-index .course-card:hover .course-pill {
            opacity: 1;
        }

        .scope-index .course-card-empty {
            pointer-events: none;
            background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(10, 31, 92, 0.92));
        }

        /* ===== BENEFITS ===== */
        .scope-index #benefits {
            padding: 60px 0;
            background: var(--white);
        }

        .scope-index .section-pad {
            padding: 60px 0;
        }

        .scope-index .benefits-image-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .scope-index .benefit-tile {
            position: relative;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(10, 31, 92, 0.06);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scope-index .benefit-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65) saturate(0.85);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
        }

        .scope-index .benefit-tile>div {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 26px;
            background: linear-gradient(to top, rgba(10, 31, 92, 0.85) 0%, rgba(10, 31, 92, 0.2) 60%, transparent 100%);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .scope-index .benefit-tile span {
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2px;
            color: var(--gold-light);
            display: block;
            margin-bottom: 6px;
            font-weight: 700;
            opacity: 0.85;
            transition: transform 0.4s ease, color 0.4s;
        }

        .scope-index .benefit-tile h4 {
            font-family: 'Playfair Display', serif;
            font-size: 23px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            margin: 0;
            transition: transform 0.4s ease;
        }

        .scope-index .benefit-tile::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1.5px solid rgba(201, 148, 58, 0);
            border-radius: inherit;
            pointer-events: none;
            z-index: 3;
            transition: all 0.4s ease;
        }

        .scope-index .benefit-tile:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(10, 31, 92, 0.18);
        }

        .scope-index .benefit-tile:hover img {
            transform: scale(1.08);
            filter: brightness(0.45) saturate(1.05);
        }

        .scope-index .benefit-tile:hover::after {
            border-color: rgba(201, 148, 58, 0.6);
            box-shadow: inset 0 0 25px rgba(201, 148, 58, 0.15);
        }

        .scope-index .benefit-tile:hover span {
            color: #fff;
            transform: translateY(-2px);
        }

        .scope-index .benefit-tile:hover h4 {
            transform: translateY(-2px);
            text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
        }

        /* ===== GALLERY ===== */
        .scope-index #gallery {
            padding: 60px 0;
            background: var(--white);
        }

        .scope-index .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 12px;
        }

        .scope-index .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            cursor: pointer;
        }

        .scope-index .gallery-item:nth-child(1) {
            grid-row: span 2;
        }

        .scope-index .gallery-item:nth-child(4) {
            grid-row: span 2;
        }

        .scope-index .gallery-item:nth-child(7) {
            grid-column: span 2;
        }

        .scope-index .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: saturate(0.8) brightness(0.85);
        }

        .scope-index .gallery-item:hover img {
            transform: scale(1.06);
            filter: saturate(1) brightness(0.7);
        }

        .scope-index .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 31, 92, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: inherit;
            transition: background 0.4s;
        }

        .scope-index .gallery-overlay .zoom {
            color: #fff;
            font-size: 24px;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.3s;
        }

        .scope-index .gallery-item:hover .gallery-overlay {
            background: rgba(10, 31, 92, 0.3);
        }

        .scope-index .gallery-item:hover .gallery-overlay .zoom {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== TESTIMONIALS ===== */
        .scope-index #testimonials {
            padding: 60px 0;
            background: var(--off-white);
        }

        .scope-index .testimonials-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 8px;
        }

        .scope-index .testimonial-card {
            padding: 44px 38px;
            border: 1px solid rgba(201, 148, 58, 0.35);
            border-radius: 24px;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 25px 60px rgba(10, 31, 92, 0.1);
            position: relative;
            overflow: hidden;
            transform: translateY(-8px);
        }

        .scope-index .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--blue-sky));
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .scope-index .testimonial-quote {
            position: absolute;
            top: 24px;
            right: 28px;
            font-family: 'Playfair Display', serif;
            font-size: 102px;
            color: rgba(201, 148, 58, 0.1);
            line-height: 0.6;
            user-select: none;
            pointer-events: none;
        }

        .scope-index .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 18px;
        }

        .scope-index .stars span {
            color: var(--gold-light);
            font-size: 18px;
        }

        .scope-index .testimonial-text {
            font-family: 'Playfair Display', serif;
            font-size: 19.5px;
            font-style: italic;
            color: var(--text-mid);
            line-height: 1.9;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .scope-index .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .scope-index .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--gold-light);
            transition: all 0.3s ease;
            transform: scale(1.05);
        }

        .scope-index .author-info .name {
            font-family: 'Cinzel', serif;
            font-size: 15.5px;
            letter-spacing: 1px;
            color: var(--blue-deep);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .scope-index .verified-badge {
            font-size: 13px;
            color: #10b981;
        }

        .scope-index .author-info .role {
            font-size: 13px;
            color: var(--blue-light);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: 4px;
            display: block;
            font-weight: 500;
        }

        /* ===== CONTACT ===== */
        .scope-index #contact {
            padding: 60px 0;
            background: var(--white);
        }

        .scope-index .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            align-items: start;
        }

        .scope-index .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--blue-deep);
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .scope-index .contact-info>p {
            font-size: 19px;
            color: var(--text-light);
            line-height: 1.85;
            margin-bottom: 36px;
        }

        .scope-index .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .scope-index .contact-detail .icon-wrap {
            width: 42px;
            height: 42px;
            background: var(--blue-ultra);
            border: 1.5px solid var(--blue-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .scope-index .contact-detail:hover .icon-wrap {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
        }

        .scope-index .contact-detail .text strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--blue-mid);
            margin-bottom: 4px;
        }

        .scope-index .contact-detail .text span {
            font-size: 16.5px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .scope-index .social-links {
            display: flex;
            gap: 10px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .scope-index .social-links a {
            width: 42px;
            height: 42px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            background: var(--off-white);
        }

        .scope-index .social-links a svg {
            width: 17px;
            height: 17px;
            fill: var(--text-light);
            transition: fill 0.3s;
        }

        .scope-index .social-links a:hover {
            background: var(--blue-bright);
            border-color: var(--blue-bright);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
        }

        .scope-index .social-links a:hover svg {
            fill: #fff;
        }

        .scope-index .contact-form {
            background: var(--blue-ultra);
            border: 1.5px solid var(--border);
            border-radius: 20px;
            padding: 48px 44px;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.07);
        }

        .scope-index .contact-form h4 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--blue-deep);
            margin-bottom: 28px;
        }

        .scope-index .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .scope-index .form-group {
            margin-bottom: 20px;
        }

        .scope-index .form-group label {
            display: block;
            font-size: 13px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .scope-index .form-group input,
        .scope-index .form-group textarea,
        .scope-index .form-group select {
            width: 100%;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 12px 16px;
            color: var(--text-dark);
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .scope-index .form-group input:focus,
        .scope-index .form-group textarea:focus,
        .scope-index .form-group select:focus {
            border-color: var(--blue-bright);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .scope-index .form-group textarea {
            height: 110px;
            resize: none;
        }

        .scope-index .form-group select {
            appearance: none;
            cursor: pointer;
        }

        .scope-index .form-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2.5px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            margin-top: 4px;
        }

        .scope-index .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
        }

        /* ===== FOOTER ===== */
        .scope-index footer {
            background: var(--blue-deep);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 36px;
            position: relative;
            overflow: hidden;
        }

        .scope-index footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright), var(--blue-sky), var(--gold), var(--blue-sky), var(--blue-bright));
            background-size: 200% 100%;
            animation: shimmer 4s linear infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .scope-index .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 56px;
            margin-bottom: 52px;
        }

        .scope-index .footer-brand-mark {
            width: 100px;
            height: 100px;
            display: block;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            overflow: hidden;
            margin-bottom: 18px;
            transition: transform 0.3s;
        }

        .scope-index .footer-brand-mark:hover {
            transform: scale(1.04);
        }

        .scope-index .footer-brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        .scope-index .footer-brand p {
            font-size: 16.5px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.85;
            max-width: 270px;
            margin-bottom: 22px;
        }

        .scope-index .footer-socials {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 4px;
        }

        .scope-index .footer-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .scope-index .footer-social-icon:hover {
            border-color: var(--blue-sky);
            color: #fff;
            background: rgba(96, 165, 250, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(96, 165, 250, 0.2);
        }

        .scope-index .footer-col h5 {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 3px;
            color: var(--gold-light);
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .scope-index .footer-col ul {
            list-style: none;
        }

        .scope-index .footer-col ul li {
            margin-bottom: 12px;
        }

        .scope-index .footer-col ul li a {
            font-size: 16.5px;
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .scope-index .footer-col ul li a:hover {
            color: #fff;
        }

        .scope-index .footer-col ul li a svg {
            width: 13px;
            height: 13px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .scope-index .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 14.5px;
            letter-spacing: 0.5px;
        }

        /* ===== WHATSAPP ===== */
        .scope-index .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
            text-decoration: none;
            transition: all 0.3s;
            animation: waFloat 3s ease-in-out infinite;
        }

        @keyframes waFloat {

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

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

        .scope-index .whatsapp-float:hover {
            transform: scale(1.12) !important;
        }

        .scope-index .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        /* ===== REVEAL ANIMATIONS ===== */
        .scope-index .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .scope-index .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scope-index .reveal-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .scope-index .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scope-index .reveal-right {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .scope-index .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scope-index .stagger>* {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scope-index .stagger.visible>*:nth-child(1) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0s;
        }

        .scope-index .stagger.visible>*:nth-child(2) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        }

        .scope-index .stagger.visible>*:nth-child(3) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .scope-index .stagger.visible>*:nth-child(4) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .scope-index .stagger.visible>*:nth-child(5) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .scope-index .stagger.visible>*:nth-child(6) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .scope-index .stagger.visible>*:nth-child(7) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.6s;
        }

        .scope-index .stagger.visible>*:nth-child(8) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .scope-index .stagger.visible>*:nth-child(9) {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        /* Keep home sections readable even if reveal JS does not fire. */
        .scope-index .reveal,
        .scope-index .reveal-left,
        .scope-index .reveal-right,
        .scope-index .stagger > * {
            opacity: 1;
            transform: none;
        }

        /* ===== TEACHERS ===== */
        .scope-index .teachers-section {
            padding: 60px 0;
            background: var(--off-white);
        }

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

        .scope-index .teacher-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .scope-index .teacher-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px var(--shadow-blue);
        }

        .scope-index .teacher-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .scope-index .teacher-card>div {
            padding: 26px;
        }

        .scope-index .teacher-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 20px;
            color: var(--blue-deep);
            margin-bottom: 6px;
        }

        .scope-index .teacher-card .role {
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
        }

        .scope-index .teacher-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== SURYA NAMASKARA ===== */
        .scope-index #surya-namaskara {
            background: var(--off-white);
            padding: 0;
            font-family: 'DM Sans', sans-serif;
        }

        .scope-index .surya-header {
            background: linear-gradient(160deg, #0a1f5c 0%, #183e8c 60%, #1a4ab0 100%);
            padding: 80px 20px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .scope-index .surya-header::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            top: -250px;
            left: -200px;
            pointer-events: none;
        }

        .scope-index .surya-header::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -280px;
            right: -150px;
            pointer-events: none;
        }

        .scope-index .surya-eyebrow {
            font-size: 12.5px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
            font-family: 'Cinzel', serif;
        }

        .scope-index .surya-eyebrow::before,
        .scope-index .surya-eyebrow::after {
            content: '';
            height: 1px;
            width: 36px;
            background: rgba(255, 255, 255, 0.2);
        }

        .scope-index .surya-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .scope-index .surya-header p {
            font-size: 18.5px;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: rgba(255, 255, 255, 0.75);
            position: relative;
            display: inline-block;
            padding-bottom: 24px;
        }

        .scope-index .surya-header p::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 2px;
            background: var(--gold-light);
        }

        .scope-index .surya-body {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }

        .scope-index .surya-toggles {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 48px 0 36px;
            flex-wrap: wrap;
        }

        .scope-index .surya-toggle {
            padding: 13px 26px;
            border: 1.5px solid var(--border);
            background: #fff;
            border-radius: 30px;
            font-family: 'Cinzel', serif;
            font-size: 12.5px;
            letter-spacing: 1.5px;
            color: var(--text-mid);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-transform: uppercase;
        }

        .scope-index .surya-toggle.active {
            background: var(--blue-deep);
            color: #fff;
            border-color: var(--blue-deep);
            box-shadow: 0 8px 25px rgba(10, 31, 92, 0.25);
        }

        .scope-index .surya-toggle:hover:not(.active) {
            background: var(--blue-ultra);
            border-color: var(--blue-pale);
        }

        .scope-index .surya-timeline-wrapper {
            overflow-x: auto;
            padding: 10px 0 36px;
            scrollbar-width: thin;
            scrollbar-color: var(--blue-pale) transparent;
        }

        .scope-index .surya-timeline-wrapper::-webkit-scrollbar {
            height: 4px;
        }

        .scope-index .surya-timeline-wrapper::-webkit-scrollbar-thumb {
            background: var(--blue-pale);
            border-radius: 2px;
        }

        .scope-index .surya-timeline {
            display: flex;
            align-items: flex-start;
            min-width: max-content;
            padding: 10px 10px;
            position: relative;
        }

        .scope-index .surya-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 140px;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
            user-select: none;
        }

        .scope-index .surya-step:hover {
            transform: translateY(-6px);
        }

        .scope-index .surya-connector {
            position: absolute;
            top: 50px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--blue-pale);
            z-index: 0;
        }

        .scope-index .surya-step:last-child .surya-connector {
            display: none;
        }

        .scope-index .surya-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid rgba(148, 168, 220, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 18px rgba(10, 31, 92, 0.06);
        }

        .scope-index .surya-step.active .surya-circle {
            background: linear-gradient(145deg, #0a1f5c, #2563eb);
            border-color: #0a1f5c;
            transform: scale(1.18);
            box-shadow: 0 12px 35px rgba(10, 31, 92, 0.3);
        }

        .scope-index .surya-step.is-next .surya-circle {
            border-color: var(--blue-bright);
            border-width: 2.5px;
            transform: scale(1.06);
            box-shadow: 0 6px 22px rgba(37, 99, 235, 0.15);
        }

        .scope-index .surya-icon {
            width: 48px;
            height: 48px;
            fill: none;
            stroke: var(--blue-mid);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s;
        }

        .scope-index .surya-step.active .surya-icon {
            stroke: #fff;
        }

        .scope-index .surya-step.is-next .surya-icon {
            stroke: var(--blue-bright);
        }

        .scope-index .surya-step-num {
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 1.5px;
            color: var(--text-light);
            margin: 14px 0 5px;
            text-transform: uppercase;
        }

        .scope-index .surya-step.active .surya-step-num {
            color: var(--blue-deep);
            font-weight: 700;
        }

        .scope-index .surya-step-sanskrit {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--blue-deep);
            text-align: center;
            line-height: 1.35;
            margin-bottom: 3px;
        }

        .scope-index .surya-step-english {
            font-size: 11.5px;
            color: var(--text-light);
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .scope-index .surya-badge-repeat {
            font-size: 10.5px;
            background: #fff;
            border: 1px solid var(--gold-light);
            color: var(--gold);
            padding: 3px 9px;
            border-radius: 10px;
            margin-top: 7px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .scope-index .surya-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 0 36px;
            padding: 0 4px;
        }

        .scope-index .surya-nav-btn {
            background: #fff;
            border: 1.5px solid var(--border);
            padding: 11px 24px;
            border-radius: 24px;
            font-family: 'Cinzel', serif;
            font-size: 12.5px;
            letter-spacing: 1.5px;
            color: var(--text-mid);
            cursor: pointer;
            transition: all 0.25s;
            font-weight: 700;
        }

        .scope-index .surya-nav-btn:hover:not(:disabled) {
            background: var(--blue-deep);
            border-color: var(--blue-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10, 31, 92, 0.2);
        }

        .scope-index .surya-nav-btn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .scope-index #suryaCount {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 2px;
            color: var(--text-light);
            font-weight: 600;
        }

        .scope-index .surya-detail-card {
            background: #fff;
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: 0 15px 50px rgba(10, 31, 92, 0.07);
            display: flex;
            overflow: hidden;
            min-height: 260px;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .scope-index .surya-detail-card.fade-out {
            opacity: 0;
            transform: translateY(8px);
        }

        .scope-index .surya-detail-left {
            background: linear-gradient(150deg, #0a1f5c 0%, #1e40af 100%);
            width: 185px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 36px 20px;
            color: #fff;
            text-align: center;
        }

        .scope-index .surya-detail-num {
            font-family: 'Playfair Display', serif;
            font-size: 62px;
            color: rgba(255, 255, 255, 0.12);
            line-height: 1;
            margin-bottom: 10px;
        }

        .scope-index .surya-detail-icon {
            width: 58px;
            height: 58px;
            fill: none;
            stroke: rgba(255, 255, 255, 0.9);
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            margin-bottom: 18px;
        }

        .scope-index .surya-detail-sname {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            font-weight: 700;
            line-height: 1.5;
        }

        .scope-index .surya-breath-badge {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-size: 12px;
            letter-spacing: 2px;
            padding: 6px 14px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-weight: 700;
            font-family: 'Cinzel', serif;
        }

        .scope-index .surya-detail-right {
            padding: 42px 52px;
            flex: 1;
        }

        .scope-index .surya-detail-right h3 {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            color: var(--blue-deep);
            margin-bottom: 6px;
            font-weight: 700;
        }

        .scope-index .surya-detail-right .sub {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 19px;
            color: var(--text-light);
            font-weight: 400;
            margin-bottom: 22px;
        }

        .scope-index .surya-detail-right .desc {
            font-size: 17.5px;
            line-height: 1.9;
            color: var(--text-mid);
            margin-bottom: 28px;
            max-width: 820px;
        }

        .scope-index .surya-desc-highlight {
            color: var(--blue-bright);
            font-weight: 600;
        }

        .scope-index .surya-benefits-title {
            font-family: 'Cinzel', serif;
            font-size: 12.5px;
            letter-spacing: 2.5px;
            color: var(--blue-light);
            margin-bottom: 14px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .scope-index .surya-benefits-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 28px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .scope-index .surya-benefits-list li {
            font-size: 16px;
            color: var(--text-mid);
            position: relative;
            padding-left: 18px;
        }

        .scope-index .surya-benefits-list li::before {
            content: '•';
            color: var(--blue-bright);
            position: absolute;
            left: 0;
            top: -1px;
            font-size: 19px;
        }

        /* ===== RESPONSIVE ===== */


    .scope-index * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .scope-index {
      font-family: 'DM Sans', sans-serif;
      background: #fbfbfe;
      color: #0a1f5c;
      scroll-behavior: smooth;
    }

    /* reusable colors */
    .scope-index {
      --blue-deep: #0a1f5c;
      --blue-mid: #1a3a8f;
      --blue-bright: #2563eb;
      --blue-sky: #60a5fa;
      --gold: #c9943a;
      --gold-light: #e8b84b;
      --text-light: #6b8fc4;
      --border: rgba(37, 99, 235, 0.15);
    }

    .scope-index .surya-section {
      background: linear-gradient(145deg, #f9fafc 0%, #ffffff 100%);
      padding: 40px 0 80px;
      font-family: 'DM Sans', sans-serif;
    }

    .scope-index .container {
      width: min(1280px, calc(100% - 60px));
      margin: 0 auto;
    }

    /* header style */
    .scope-index .surya-header-custom {
      text-align: center;
      margin-bottom: 40px;
    }

    .scope-index .surya-eyebrow {
      font-size: 13.5px;
      letter-spacing: 6px;
      color: var(--blue-bright);
      text-transform: uppercase;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 12px;
    }

    .scope-index .surya-eyebrow::before,
    .scope-index .surya-eyebrow::after {
      content: '';
      width: 50px;
      height: 1.5px;
      background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
    }

    .scope-index .surya-header-custom h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(34px, 5vw, 54px);
      font-weight: 700;
      color: var(--blue-deep);
      letter-spacing: -0.02em;
    }

    .scope-index .surya-header-custom h2 span {
      color: var(--gold);
      font-style: italic;
    }

    .scope-index .surya-subhead {
      font-size: 19px;
      color: var(--text-light);
      margin-top: 12px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    /* toggle pills */
    .scope-index .pose-toggle-group {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin: 32px 0 28px;
      flex-wrap: wrap;
    }

    .scope-index .toggle-pill {
      background: white;
      border: 1.5px solid var(--border);
      padding: 10px 30px;
      border-radius: 40px;
      font-family: 'Cinzel', serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.2px;
      color: var(--blue-mid);
      cursor: pointer;
      transition: all 0.25s ease;
      backdrop-filter: blur(4px);
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    .scope-index .toggle-pill.active {
      background: linear-gradient(115deg, var(--blue-deep), var(--blue-bright));
      color: white;
      border-color: var(--blue-deep);
      box-shadow: 0 10px 20px -8px rgba(37,99,235,0.4);
    }

    .scope-index .toggle-pill:hover:not(.active) {
      background: var(--blue-ultra, #eff6ff);
      border-color: var(--blue-bright);
      transform: translateY(-2px);
    }

    /* timeline row (thumbnails) */
    .scope-index .timeline-wrapper {
      overflow-x: auto;
      padding: 10px 0 20px;
      scrollbar-width: thin;
      margin: 10px 0 20px;
    }

    .scope-index .timeline-steps {
      display: flex;
      gap: 18px;
      min-width: max-content;
      padding: 8px 12px;
    }

    .scope-index .step-thumb {
      background: white;
      border-radius: 48px;
      padding: 6px 8px 6px 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      border: 1px solid var(--border);
      transition: all 0.25s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      backdrop-filter: blur(2px);
    }

    .scope-index .step-thumb.active {
      background: linear-gradient(135deg, #0a1f5c, #1e3a8a);
      border-color: var(--gold-light);
      box-shadow: 0 12px 25px rgba(10,31,92,0.2);
    }

    .scope-index .step-thumb.active .step-thumb-label,
    .scope-index .step-thumb.active .step-thumb-name {
      color: white;
    }

    .scope-index .step-thumb-img {
      width: 48px;
      height: 48px;
      border-radius: 40px;
      object-fit: cover;
      background: #eef2ff;
      border: 1px solid rgba(255,215,120,0.5);
    }

    .scope-index .step-thumb-label {
      font-size: 14px;
      font-weight: 700;
      font-family: 'Cinzel', serif;
      color: var(--blue-mid);
    }

    .scope-index .step-thumb-name {
      font-size: 12px;
      font-weight: 500;
      color: var(--text-light);
      letter-spacing: 0.3px;
    }

    .scope-index .step-thumb.active .step-thumb-name {
      color: rgba(255,255,240,0.85);
    }

    /* main detail card (rich, realistic) */
    .scope-index .detail-card {
      background: white;
      border-radius: 36px;
      box-shadow: 0 30px 50px -20px rgba(10,31,92,0.18), 0 0 0 1px rgba(37,99,235,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      margin: 20px 0 30px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }

    .scope-index .detail-visual {
      flex: 1.2;
      min-width: 260px;
      min-height: 360px;
      overflow: hidden;
      background: linear-gradient(125deg, #0f2b5e, #1f4590);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 20px;
    }

    .scope-index .detail-visual img {
      width: 100%;
      height: 100%;
      max-width: none;
      border-radius: 28px;
      box-shadow: 0 20px 35px rgba(0,0,0,0.25);
      object-fit: cover;
      transition: transform 0.3s ease;
      border: 2px solid rgba(232,184,75,0.5);
    }

    .scope-index .detail-info {
      flex: 2;
      padding: 38px 36px;
    }

    .scope-index .detail-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(37,99,235,0.08);
      border-radius: 60px;
      padding: 5px 16px;
      margin-bottom: 18px;
    }

    .scope-index .detail-badge .breath-icon {
      font-weight: 700;
      font-size: 16px;
      background: var(--gold-light);
      color: #2c2c2c;
      padding: 2px 8px;
      border-radius: 30px;
    }

    .scope-index .detail-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 8px;
    }

    .scope-index .detail-info .sanskrit-sub {
      font-family: 'Cinzel', serif;
      font-size: 18px;
      letter-spacing: 1px;
      color: var(--gold);
      border-left: 3px solid var(--gold);
      padding-left: 14px;
      margin-bottom: 24px;
    }

    .scope-index .step-description {
      font-size: 18px;
      line-height: 1.65;
      color: #2c3e66;
      margin-bottom: 28px;
    }

    .scope-index .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 24px;
      background: #f8faff;
      border-radius: 24px;
      padding: 20px 24px;
      margin-top: 8px;
    }

    .scope-index .benefits-grid li {
      list-style: none;
      font-size: 16px;
      color: #1e2f50;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .scope-index .benefits-grid li::before {
      content: "✦";
      color: var(--gold);
      font-weight: bold;
    }

    /* navigation arrows */
    .scope-index .nav-arrows {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 10px 0 20px;
      gap: 15px;
    }

    .scope-index .nav-btn {
      background: white;
      border: 1.5px solid var(--border);
      padding: 10px 26px;
      border-radius: 40px;
      font-weight: 600;
      font-family: 'Cinzel', serif;
      font-size: 14px;
      letter-spacing: 1.5px;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--blue-mid);
    }

    .scope-index .nav-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .scope-index .nav-btn:hover:not(:disabled) {
      background: var(--blue-deep);
      color: white;
      border-color: var(--blue-deep);
      transform: translateY(-2px);
    }

    .scope-index .step-counter {
      font-family: 'Cinzel', serif;
      font-size: 16px;
      letter-spacing: 2px;
      background: #eef3ff;
      padding: 5px 18px;
      border-radius: 40px;
      color: var(--blue-deep);
      font-weight: 600;
    }

    /* unique poses row 8 cards */
    .scope-index .unique-poses {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px dashed rgba(37,99,235,0.2);
    }

    .scope-index .section-mini-title {
      text-align: center;
      font-family: 'Cinzel', serif;
      font-size: 24px;
      letter-spacing: 2px;
      color: var(--blue-deep);
      margin-bottom: 28px;
    }

    .scope-index .unique-grid {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 12px;
    }

    .scope-index .unique-card {
      background: white;
      border-radius: 16px;
      text-align: center;
      padding: 14px 6px;
      transition: all 0.25s ease;
      border: 1px solid rgba(37,99,235,0.1);
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .scope-index .unique-card.active-mini {
      background: linear-gradient(145deg, #ffffff, #f0f5ff);
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 12px 22px rgba(37,99,235,0.12);
    }

    .scope-index .unique-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 8px;
      border: 2px solid var(--blue-pale, #dbeafe);
      background: #f3f6fe;
    }

    .scope-index .unique-card strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: 12.5px;
      line-height: 1.25;
      color: var(--blue-deep);
      margin: 4px 0 2px;
    }

    .scope-index .unique-card span {
      font-size: 9.5px;
      letter-spacing: 0.5px;
      color: var(--text-light);
      text-transform: uppercase;
    }

    /* Surya 8-postures grid — keep all 8 in one row on desktop, wrap gracefully on smaller screens */
    @media (max-width: 1100px) {
      .scope-index .unique-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .scope-index .unique-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

.scope-index .inline-60 { grid-column: span 1; }
.scope-index .inline-61 { display:flex; align-items:center; gap:14px; }
.scope-index .inline-62 { font-size: 12px; letter-spacing:2.5px; color:var(--blue-light); }
.scope-index .inline-63 { padding: 12px 22px; }
.scope-index .inline-64 { display:flex;align-items:center;gap:8px;font-family:'Cinzel',serif;font-size: 13px;letter-spacing:2px;color:var(--blue-bright);text-decoration:none;font-weight:700; }
.scope-index .inline-65 { position:absolute;inset:0;width:100%;height:100%;opacity:0.06;pointer-events:none }
.scope-index .inline-66 { display: none; }
.scope-index .inline-67 { font-size: 14px; }
.scope-index .inline-68 { border-radius: 32px; }
.scope-index .inline-69 { font-size: 14px; }


/* --- Styles for meditation-healing.html --- */

        .scope-meditation-healing .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
            text-align: center;
        }
        .scope-meditation-healing .services-page-hero .container { width: 100%; }
        .scope-meditation-healing .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-meditation-healing .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-meditation-healing .services-page-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .scope-meditation-healing .service-detail-band { padding: 100px 0; }
        .scope-meditation-healing .bg-light { background: var(--off-white); }
        .scope-meditation-healing .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-meditation-healing .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }
        .scope-meditation-healing .section-eyebrow { font-size: 13.5px; letter-spacing: 5px; color: var(--blue-bright); text-transform: uppercase; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
        .scope-meditation-healing .section-eyebrow::before, .scope-meditation-healing .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--blue-bright); opacity: 0.4; }
        .scope-meditation-healing .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
        .scope-meditation-healing .service-detail-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s; box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-meditation-healing .service-detail-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); }
        .scope-meditation-healing .service-detail-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; display: block; }
        .scope-meditation-healing .service-detail-card:hover img { transform: scale(1.04); }
        .scope-meditation-healing .service-detail-card > div { padding: 24px 24px 28px; }
        .scope-meditation-healing .service-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: inline-block; background: var(--blue-ultra); padding: 4px 14px; border-radius: 30px; }
        .scope-meditation-healing .service-detail-card h3 { font-family: 'Cinzel', serif; font-size: 20px; margin: 10px 0 10px; color: var(--blue-deep); }
        .scope-meditation-healing .service-detail-card p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 12px; }
        .scope-meditation-healing .service-detail-card ul { margin-bottom: 14px; padding-left: 18px; }
        .scope-meditation-healing .service-detail-card ul li { font-size: 15px; color: var(--text-mid); margin-bottom: 5px; }
        .scope-meditation-healing .btn-primary.sm { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: #fff; padding: 10px 26px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; border: none; cursor: pointer; margin-top: 8px; }
        .scope-meditation-healing .btn-primary.sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
        .scope-meditation-healing .service-faq { padding: 80px 0; background: var(--white); }
        .scope-meditation-healing .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-meditation-healing .faq-list details { background: var(--off-white); padding: 18px 24px; border-radius: 20px; margin-bottom: 14px; border: 1px solid var(--border); }
        .scope-meditation-healing .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; cursor: pointer; }
        .scope-meditation-healing .faq-list details p { margin-top: 10px; color: var(--text-mid); line-height: 1.6; }

.scope-meditation-healing .inline-70 { grid-column: span 1; }
.scope-meditation-healing .inline-71 { display:flex;align-items:center;gap:14px; }
.scope-meditation-healing .inline-72 { font-size: 12px;color:var(--blue-light); }
.scope-meditation-healing .inline-73 { padding:8px 0 0 18px; }
.scope-meditation-healing .inline-74 { color:var(--blue-bright);font-size: 14px; }
.scope-meditation-healing .inline-75 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-meditation-healing .inline-76 { margin-top:16px;color:var(--text-light); }
.scope-meditation-healing .inline-77 { display:inline-block;margin-top:24px;background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright));color:#fff;padding:14px 32px;border-radius:40px;text-decoration:none;font-family:'Cinzel',serif;font-size: 14px;letter-spacing:1.5px; }


/* --- Styles for music-classes.html --- */

        .scope-music-classes .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1e3a3a 0%, #1a3a8f 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
            text-align: center;
        }
        .scope-music-classes .services-page-hero .container { width: 100%; }
        .scope-music-classes .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-music-classes .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-music-classes .services-page-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .scope-music-classes .section-eyebrow { font-size: 13.5px; letter-spacing: 5px; color: var(--blue-bright); text-transform: uppercase; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
        .scope-music-classes .section-eyebrow::before, .scope-music-classes .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--blue-bright); opacity: 0.4; }
        .scope-music-classes .service-detail-band { padding: 100px 0; }
        .scope-music-classes .bg-light { background: var(--off-white); }
        .scope-music-classes .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-music-classes .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }
        .scope-music-classes .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; }
        .scope-music-classes .service-detail-card { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s; box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-music-classes .service-detail-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); }
        .scope-music-classes .service-detail-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s; display: block; }
        .scope-music-classes .service-detail-card:hover img { transform: scale(1.04); }
        .scope-music-classes .service-detail-card > div { padding: 28px 28px 32px; }
        .scope-music-classes .service-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: inline-block; background: var(--blue-ultra); padding: 4px 14px; border-radius: 30px; }
        .scope-music-classes .service-detail-card h3 { font-family: 'Cinzel', serif; font-size: 22px; margin: 10px 0 12px; color: var(--blue-deep); }
        .scope-music-classes .service-detail-card p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 14px; }
        .scope-music-classes .service-detail-card ul { margin-bottom: 16px; padding-left: 18px; }
        .scope-music-classes .service-detail-card ul li { font-size: 15px; color: var(--text-mid); margin-bottom: 5px; }
        .scope-music-classes .btn-primary.sm { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: #fff; padding: 10px 26px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; border: none; cursor: pointer; margin-top: 8px; }
        .scope-music-classes .btn-primary.sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
        .scope-music-classes .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .scope-music-classes .benefit-card { background: var(--white); border-radius: 20px; padding: 32px 24px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
        .scope-music-classes .benefit-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px var(--shadow-blue); }
        .scope-music-classes .benefit-card .icon { font-size: 38px; margin-bottom: 16px; }
        .scope-music-classes .benefit-card h4 { font-family: 'Cinzel', serif; font-size: 18px; color: var(--blue-deep); margin-bottom: 10px; }
        .scope-music-classes .benefit-card p { font-size: 16px; color: var(--text-light); line-height: 1.65; }
        .scope-music-classes .instruments-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
        .scope-music-classes .instrument-item { background: var(--blue-ultra); border-radius: 16px; padding: 24px 20px; text-align: center; border: 1px solid var(--blue-pale); }
        .scope-music-classes .instrument-item .emoji { font-size: 42px; margin-bottom: 12px; }
        .scope-music-classes .instrument-item h4 { font-family: 'Cinzel', serif; font-size: 16px; color: var(--blue-deep); margin-bottom: 6px; }
        .scope-music-classes .instrument-item p { font-size: 14px; color: var(--text-light); }
        .scope-music-classes .schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
        .scope-music-classes .schedule-list h3 { font-family: 'Cinzel', serif; font-size: 24px; color: var(--blue-deep); margin-bottom: 22px; }
        .scope-music-classes .schedule-list ul { list-style: none; }
        .scope-music-classes .schedule-list ul li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 17px; color: var(--text-mid); display: flex; justify-content: space-between; }
        .scope-music-classes .schedule-list ul li span { color: var(--gold); font-weight: 600; }
        .scope-music-classes .trial-card { background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); border-radius: 24px; padding: 36px; color: #fff; }
        .scope-music-classes .trial-card h3 { font-family: 'Cinzel', serif; font-size: 24px; margin-bottom: 14px; }
        .scope-music-classes .trial-card p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.6; }
        .scope-music-classes .btn-outline-light { display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 12px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; transition: all 0.3s; }
        .scope-music-classes .btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
        .scope-music-classes .faq-section { padding: 80px 0; background: var(--off-white); }
        .scope-music-classes .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-music-classes .faq-list details { background: var(--white); padding: 18px 24px; border-radius: 20px; margin-bottom: 14px; border: 1px solid var(--border); }
        .scope-music-classes .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; cursor: pointer; }
        .scope-music-classes .faq-list details p { margin-top: 10px; color: var(--text-mid); line-height: 1.6; }

.scope-music-classes .inline-78 { grid-column: span 1; }
.scope-music-classes .inline-79 { display:flex;align-items:center;gap:14px; }
.scope-music-classes .inline-80 { font-size: 12px;color:var(--blue-light); }
.scope-music-classes .inline-81 { padding:8px 0 0 18px; }
.scope-music-classes .inline-82 { color:var(--blue-bright);font-size: 14px; }
.scope-music-classes .inline-83 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-music-classes .inline-84 { margin-top:16px;color:var(--text-light); }
.scope-music-classes .inline-85 { display:inline-block;margin-top:24px;background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright));color:#fff;padding:14px 32px;border-radius:40px;text-decoration:none;font-family:'Cinzel',serif;font-size: 14px;letter-spacing:1.5px; }


/* --- Styles for teacher-training.html --- */

        /* ── Teacher Training Page-Specific Styles ── */

        /* Hero */
        .scope-teacher-training .services-page-hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: calc(var(--nav-height) + 60px) 0 70px;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #5c2a2a 100%);
            min-height: 60vh;
        }

        .scope-teacher-training .services-page-hero .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            letter-spacing: 5px;
            color: var(--gold-light);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .scope-teacher-training .services-page-hero .section-eyebrow::before,
        .scope-teacher-training .services-page-hero .section-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold-light);
            opacity: 0.5;
        }

        .scope-teacher-training .services-page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(46px, 6vw, 72px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .scope-teacher-training .services-page-hero h1 em {
            font-style: italic;
            color: var(--gold-light);
        }

        .scope-teacher-training .services-page-hero > .container > p {
            font-size: 20px;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Feature card band */
        .scope-teacher-training .service-detail-band {
            padding: 90px 0;
        }

        .scope-teacher-training .bg-light {
            background: var(--off-white);
        }

        .scope-teacher-training .service-band-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .scope-teacher-training .service-band-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            letter-spacing: 5px;
            color: var(--blue-bright);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .scope-teacher-training .service-band-eyebrow::before,
        .scope-teacher-training .service-band-eyebrow::after {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--blue-bright);
            opacity: 0.4;
        }

        .scope-teacher-training .service-band-heading h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3vw, 44px);
            color: var(--blue-deep);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Teacher feature card */
        .scope-teacher-training .service-detail-grid {
            display: flex;
            justify-content: center;
        }

        .scope-teacher-training .teacher-feature-card {
            background: var(--white);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 12px 30px rgba(10,31,92,0.06);
            display: flex;
            flex-direction: column;
            max-width: 860px;
            width: 100%;
        }

        .scope-teacher-training .teacher-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 50px rgba(37,99,235,0.12);
            border-color: var(--blue-pale);
        }

        .scope-teacher-training .teacher-feature-card > img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .scope-teacher-training .teacher-feature-card:hover > img {
            transform: scale(1.02);
        }

        .scope-teacher-training .teacher-feature-card .card-body {
            padding: 40px;
        }

        .scope-teacher-training .service-label {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 8px;
            display: inline-block;
            background: var(--blue-ultra);
            padding: 4px 14px;
            border-radius: 30px;
        }

        .scope-teacher-training .teacher-feature-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 30px;
            margin: 16px 0;
            color: var(--blue-deep);
        }

        .scope-teacher-training .teacher-feature-card > .card-body > p {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .scope-teacher-training .teacher-feature-card ul {
            margin-bottom: 24px;
            padding-left: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .scope-teacher-training .teacher-feature-card ul li {
            font-size: 15.5px;
            color: var(--text-mid);
            margin-bottom: 6px;
        }

        .scope-teacher-training .card-details {
            margin: 12px 0 16px;
            cursor: pointer;
            font-size: 15px;
            color: var(--blue-mid);
        }

        .scope-teacher-training .card-details summary {
            font-weight: 700;
            margin-bottom: 6px;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.3px;
            list-style: none;
            cursor: pointer;
            color: var(--blue-deep);
        }

        .scope-teacher-training .card-details summary::-webkit-details-marker {
            display: none;
        }

        .scope-teacher-training .card-details[open] summary::before {
            content: '▾ ';
        }

        .scope-teacher-training .card-details summary::before {
            content: '▸ ';
        }

        .scope-teacher-training .card-details p {
            margin-top: 8px;
            font-size: 15px;
            background: var(--blue-ultra);
            padding: 10px 14px;
            border-radius: 14px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        .scope-teacher-training .btn-apply {
            display: inline-block;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: var(--white);
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            margin-top: 12px;
        }

        .scope-teacher-training .btn-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37,99,235,0.3);
        }

        /* Curriculum grid */
        .scope-teacher-training .trainer-method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .scope-teacher-training .trainer-method-grid article {
            background: var(--white);
            padding: 32px 28px;
            border-radius: 24px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .scope-teacher-training .trainer-method-grid article:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(37,99,235,0.08);
            border-color: var(--blue-pale);
        }

        .scope-teacher-training .trainer-method-grid article .num {
            font-family: 'Cinzel', serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--gold-light);
            display: block;
            margin-bottom: 16px;
        }

        .scope-teacher-training .trainer-method-grid article h3 {
            font-family: 'Cinzel', serif;
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--blue-deep);
        }

        .scope-teacher-training .trainer-method-grid article p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
        }

        /* Curriculum section */
        .scope-teacher-training .curriculum-section {
            padding: 90px 0;
        }

        .scope-teacher-training .curriculum-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .scope-teacher-training .curriculum-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3.5vw, 40px);
            color: var(--blue-deep);
            margin-bottom: 14px;
        }

        .scope-teacher-training .curriculum-header p {
            font-size: 19px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Proof grid / stats */
        .scope-teacher-training .proof-band {
            padding: 70px 0;
            background: var(--white);
        }

        .scope-teacher-training .proof-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
            border-radius: 28px;
            padding: 50px 40px;
        }

        .scope-teacher-training .proof-grid .stat strong {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 44px;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 8px;
        }

        .scope-teacher-training .proof-grid .stat span {
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            letter-spacing: 1px;
        }

        /* Testimonial */
        .scope-teacher-training .ttc-testimonials {
            padding: 80px 0;
        }

        .scope-teacher-training .testimonials-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .scope-teacher-training .testimonials-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            color: var(--blue-deep);
        }

        .scope-teacher-training .testimonials-center {
            display: grid;
            grid-template-columns: minmax(300px, 600px);
            justify-content: center;
        }

        .scope-teacher-training .testi-card {
            background: var(--white);
            border-radius: 28px;
            padding: 40px;
            position: relative;
            box-shadow: 0 12px 30px rgba(10,31,92,0.08);
            border: 1px solid var(--border);
        }

        .scope-teacher-training .testi-quote {
            font-family: 'Playfair Display', serif;
            font-size: 82px;
            color: rgba(201,148,58,0.15);
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 0.8;
            user-select: none;
        }

        .scope-teacher-training .testi-card > p {
            font-size: 19px;
            line-height: 1.8;
            color: var(--text-mid);
            font-style: italic;
            margin-bottom: 24px;
        }

        .scope-teacher-training .testi-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 16px;
        }

        .scope-teacher-training .testi-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-family: 'Cinzel', serif;
            flex-shrink: 0;
        }

        .scope-teacher-training .testi-author strong {
            display: block;
            font-family: 'Cinzel', serif;
            color: var(--blue-deep);
            font-size: 17px;
        }

        .scope-teacher-training .testi-author em {
            font-size: 14px;
            color: var(--text-light);
        }

        /* FAQ section */
        .scope-teacher-training .faq-section {
            padding: 80px 0 100px;
            background: var(--white);
        }

        .scope-teacher-training .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            align-items: start;
        }

        .scope-teacher-training .faq-left h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: var(--blue-deep);
            margin-bottom: 16px;
        }

        .scope-teacher-training .faq-left p {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .scope-teacher-training .btn-faq-apply {
            display: inline-block;
            background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
            color: var(--white);
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 15px;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .scope-teacher-training .btn-faq-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37,99,235,0.3);
        }

        .scope-teacher-training .faq-list details {
            background: var(--off-white);
            padding: 18px 24px;
            border-radius: 20px;
            margin-bottom: 16px;
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .scope-teacher-training .faq-list details[open] {
            border-color: var(--blue-pale);
            background: var(--blue-ultra);
        }

        .scope-teacher-training .faq-list details summary {
            font-weight: 700;
            color: var(--blue-deep);
            font-family: 'Cinzel', serif;
            letter-spacing: 0.5px;
            cursor: pointer;
            list-style: none;
        }

        .scope-teacher-training .faq-list details summary::-webkit-details-marker {
            display: none;
        }

        .scope-teacher-training .faq-list details p {
            margin-top: 12px;
            color: var(--text-mid);
            line-height: 1.6;
            font-size: 16.5px;
        }

.scope-teacher-training .inline-86 { grid-column: span 1; }
.scope-teacher-training .inline-87 { display:flex;align-items:center;gap:14px; }
.scope-teacher-training .inline-88 { font-size: 12px;color:var(--blue-light); }
.scope-teacher-training .inline-89 { justify-content:flex-start; }


/* --- Styles for testimonials.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-testimonials .testimonials-hero {
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 60px) 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .scope-testimonials .testimonials-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(96,165,250,0.2) 0%, transparent 70%);
            animation: floatGlow 14s infinite alternate;
        }
        @keyframes floatGlow { 0% { transform: translate(0,0); opacity: 0.5; } 100% { transform: translate(40px, -30px); opacity: 1; } }
        .scope-testimonials .testimonials-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 74px); color: #fff; margin-bottom: 20px; }
        .scope-testimonials .testimonials-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto; }

        .scope-testimonials .stats-banner { background: var(--white); border-bottom: 1px solid var(--border); padding: 40px 0; }
        .scope-testimonials .stats-grid { max-width: 1280px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; padding: 0 20px; }
        .scope-testimonials .stat-card { text-align: center; padding: 10px 28px; }
        .scope-testimonials .stat-number { font-family: 'Cinzel', serif; font-size: 44px; font-weight: 700; background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
        .scope-testimonials .stat-label { font-size: 15px; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; margin-top: 6px; }

        .scope-testimonials .testimonials-main { padding: 70px 0 100px; background: var(--off-white); }
        .scope-testimonials .testimonials-grid { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 32px; }
        .scope-testimonials .testimonial-card { background: var(--white); border-radius: 28px; padding: 36px 32px; transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); border: 1px solid var(--border); box-shadow: 0 8px 25px rgba(10,31,92,0.05); position: relative; overflow: hidden; }
        .scope-testimonials .testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px rgba(10,31,92,0.12); border-color: rgba(201,148,58,0.3); }
        .scope-testimonials .testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--blue-sky)); transform: scaleX(0); transition: transform 0.5s ease; transform-origin: left; }
        .scope-testimonials .testimonial-card:hover::before { transform: scaleX(1); }
        .scope-testimonials .quote-icon { font-family: 'Playfair Display', serif; font-size: 72px; color: rgba(201,148,58,0.15); position: absolute; top: 20px; right: 28px; line-height: 1; }
        .scope-testimonials .stars { display: flex; gap: 4px; margin-bottom: 20px; }
        .scope-testimonials .stars span { color: var(--gold-light); font-size: 18px; }
        .scope-testimonials .testimonial-text { font-family: 'Playfair Display', serif; font-size: 19px; line-height: 1.75; color: var(--text-mid); font-style: italic; margin-bottom: 28px; position: relative; z-index: 2; }
        .scope-testimonials .testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 22px; margin-top: 8px; }
        .scope-testimonials .author-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 0 0 2px var(--blue-pale), 0 0 0 4px rgba(201,148,58,0.2); transition: all 0.3s; }
        .scope-testimonials .testimonial-card:hover .author-avatar { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--gold-light); }
        .scope-testimonials .author-info .name { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--blue-deep); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .scope-testimonials .verified { background: #10b98120; color: #10b981; font-size: 12px; padding: 2px 8px; border-radius: 20px; letter-spacing: 0.5px; }
        .scope-testimonials .discipline-tag { display: inline-block; margin-top: 6px; font-size: 12px; letter-spacing: 1.5px; color: var(--blue-bright); background: var(--blue-ultra); padding: 4px 10px; border-radius: 20px; }

.scope-testimonials .inline-90 { grid-column: span 1; }
.scope-testimonials .inline-91 { transition-delay:0.1s; }
.scope-testimonials .inline-92 { opacity:0.3; }


/* --- Styles for wellness-programs.html --- */

        /* PAGE-SPECIFIC STYLES */
        .scope-wellness-programs .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--blue-deep) 0%, #2c4a3a 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
        }
        .scope-wellness-programs .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-wellness-programs .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-wellness-programs .services-page-hero > .container > p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.6; margin: 0 auto; }

        .scope-wellness-programs .service-detail-band { padding: 100px 0; }
        .scope-wellness-programs .bg-light { background: var(--off-white); }
        .scope-wellness-programs .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-wellness-programs .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }

        .scope-wellness-programs .service-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 40px; }
        .scope-wellness-programs .service-detail-card { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 12px 30px rgba(10,31,92,0.06); display: flex; flex-direction: column; }
        .scope-wellness-programs .service-detail-card:hover { transform: translateY(-10px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); border-color: var(--blue-pale); }
        .scope-wellness-programs .service-detail-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease; }
        .scope-wellness-programs .service-detail-card:hover img { transform: scale(1.03); }
        .scope-wellness-programs .service-detail-card > div { padding: 32px; flex: 1; display: flex; flex-direction: column; }
        .scope-wellness-programs .service-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: inline-block; background: var(--blue-ultra); padding: 4px 14px; border-radius: 30px; width: fit-content; }
        .scope-wellness-programs .service-detail-card h3 { font-family: 'Cinzel', serif; font-size: 24px; margin: 12px 0; color: var(--blue-deep); }
        .scope-wellness-programs .service-detail-card p { font-size: 16.5px; line-height: 1.7; color: var(--text-light); margin-bottom: 18px; }
        .scope-wellness-programs .service-detail-card ul { margin-bottom: 20px; padding-left: 20px; }
        .scope-wellness-programs .service-detail-card ul li { font-size: 15px; color: var(--text-mid); margin-bottom: 8px; }
        .scope-wellness-programs .card-details { margin: 12px 0 24px; cursor: pointer; font-size: 15px; color: var(--blue-mid); }
        .scope-wellness-programs .card-details summary { font-weight: 600; margin-bottom: 6px; font-family: 'Cinzel', serif; letter-spacing: 0.3px; }
        .scope-wellness-programs .card-details p { margin-top: 8px; font-size: 15px; background: var(--blue-ultra); padding: 10px 14px; border-radius: 14px; color: var(--text-mid); }

        .scope-wellness-programs .wellness-benefits { padding: 70px 0; background: var(--white); }
        .scope-wellness-programs .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
        .scope-wellness-programs .benefit-card { background: var(--off-white); border-radius: 24px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; border: 1px solid var(--border); }
        .scope-wellness-programs .benefit-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 20px 35px rgba(37,99,235,0.08); }
        .scope-wellness-programs .benefit-card .icon { font-size: 50px; margin-bottom: 18px; display: inline-block; }
        .scope-wellness-programs .benefit-card h4 { font-family: 'Cinzel', serif; font-size: 22px; margin-bottom: 12px; color: var(--blue-deep); }
        .scope-wellness-programs .benefit-card p { font-size: 16px; color: var(--text-light); line-height: 1.6; }

        .scope-wellness-programs .consult-section { padding: 70px 0; background: var(--blue-ultra); }
        .scope-wellness-programs .consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .scope-wellness-programs .consult-card { background: linear-gradient(145deg, var(--blue-deep), #2c4a3a); border-radius: 28px; padding: 40px; color: white; text-align: center; }
        .scope-wellness-programs .consult-card span { font-size: 54px; display: block; margin-bottom: 16px; }
        .scope-wellness-programs .consult-card h4 { font-family: 'Cinzel', serif; font-size: 28px; margin-bottom: 12px; }
        .scope-wellness-programs .consult-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
        .scope-wellness-programs .btn-outline-light { background: transparent; border: 2px solid var(--gold-light); color: var(--gold-light); padding: 10px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; }
        .scope-wellness-programs .btn-outline-light:hover { background: var(--gold-light); color: var(--blue-deep); }

        .scope-wellness-programs .faq-section { padding: 80px 0; background: var(--white); }
        .scope-wellness-programs .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-wellness-programs .faq-list details { background: var(--off-white); padding: 18px 24px; border-radius: 20px; margin-bottom: 16px; border: 1px solid var(--border); transition: all 0.2s; }
        .scope-wellness-programs .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; letter-spacing: 0.5px; cursor: pointer; }
        .scope-wellness-programs .faq-list details p { margin-top: 12px; color: var(--text-mid); line-height: 1.6; }

.scope-wellness-programs .inline-93 { grid-column: span 1; }
.scope-wellness-programs .inline-94 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep);margin-bottom:16px; }
.scope-wellness-programs .inline-95 { color:var(--text-light);line-height:1.7; }
.scope-wellness-programs .inline-96 { margin-top:24px;list-style:none; }
.scope-wellness-programs .inline-97 { margin-bottom:12px; }
.scope-wellness-programs .inline-98 { margin-bottom:12px; }
.scope-wellness-programs .inline-99 { margin-bottom:12px; }
.scope-wellness-programs .inline-100 { margin-top:28px; }
.scope-wellness-programs .inline-101 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-wellness-programs .inline-102 { margin-top:16px;color:var(--text-mid); }
.scope-wellness-programs .inline-103 { margin-top:32px; }
.scope-wellness-programs .inline-104 { color:rgba(255,255,255,0.45);font-size: 16px;line-height:1.7; }


/* --- Styles for yoga.html --- */

        .scope-yoga .services-page-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
            padding: calc(var(--nav-height) + 60px) 0 70px;
            text-align: center;
        }
        .scope-yoga .services-page-hero .container { width: 100%; }
        .scope-yoga .services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 72px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 20px; }
        .scope-yoga .services-page-hero h1 em { font-style: italic; color: var(--gold-light); }
        .scope-yoga .services-page-hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }
        .scope-yoga .service-detail-band { padding: 100px 0; }
        .scope-yoga .bg-light { background: var(--off-white); }
        .scope-yoga .service-band-heading { text-align: center; margin-bottom: 64px; }
        .scope-yoga .service-band-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 44px); color: var(--blue-deep); max-width: 700px; margin: 0 auto; }
        .scope-yoga .section-eyebrow { font-size: 13.5px; letter-spacing: 5px; color: var(--blue-bright); text-transform: uppercase; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 14px; font-weight: 600; }
        .scope-yoga .section-eyebrow::before, .scope-yoga .section-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--blue-bright); opacity: 0.4; }
        .scope-yoga .service-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
        .scope-yoga .service-detail-card { background: #fff; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); transition: all 0.4s; box-shadow: 0 12px 30px rgba(10,31,92,0.06); }
        .scope-yoga .service-detail-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px rgba(37,99,235,0.12); }
        .scope-yoga .service-detail-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; display: block; }
        .scope-yoga .service-detail-card:hover img { transform: scale(1.04); }
        .scope-yoga .service-detail-card > div { padding: 28px 28px 32px; }
        .scope-yoga .service-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: inline-block; background: var(--blue-ultra); padding: 4px 14px; border-radius: 30px; }
        .scope-yoga .service-detail-card h3 { font-family: 'Cinzel', serif; font-size: 22px; margin: 12px 0 12px; color: var(--blue-deep); }
        .scope-yoga .service-detail-card p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 14px; }
        .scope-yoga .service-detail-card ul { margin-bottom: 18px; padding-left: 18px; }
        .scope-yoga .service-detail-card ul li { font-size: 15px; color: var(--text-mid); margin-bottom: 5px; }
        .scope-yoga details { margin: 10px 0 14px; cursor: pointer; font-size: 15px; color: var(--blue-mid); }
        .scope-yoga details summary { font-weight: 600; margin-bottom: 4px; }
        .scope-yoga details p { margin-top: 6px; font-size: 15px; background: var(--blue-ultra); padding: 8px 12px; border-radius: 12px; color: var(--text-mid); }
        .scope-yoga .btn-primary.sm { background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright)); color: #fff; padding: 10px 28px; border-radius: 40px; text-decoration: none; font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px; display: inline-block; transition: all 0.3s; border: none; cursor: pointer; margin-top: 10px; }
        .scope-yoga .btn-primary.sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
        .scope-yoga .service-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
        .scope-yoga .service-faq { padding: 80px 0; background: var(--white); }
        .scope-yoga .faq-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
        .scope-yoga .faq-list details { background: var(--off-white); padding: 18px 24px; border-radius: 20px; margin-bottom: 14px; border: 1px solid var(--border); }
        .scope-yoga .faq-list details summary { font-weight: 700; color: var(--blue-deep); font-family: 'Cinzel', serif; cursor: pointer; }
        .scope-yoga .faq-list details p { margin-top: 10px; color: var(--text-mid); line-height: 1.6; background: none; padding: 0; }

.scope-yoga .inline-105 { grid-column: span 1; }
.scope-yoga .inline-106 { display:flex;align-items:center;gap:14px; }
.scope-yoga .inline-107 { font-size: 12px;color:var(--blue-light); }
.scope-yoga .inline-108 { padding:8px 0 0 18px; }
.scope-yoga .inline-109 { color:var(--blue-bright);font-size: 14px; }
.scope-yoga .inline-110 { font-family:'Playfair Display',serif;font-size: 36px;color:var(--blue-deep); }
.scope-yoga .inline-111 { margin-top:16px;color:var(--text-light); }
.scope-yoga .inline-112 { display:inline-block;margin-top:24px;background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright));color:#fff;padding:14px 32px;border-radius:40px;text-decoration:none;font-family:'Cinzel',serif;font-size: 14px;letter-spacing:1.5px; }


/* --- Styles for surynamasakara.html --- */
:root {
    --glow-gold: 0 0 20px rgba(201, 148, 58, 0.4);
    --glow-gold-strong: 0 0 35px rgba(201, 148, 58, 0.7);
    --inhale-color: #3b82f6;
    --exhale-color: #f97316;
    --hold-color: #a855f7;
}

.scope-surya .suryan-hero {
    background: radial-gradient(circle at 50% 120%, rgba(201, 148, 58, 0.15) 0%, rgba(10, 31, 92, 1) 100%), var(--blue-deep);
    color: var(--white);
    text-align: center;
    padding: calc(var(--nav-height) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
}

.scope-surya .suryan-hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.25) 0%, rgba(232, 184, 75, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    animation: sunPulse 6s ease-in-out infinite alternate;
}

@keyframes sunPulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.scope-surya .suryan-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 6vw, 66px);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--white);
}

.scope-surya .suryan-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 500;
}

.scope-surya .suryan-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===== INTERACTIVE WHEEL SECTION ===== */
.scope-surya .suryan-interactive {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.scope-surya .interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Wheel Column */
.scope-surya .wheel-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.scope-surya .suryan-wheel-container {
    width: min(100%, 480px);
    aspect-ratio: 1 / 1;
    position: relative;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(10, 31, 92, 0.08);
    border: 1px solid rgba(201, 148, 58, 0.15);
    padding: 20px;
}

/* Center Sun */
.scope-surya .wheel-center-sun {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, #ffeaa7 0%, var(--gold-light) 50%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--glow-gold);
    cursor: pointer;
    transition: all 0.5s ease;
}

.scope-surya .wheel-center-sun:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: var(--glow-gold-strong);
}

.scope-surya .wheel-center-sun svg {
    width: 44px;
    height: 44px;
    fill: var(--blue-deep);
    animation: rotateSun 24s linear infinite;
}

@keyframes rotateSun {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scope-surya .wheel-center-sun span {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-top: 4px;
}

/* SVG Orbit Path */
.scope-surya .wheel-orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Nodes Placement */
.scope-surya .wheel-node {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue-pale);
    color: var(--text-dark);
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(10, 31, 92, 0.05);
}

.scope-surya .wheel-node::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scope-surya .wheel-node:hover, .scope-surya .wheel-node.active {
    border-color: var(--gold);
    background: var(--blue-deep);
    color: var(--gold-light);
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: var(--glow-gold);
}

.scope-surya .wheel-node.active::after {
    border-color: var(--gold-light);
    transform: scale(1.1);
}

.scope-surya .wheel-node .node-label-small {
    position: absolute;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-light);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

/* Dynamic node labeling positioning based on location */
.scope-surya .wheel-node:hover .node-label-small,
.scope-surya .wheel-node.active .node-label-small {
    opacity: 1;
}

/* Detail Column */
.scope-surya .detail-column {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scope-surya .suryan-detail-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(10, 31, 92, 0.08);
    border-top: 5px solid var(--gold);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateY(20px);
}

.scope-surya .suryan-detail-card.active {
    opacity: 1;
    transform: translateY(0);
}

.scope-surya .card-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.scope-surya .step-badge {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.scope-surya .breath-badge {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.scope-surya .breath-badge.inhale { background-color: var(--inhale-color); }
.scope-surya .breath-badge.exhale { background-color: var(--exhale-color); }
.scope-surya .breath-badge.hold { background-color: var(--hold-color); }

.scope-surya .breath-indicator-dot {
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: breathPulse 2s infinite ease-in-out;
}

@keyframes breathPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.scope-surya .pose-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    color: var(--blue-deep);
    font-weight: 700;
    margin-bottom: 6px;
}

.scope-surya .pose-translation {
    font-size: 17px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.scope-surya .mantra-block {
    background: linear-gradient(135deg, rgba(10, 31, 92, 0.03) 0%, rgba(201, 148, 58, 0.05) 100%);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.scope-surya .mantra-sanskrit {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.scope-surya .mantra-english {
    font-size: 15px;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.scope-surya .mantra-meaning {
    font-size: 14.5px;
    color: var(--text-light);
    font-style: italic;
}

.scope-surya .pose-instructions h5,
.scope-surya .pose-benefits h5 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--blue-deep);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.scope-surya .pose-instructions p {
    font-size: 16.5px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.scope-surya .pose-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
}

.scope-surya .pose-benefits-list li {
    font-size: 15.5px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.scope-surya .pose-benefits-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 14px;
}

/* SVG Schematic Illustrations */
.scope-surya .pose-visual-container {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.scope-surya .pose-visual-container svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 8px rgba(232, 184, 75, 0.6));
}

.scope-surya .pose-visual-container .star-glow {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0.3;
}

/* ===== ALL 12 STEPS GRID SECTION ===== */
.scope-surya .suryan-grid-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.scope-surya .grid-header {
    text-align: center;
    margin-bottom: 70px;
}

.scope-surya .grid-header .section-eyebrow {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.scope-surya .grid-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 4vw, 44px);
    color: var(--blue-deep);
    font-weight: 700;
}

.scope-surya .grid-header h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
}

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

.scope-surya .pose-grid-card {
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.scope-surya .pose-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 31, 92, 0.08);
    border-color: rgba(201, 148, 58, 0.3);
}

.scope-surya .grid-card-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(201, 148, 58, 0.4);
}

.scope-surya .grid-card-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 4px;
    padding-right: 30px;
}

.scope-surya .grid-card-sub {
    font-size: 14.5px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.scope-surya .grid-card-breath {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--white);
    margin-bottom: 20px;
}

.scope-surya .grid-card-breath.inhale { background-color: var(--inhale-color); }
.scope-surya .grid-card-breath.exhale { background-color: var(--exhale-color); }
.scope-surya .grid-card-breath.hold { background-color: var(--hold-color); }

.scope-surya .grid-card-visual {
    height: 120px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scope-surya .grid-card-visual svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 5px rgba(232, 184, 75, 0.5));
}

.scope-surya .grid-card-mantra {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.scope-surya .grid-card-desc {
    font-size: 15.5px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ===== PHILOSOPHY & SCIENCE SECTION ===== */
.scope-surya .suryan-philosophy {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    color: var(--white);
    position: relative;
}

.scope-surya .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.scope-surya .phil-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scope-surya .phil-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 148, 58, 0.3);
    transform: translateY(-6px);
}

.scope-surya .phil-card-icon {
    font-size: 34px;
    margin-bottom: 24px;
    background: rgba(201, 148, 58, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    border: 1.5px solid rgba(201, 148, 58, 0.3);
}

.scope-surya .phil-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.scope-surya .phil-card p {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===== PRACTICE GUIDELINES SECTION ===== */
.scope-surya .suryan-guidelines {
    padding: 100px 0;
    background: var(--off-white);
}

.scope-surya .guidelines-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.scope-surya .guideline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.scope-surya .guideline-item:last-child {
    margin-bottom: 0;
}

.scope-surya .guideline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue-ultra);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--blue-bright);
}

.scope-surya .guideline-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 8px;
}

.scope-surya .guideline-content p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.6;
}

.scope-surya .guidelines-promo-card {
    background: linear-gradient(135deg, rgba(201, 148, 58, 0.1) 0%, rgba(10, 31, 92, 0.05) 100%), var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.scope-surya .guidelines-promo-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--blue-deep);
    margin-bottom: 16px;
}

.scope-surya .guidelines-promo-card p {
    font-size: 16.5px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.scope-surya .node-1 { left: 59.83%; top: 13.30%; }
.scope-surya .node-2 { left: 76.87%; top: 23.13%; }
.scope-surya .node-3 { left: 86.70%; top: 40.17%; }
.scope-surya .node-4 { left: 86.70%; top: 59.83%; }
.scope-surya .node-5 { left: 76.87%; top: 76.87%; }
.scope-surya .node-6 { left: 59.83%; top: 86.70%; }
.scope-surya .node-7 { left: 40.17%; top: 86.70%; }
.scope-surya .node-8 { left: 23.13%; top: 76.87%; }
.scope-surya .node-9 { left: 13.30%; top: 59.83%; }
.scope-surya .node-10 { left: 13.30%; top: 40.17%; }
.scope-surya .node-11 { left: 23.13%; top: 23.13%; }
.scope-surya .node-12 { left: 40.17%; top: 13.30%; }

.scope-surya .star-1 { top: 20%; left: 30%; }
.scope-surya .star-2 { top: 70%; left: 80%; }
.scope-surya .star-3 { top: 40%; left: 70%; }


/* ===== SURYA NAMASKARA RESPONSIVE ===== */
@media (max-width: 1024px) {
    .scope-surya .interactive-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .scope-surya .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .scope-surya .suryan-wheel-container {
        width: min(100%, 400px);
    }

    .scope-surya .wheel-node {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .scope-surya .wheel-center-sun {
        width: 90px;
        height: 90px;
    }

    .scope-surya .wheel-center-sun svg {
        width: 32px;
        height: 32px;
    }

    .scope-surya .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .scope-surya .suryan-grid {
        grid-template-columns: 1fr;
    }

    .scope-surya .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .scope-surya .suryan-wheel-container {
        width: min(100%, 320px);
        padding: 10px;
    }

    .scope-surya .wheel-node {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .scope-surya .wheel-center-sun {
        width: 76px;
        height: 76px;
    }

    .scope-surya .suryan-detail-card {
        padding: 24px;
    }

    .scope-surya .card-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .scope-surya .pose-benefits-list {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   Unified course-card design for Art & Creativity, Fitness &
   Martial Arts, and Wellness Programs (match the polished
   discipline pages + proper "View Details" pill button).
   ============================================================ */
.scope-arts-creativity .service-detail-card,
.scope-fitness-martial .service-detail-card { background:#fff; border-radius:24px; overflow:hidden; border:1px solid var(--border); transition:all .4s; box-shadow:0 12px 30px rgba(10,31,92,.06); }
.scope-arts-creativity .service-detail-card:hover,
.scope-fitness-martial .service-detail-card:hover { transform:translateY(-8px); box-shadow:0 30px 50px rgba(37,99,235,.12); }
.scope-arts-creativity .service-detail-card img,
.scope-fitness-martial .service-detail-card img { width:100%; height:240px; object-fit:cover; transition:transform .5s; display:block; }
.scope-arts-creativity .service-detail-card:hover img,
.scope-fitness-martial .service-detail-card:hover img { transform:scale(1.04); }
.scope-arts-creativity .service-detail-card > div,
.scope-fitness-martial .service-detail-card > div { padding:28px 28px 32px; }
.scope-arts-creativity .service-label,
.scope-fitness-martial .service-label { font-size: 12px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:8px; display:inline-block; background:var(--blue-ultra); padding:4px 14px; border-radius:30px; }
.scope-arts-creativity .service-detail-card h3,
.scope-fitness-martial .service-detail-card h3 { font-family:'Cinzel',serif; font-size: 22px; margin:10px 0 12px; color:var(--blue-deep); }
.scope-arts-creativity .service-detail-card p,
.scope-fitness-martial .service-detail-card p { font-size: 16px; line-height:1.7; color:var(--text-light); margin-bottom:14px; }
.scope-arts-creativity .service-detail-card a.btn-primary.sm,
.scope-fitness-martial .service-detail-card a.btn-primary.sm { background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright)); color:#fff; padding:10px 26px; border-radius:40px; text-decoration:none; font-family:'Cinzel',serif; font-size: 13px; letter-spacing:1.5px; display:inline-block; transition:all .3s; border:none; border-bottom:none; cursor:pointer; margin-top:8px; }
.scope-arts-creativity .service-detail-card a.btn-primary.sm:hover,
.scope-fitness-martial .service-detail-card a.btn-primary.sm:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(37,99,235,.3); color:#fff; letter-spacing:1.5px; border-bottom:none; }
/* Wellness Programs: its card CSS uses the old grid class — give the new markup its grid. */
.scope-wellness-programs .service-image-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)); gap:40px; }
/* Wellness Programs: style the "View Details" pill button (was unstyled). */
.scope-wellness-programs .service-detail-card a.btn-primary.sm { background:linear-gradient(135deg,var(--blue-deep),var(--blue-bright)); color:#fff; padding:10px 26px; border-radius:40px; text-decoration:none; font-family:'Cinzel',serif; font-size: 13px; letter-spacing:1.5px; display:inline-block; transition:all .3s; border:none; cursor:pointer; margin-top:auto; align-self:flex-start; }
.scope-wellness-programs .service-detail-card a.btn-primary.sm:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(37,99,235,.3); color:#fff; }
