:root {
    --bg: #fff8ee;
    --bg-soft: #fff0da;
    --panel: rgba(255, 251, 245, 0.84);
    --panel-strong: rgba(255, 247, 236, 0.94);
    --text: #1d4f57;
    --muted: #5f6a78;
    --line: rgba(118, 42, 168, 0.16);
    --gold: #f0c53f;
    --aqua: #2e6f76;
    --lavender: #9918ff;
    --shadow: 0 24px 70px rgba(118, 42, 168, 0.14);
    --radius: 28px;
    --container: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

main,
.footer,
.topbar,
.navbar {
    position: relative;
    z-index: 1;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.ambient {
    display: none;
}

.ambient-one {
    top: -10rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(46, 111, 118, 0.22), transparent 70%);
}

.ambient-two {
    right: -12rem;
    top: 20rem;
    background: radial-gradient(circle, rgba(153, 24, 255, 0.2), transparent 72%);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #ffffff;
    backdrop-filter: blur(18px);
}

.topbar-inner,
.nav-inner,
.footer-bottom,
.meta-row,
.hero-actions,
.tab-buttons,
.offer-card,
.section-heading,
.topbar-links {
    display: flex;
    align-items: center;
}

.topbar-inner,
.nav-inner {
    justify-content: space-between;
}

.topbar-inner {
    gap: 1rem;
    padding: 0.85rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.topbar-links {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar-links a,
.footer-contact-grid a,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(118, 42, 168, 0.12);
}

.nav-inner {
    padding: 1rem 0;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand strong,
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
}

.brand small {
    display: block;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.67rem;
}

.brand-logo {
    width: 3.3rem;
    height: 3.3rem;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu a {
    color: var(--muted);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    color: var(--aqua);
    transform: translateY(-2px);
    position: relative;
}

.nav-menu a.is-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    /* Responsive underline width: grows with viewport but never exceeds link width */
    width: clamp(3rem, 12vw, 100%);
    height: 3px;
    background: linear-gradient(120deg, #d019ff, #7c13ff);
    border-radius: 50%;
    transition: width 0.25s ease, transform 0.25s ease;
}

.nav-item-with-submenu {
    position: relative;
}

.nav-item-with-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    display: none;
    flex-direction: column;
    padding: 0.6rem 0;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(118, 42, 168, 0.12);
    box-shadow: 0 24px 70px rgba(118, 42, 168, 0.12);
    z-index: 20;
}

.nav-submenu a {
    padding: 0.75rem 1rem;
    color: var(--text);
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.nav-submenu a:hover {
    background: rgba(46, 111, 118, 0.08);
}

.nav-item-with-submenu:hover .nav-submenu,
.nav-item-with-submenu:focus-within .nav-submenu {
    display: flex;
}

.nav-menu.is-open .nav-submenu {
    position: static;
    display: flex;
    padding-left: 1rem;
    padding-right: 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-menu.is-open .nav-submenu a {
    padding: 0.75rem 0;
}



.menu-toggle {
    display: none;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.75rem 1rem;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(120deg, #d019ff, #7c13ff);
    color: #fffdf7;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(124, 19, 255, 0.24);
    cursor: pointer;
}

.button-small {
    padding: 0.8rem 1.1rem;
    color: #ffffff !important;
}

.button-secondary {
    background: transparent;
    color: var(--aqua);
    border: 1px solid rgba(46, 111, 118, 0.18);
    box-shadow: none;
}

.hero,
.page-hero {
    padding: 5.5rem 0 2rem;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.service-layout,
.service-card,
.footer-grid,
.offer-card {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.page-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 0.92;
    margin: 0.65rem 0 1rem;
}

.hero-copy h1 span,
.page-hero h1 span,
.section-heading h2 span {
    color: var(--gold);
}

.hero-copy p,
.page-hero p,
.section-heading p,
.glass p,
.testimonial p,
label,
input,
textarea,
select {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.eyebrow,
.chip {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: var(--lavender);
    background: rgba(153, 24, 255, 0.08);
}

.hero-actions {
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.glass {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 233, 0.92));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.45), transparent 42%);
    pointer-events: none;
}

.hero-slider {
    padding-bottom: 4rem;
}

.slide {
    /* Avoid hiding all product carousel slides; FlexSlider controls visibility */
    display: block;
}


.slide.is-visible {
    display: block;
}

.slide h2 {
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.slide-dots {
    position: absolute;
    left: 1.5rem;
    bottom: 1.25rem;
    display: flex;
    gap: 0.65rem;
}

.slide-dots button {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.slide-dots button.is-active {
    background: var(--gold);
}

.hero-floating-note span {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--aqua);
    font-size: 0.7rem;
}

.hero-floating-note strong,
.stat-card strong {
    font-size: 1.5rem;
}

.stat-card strong:not([data-target]) {
    font-size: 1.85rem;
    line-height: 1;
}

.hero-photo-stack {
    position: relative;
    min-height: 35rem;
    display: grid;
    grid-template-columns: 1fr 0.68fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.hero-main-photo,
.hero-side-photo,
.hero-floating-note {
    overflow: hidden;
    border-radius: 28px;
}

.hero-main-photo {
    grid-row: 1 / span 2;
}

.hero-main-photo img,
.hero-side-photo img,
.offer-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-panel-media img {
    display: block;
    width: 100%;
    height: 435px;
    object-fit: cover;
}

.hero-side-photo img {
    min-height: 100%;
}

.hero-floating-note {
    position: absolute;
    left: 0rem;
    bottom: 1.5rem;
    max-width: 100%;
    padding: 1rem 1.15rem;
}

.section {
    padding: 2rem 0 4rem;
}

.section-dark {
    background: linear-gradient(180deg, rgba(255, 239, 221, 0.66), rgba(249, 233, 255, 0.72));
}

.section-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

/* Ensure the Courses page heading stays centered on one line when needed */
.section-heading.courses-path {
    align-items: center;
    text-align: center;
}

.section-heading.courses-path h2 {
    white-space: nowrap;
}


.section-heading h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.95;
    margin: 0.75rem 0;
    max-width: 100%;
}

.section-split-heading {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-split-heading .section-heading {
    margin-bottom: 0;
}

.heading-visual-cluster {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, 9.5rem);
    gap: 1rem;
}

.cluster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(118, 42, 168, 0.12);
    box-shadow: 0 18px 36px rgba(31, 51, 66, 0.08);
    background: #ffffff;
}

.cluster-tall {
    grid-row: 1 / span 2;
}

.pillar-grid,
.stats-grid,
.journey-grid,
.card-grid {
    display: grid;
    gap: 1.25rem;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* Interactive course category cards (Classic/Exclusive) */
.catalog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(153, 24, 255, 0.28), transparent 52%),
        radial-gradient(circle at 85% 35%, rgba(240, 197, 63, 0.22), transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(46, 111, 118, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    border-radius: inherit;
    transform: translateZ(-1px) scale(0.98);
}

.catalog-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(208, 25, 255, 0.35), rgba(124, 19, 255, 0.18), rgba(46, 111, 118, 0.18));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.catalog-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 1;
}

.catalog-card .catalog-image-wrap {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.catalog-card .text-link,
.catalog-card .chip {
    transition: transform 0.35s ease, color 0.35s ease, background-color 0.35s ease;
    transform: translate(0, 50%);
}

.catalog-card:hover {
    transform: translateY(-10px) rotateX(4deg) translateZ(0);
    box-shadow: 0 42px 120px rgba(118, 42, 168, 0.22);
    border-color: rgba(153, 24, 255, 0.38);
}

.catalog-card:hover::after {
    opacity: 1;
    transform: translateZ(-1px) scale(1);
}

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

.catalog-card:hover .catalog-image-wrap {
    /* Zoom/scale disabled to keep images stable on hover */
    transform: none;
    filter: none;
}


.catalog-card:hover .chip {
    /*transform: translateY(-2px);*/
    background: rgba(153, 24, 255, 0.14);
    color: var(--lavender);
}

.catalog-card:hover .text-link {
    transform: translateY(-2px);
    color: var(--gold);
}

.catalog-card:focus-within {
    outline: none;
    box-shadow: 0 42px 120px rgba(118, 42, 168, 0.22);
}

@media (prefers-reduced-motion: reduce) {
    .catalog-card,
    .catalog-card::after,
    .catalog-card::before,
    .catalog-card .catalog-image-wrap {
        transition: none !important;
        animation: none !important;
    }
}



.catalog-card h2 {
    margin: 1rem 0 0.75rem;
}

.catalog-image-wrap {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(118, 42, 168, 0.1);
}

.catalog-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}




.service-category-grid .catalog-card {
    padding: 0;
}

.service-category-grid .service-category-link {
    display: block;
    color: inherit;
}

.service-category-grid .service-category-link h2 {
    margin: 1rem 1.25rem 0.5rem;
}

.service-category-grid .category-image-wrap {
    height: 260px;
}

.service-category-grid .catalog-card p {
    margin: 0 1.25rem 1.5rem;
    color: var(--muted);
}

.detail-page-image {
    display: block;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.blog-post-body {
    padding: 1.75rem 2rem 2rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.pillar-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.service-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}

.tab-buttons {
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab-buttons button {
    background: rgba(255, 255, 255, 0.48);
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.85rem 1rem;
    cursor: pointer;
}

.tab-buttons button.is-active {
    color: var(--text);
    border-color: rgba(153, 24, 255, 0.35);
    background: rgba(153, 24, 255, 0.12);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.tab-panel-layout {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 1.25rem;
    align-items: start;
}

.tab-panel-media {
    overflow: hidden;
    min-height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(118, 42, 168, 0.1);
    background: #ffffff;
}

.feature-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(94, 119, 83, 0.08);
}

.offer-card {
    grid-template-columns: 1fr 18rem auto;
    align-items: center;
}

.offer-visual {
    overflow: hidden;
    height: 11.5rem;
    border-radius: 22px;
    border: 1px solid rgba(118, 42, 168, 0.1);
    background: #ffffff;
}

/* Modern Orbital Testimonials - Spiritual Theme, Autoscroll, No Avatars, Flexible Media */
.modern-testimonials {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 248, 238, 0.8), rgba(255, 248, 238, 0.4));
}

.modern-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(153, 24, 255, 0.12), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(240, 197, 63, 0.1), transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(46, 111, 118, 0.08), transparent 50%);
    animation: energyFlow 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes energyFlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.orbit-container {
    position: relative;
    height: 70vh;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
    z-index: 1;
}

/* Prevent orbit cards overlapping the featured card visually */
.orbit-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: none;
}


.featured-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 50vw);
    max-width: 90vw;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(118, 42, 168, 0.2);
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(118, 42, 168, 0.18);
    text-align: center;
    animation: gentleFloat 6s ease-in-out infinite;
    transition: box-shadow 0.4s ease;
}

.featured-card:hover {
    box-shadow: 0 40px 100px rgba(118, 42, 168, 0.25);
}

@keyframes gentleFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) rotateX(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-12px) rotateX(3deg); }
}

.testimonial-quote {
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    line-height: 1.5;
    margin: 0 0 1.5rem;
    color: var(--text);
    position: relative;
}

.quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--lavender);
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aqua);
    margin: 0;
}

.orbit-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: rotateOrbit 30s linear infinite;
}

.orbit-card {
    position: absolute;
    width: 160px;
    height: 200px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(118, 42, 168, 0.15);
    border-radius: 24px;
    padding: 1.2rem 1rem;
    box-shadow: 0 16px 40px rgba(118, 42, 168, 0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatOrbit 4s ease-in-out infinite alternate;
    overflow: hidden;
    top: calc(50% - 100px);
    left: calc(50% - 80px);
}

.orbit-card:nth-child(1) { --orbit-pos: 0deg; }
.orbit-card:nth-child(2) { --orbit-pos: 90deg; }
.orbit-card:nth-child(3) { --orbit-pos: 180deg; }
.orbit-card:nth-child(4) { --orbit-pos: 270deg; }

.orbit-card {
    transform: translate(-50%, -50%) rotate(var(--orbit-pos)) translateX(320px) rotate(calc(-1 * var(--orbit-pos)));
}

.orbit-card:hover {
    transform: translate(-50%, -50%) rotate(var(--orbit-pos)) translateX(320px) rotate(calc(-1 * var(--orbit-pos))) scale(1.15) translateZ(20px);
    box-shadow: 0 24px 60px rgba(118, 42, 168, 0.22);
    z-index: 5;
}

@keyframes floatOrbit {
    0% { transform: translateY(0) rotateZ(0deg); }
    100% { transform: translateY(-6px) rotateZ(2deg); }
}

.orbit-quote {
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0 0 0.8rem;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.orbit-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aqua);
    margin: 0;
}

/* Media support for img/video */
.testimonial-media {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 0.8rem;
    display: block;
}

.orbit-dots {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 2;
}

.orbit-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orbit-dot.active {
    background: var(--lavender);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(153, 24, 255, 0.25);
}

.orbit-prev, .orbit-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(118, 42, 168, 0.2);
    color: var(--lavender);
    font-size: 1rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-prev { left: -3rem; }
.orbit-next { right: -3rem; }

.orbit-prev:hover, .orbit-next:hover {
    background: white;
    box-shadow: 0 12px 30px rgba(118, 42, 168, 0.2);
    transform: translateY(-3px);
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 980px) {
    .orbit-container { height: 65vh; }
    .orbit-card { transform: translate(-50%, -50%) rotate(var(--orbit-pos)) translateX(280px) rotate(calc(-1 * var(--orbit-pos))); }
    .orbit-prev { left: 0; }
    .orbit-next { right: 0; }
}

@media (max-width: 720px) {
    .modern-testimonials { padding: 4rem 0; }
    .orbit-container { height: 70vh; flex-direction: column; }
    .orbit-track { animation-duration: 40s; }
    .orbit-card { 
        position: static;
        width: 280px;
        height: auto;
        margin: 1rem auto;
        transform: none !important;
        animation: none;
    }
    .featured-card { 
        width: 90vw; 
        position: static; 
        transform: none;
        margin: 0 auto 2rem;
        animation: none;
    }
    .orbit-dots { bottom: -2rem; }
    .orbit-prev, .orbit-next { display: none; }
}

/* Hide old styles */
.testimonials-section:not(.modern-testimonials) { display: none; }

/* Old styles removed as replaced by Galaxy */

    

.testimonials-intro h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.95;
    margin: 0.8rem 0 1rem;
}

.testimonials-slider {
    position: relative;
}

.testimonials-stage {
    position: relative;
    min-height: 23rem;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
    padding: 1.6rem;
    border: 1px solid rgba(118, 42, 168, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fff8ef);
    box-shadow: 0 18px 40px rgba(31, 51, 66, 0.08);
}

.testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-card.is-featured {
    background: linear-gradient(180deg, rgba(255, 247, 214, 0.95), rgba(255, 238, 249, 0.92));
    border-color: rgba(240, 197, 63, 0.38);
}

.testimonial-mark {
    display: inline-flex;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--lavender);
    margin-bottom: 0.2rem;
}

.testimonial-card p {
    margin: 0;
    color: var(--text);
}

.testimonial-meta {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(118, 42, 168, 0.1);
}

.testimonial-meta strong {
    display: block;
    font-size: 1.05rem;
}

.testimonial-meta span {
    color: var(--muted);
    font-size: 0.92rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.1rem;
}

.testimonial-arrow {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(118, 42, 168, 0.14);
    border-radius: 50%;
    background: #ffffff;
    color: var(--lavender);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex: 1;
}

.testimonial-dots button {
    width: 0.8rem;
    height: 0.8rem;
    border: none;
    border-radius: 50%;
    background: rgba(118, 42, 168, 0.2);
    cursor: pointer;
}

.testimonial-dots button.is-active {
    background: var(--lavender);
}

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

.journey-grid {
    grid-template-columns: repeat(4, 1fr);
}

.journey-grid article strong {
    color: var(--gold);
    font-size: 2rem;
}

.story-card,
.booking-card,
.contact-points {
    height: fit-content;
}

.service-stack {
    display: grid;
    gap: 1.25rem;
}

.service-card {
    grid-template-columns: 1.2fr 0.8fr;
}

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

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 2rem 1.75rem;
}

.products-reference-section {
    padding: 2.5rem 0 4rem;
}

.products-reference-grid {
    align-items: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* ensure all cards in the grid are identical height and align */
    height: 100%;
    /*text-align: center;*/
    transform-style: preserve-3d;
    align-items: center;
    gap: 1rem;
}



.product-card h2 {
    flex-grow: 0;
    display: block;
    margin: 0.6rem 0 0;
    min-height: 0;
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    line-height: 2.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.product-image-wrap {
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(118, 42, 168, 0.08);
}

.product-image {
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* Product square image box
   Resize to fit the product image without cropping (prevents "cutting"). */
.product-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(118, 42, 168, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
}


.product-square--thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(118, 42, 168, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    flex-shrink: 0;
}

/* Increase padding around each product card so the boxes have more breathing room */
.product-card {
    padding: 0.4rem 0.4rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(118, 42, 168, 0.12);
}

.product-square img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.product-caption {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

/* Allow the square to grow a bit so the product is displayed with more breathing room */
.product-card .product-square {
    border-radius: 14px;
    background: #ffffff;
}




/* Ensure old carousel image rules don't fight the new square styling */
.product-image .fslider,
.product-image .flexslider {
    width: 100%;
}




.product-media-carousel{
    width: 100%;
    max-width: 320px;
    margin: 0 auto 0.8rem;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(118, 42, 168, 0.10);
}

.product-media-carousel [data-carousel-track]{
    display: flex;
    width: 100%;
    transition: transform .45s ease;
}

.product-media-slide{
    width: 100%;
    flex: 0 0 100%;
    display: none;
}

/* If JS/markup doesn\'t use a track wrapper, still show one at a time */
.product-media-carousel img{
    display: none;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Product-card FlexSlider: keep every image inside a clean square product frame */
.product-fslider,
.product-flexslider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
}

.product-flexslider{
    margin: 0 auto 0.5rem;
    border: none;
    aspect-ratio: 1 / 1;
}

.product-image .flexslider{
    width: 100%;
}

.product-flexslider .flex-viewport,
.product-flexslider .slides,
.product-flexslider .slides > li{
    height: 100%;
}

.product-flexslider .slides,
.product-flexslider .slides > li{
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-flexslider .slides{
    overflow: hidden;
}

.product-flexslider .slides > li{
    position: relative;
    display: block;
    background: #ffffff;
}

.product-flexslider .slides > li img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    padding: 0.55rem;
}




/* Main products slider squares */
.products-main-slider-wrap .product-square,
.products-main-slider .product-square {
    border-radius: 14px;
}

.products-main-slider .slides li img{
    object-fit: cover;
}


.product-flexslider .slides li.flex-active-slide,
.product-flexslider .slides li.is-active{
    display: block !important;
}

.product-media-carousel img.is-active{

    display: block;
}

.product-actions {
    margin-top: 0.9rem;
}


.product-whatsapp {
    padding: 0.8rem 1.05rem;
    font-size: 0.84rem;
    font-weight: 700;
    width: 100%;
}

.centered-copy {
    text-align: center;
}




.centered-copy .eyebrow {
    margin-inline: auto;
}

.text-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--gold);
}

.contact-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

#booking {
    margin-top: -335px;
}

.booking-form {
    display: grid;
    gap: 1rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(94, 119, 83, 0.12);
    color: var(--text);
}

.form-status {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(107, 143, 122, 0.12);
    border: 1px solid rgba(107, 143, 122, 0.18);
}

.footer {
    padding: 2.5rem 0 0;
    border-top: none;
    background: #363d45;
    color: #f7f7f7;
}

.footer p,
.footer a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.84);
}

.footer h3 {
    display: inline-block;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.84);
    padding-bottom: 0.15rem;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.5fr) minmax(0, 0.5fr);
    align-items: center;
    column-gap: 3.25rem;
    row-gap: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-company {
    position: relative;
}

.footer-quick-links,
.footer-posts {
    align-self: center;
}

.footer-logo {
    width: 8rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.footer-company > p {
    max-width: 38rem;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 1.5rem;
    max-width: 42rem;
    background-image: url("../images/world-map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 48%;
}

.footer-contact-grid p {
    margin: 0 0 0.35rem;
}

.footer-contact-grid h3 + p {
    margin-bottom: 0.15rem;
}

.footer-contact-grid h3,
.footer-quick-links h3,
.footer-posts h3 {
    margin: 0 0 0.5rem;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-self: center;
    margin-top: 3rem;
}

.footer-posts {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.6rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
}

.social-icon i,
.testimonial-arrow i {
    line-height: 1;
}

.social-facebook {
    background: #3b5998;
}

.social-google {
    background: #4285f4;
}

.social-instagram {
    background: #a53ed5;
}

.social-whatsapp {
    background: #25d366;
}

.footer-post-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.footer-post-list article p {
    margin: 0.2rem 0 0;
}

.footer-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border: 1px solid #3d73d8;
    border-radius: 6px;
    color: #dce7ff !important;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0;
    text-align: center;

    margin-top: 2.25rem;
    padding: 1.15rem 0 0.5rem 0;
    border-top: none;
    background: #2e343b;
    color: rgba(255, 255, 255, 0.72);
}



.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.25s ease;
}

@keyframes spin {
    from {
        transform: rotateX(70deg) rotateZ(0deg);
    }
    to {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .page-hero-grid,
    .service-layout,
    .split-grid,
    .section-split-heading,
    .service-card,
    .testimonials-shell,
    .footer-grid,
    .offer-card {
        grid-template-columns: 1fr;
    }

    .hero-photo-stack,
    .tab-panel-layout {
        grid-template-columns: 1fr;
    }

    .hero-main-photo {
        grid-row: auto;
    }

    .pillar-grid,
    .stats-grid,
    .journey-grid,
    .three-up,
    .two-up,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .products-reference-section,
    .products-reference-grid,
    .product-card,
    .product-square {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .heading-visual-cluster {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 8rem);
    }

    .cluster-tall {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: #ffffff;
        border: 1px solid var(--line);
    }

    .nav-menu.is-open,
    .menu-toggle {
        display: flex;
    }

    /* Make links shrink-wrap their content and align left so the underline
       follows the link width rather than centering under the menu */
    .nav-menu {
        align-items: flex-start;
    }

    .nav-menu a {
        display: inline-block;
    }

    .nav-menu a.is-active::after {
        left: 0;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .topbar-inner,
    .topbar-links,
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .pillar-grid,
    .stats-grid,
    .journey-grid,
    .three-up,
    .two-up,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .heading-visual-cluster {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .cluster-tall,
    .cluster-image {
        grid-column: auto;
        grid-row: auto;
        height: 12rem;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        background-size: 65%;
    }

    .testimonials-intro {
        position: static;
    }

    .hero-photo-stack {
        min-height: auto;
    }

    .hero-main-photo img,
    .hero-side-photo img {
        height: 16rem;
    }

    .hero-floating-note {
        position: static;
        max-width: none;
    }

    .footer-logo {
        width: 6.5rem;
    }

    /* Tighter product card spacing and larger touch targets on small screens */
    .product-grid {
        gap: 1rem;
    }

    .product-card {
        padding: 0.6rem;
        align-items: stretch;
    }

    .product-card h2 {
        font-size: 1.1rem;
        min-height: 0;
        margin: 0.5rem 0 0;
        padding: 0 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-square {
        padding: 0.6rem;
    }

    .product-whatsapp {
        padding: 1rem 0.9rem;
        font-size: 1rem;
    }

    .product-flexslider .slides > li img{
        padding: 0.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   COURSE PAGE STYLES - CLASSIC vs EXCLUSIVE
   ======================================== */

/* Shared course page styles */
.classic-course-page,
.exclusive-course-page {
    /* Base styling for both course types */
}

/* CLASSIC COURSE PAGE STYLES */
.classic-course-page .page-hero {
    background: linear-gradient(180deg, rgba(255, 248, 238, 0.5), rgba(255, 245, 233, 0.3));
}

.classic-course-page .page-hero h1 {
    color: var(--text);
    font-weight: 700;
}

.classic-course-page .glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 233, 0.92));
    border: 1px solid rgba(118, 42, 168, 0.12);
}

.classic-course-page .section {
    background: transparent;
}

.classic-course-page .hero-actions {
    justify-content: flex-start;
}

.classic-course-page .centered {
    text-align: center;
}

.classic-course-page .metadata-item {
    margin-bottom: 1.5rem;
}

.classic-course-page .metadata-item strong {
    display: block;
    color: var(--aqua);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.classic-course-page .feature-list li {
    background: rgba(46, 111, 118, 0.08);
    border: 1px solid rgba(46, 111, 118, 0.12);
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.classic-course-page .feature-list li:hover {
    background: rgba(46, 111, 118, 0.12);
    transform: translateX(4px);
}

/* EXCLUSIVE COURSE PAGE STYLES - PREMIUM & MODERN */
.exclusive-course-page .page-hero {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.08), rgba(240, 197, 63, 0.06), rgba(46, 111, 118, 0.05));
    position: relative;
    overflow: hidden;
}

.exclusive-course-page .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(153, 24, 255, 0.1), transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(240, 197, 63, 0.08), transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(46, 111, 118, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.exclusive-course-page .page-hero > * {
    position: relative;
    z-index: 1;
}

.exclusive-course-page .page-hero h1 {
    background: linear-gradient(135deg, var(--lavender), var(--aqua));
    -webkit-background-clip: text;
}

/* ============================================================================
   SERVICE PAGE STYLING
   ============================================================================ */

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

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(118, 42, 168, 0.12);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(118, 42, 168, 0.18);
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.04), rgba(240, 197, 63, 0.03));
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavender), var(--aqua));
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
}

/* Service card link styling */
.service-card-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-link:hover h2 {
    color: var(--lavender);
}

.catalog-card:hover .catalog-image {
    transform: scale(1.08);
}

/* ============================================================================
   LOAD MORE BUTTON STYLING
   ============================================================================ */

.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(118, 42, 168, 0.12);
}

#loadMoreBtn {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--lavender);
    background: rgba(153, 24, 255, 0.08);
    color: var(--lavender);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#loadMoreBtn:hover {
    background: var(--lavender);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 24, 255, 0.3);
}

#loadMoreBtn:active {
    transform: translateY(0);
}

#loadMoreBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments for benefits grid */
@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.exclusive-course-page .eyebrow {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.15), rgba(153, 24, 255, 0.08));
    border: 1px solid rgba(153, 24, 255, 0.25);
    color: var(--lavender);
}

/* Exclusive card styling */
.exclusive-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(249, 240, 255, 0.6));
    border: 1.5px solid rgba(153, 24, 255, 0.22);
    box-shadow: 0 8px 32px rgba(153, 24, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.exclusive-card::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(153, 24, 255, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 197, 63, 0.06), transparent 50%);
    pointer-events: none;
    animation: exclusiveGlow 8s ease-in-out infinite;
    z-index: 0;
}

.exclusive-card > * {
    position: relative;
    z-index: 1;
}

@keyframes exclusiveGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.exclusive-course-page .detail-page-image {
    box-shadow: 0 20px 60px rgba(153, 24, 255, 0.15);
}

/* Exclusive metadata styling */
.exclusive-course-page .metadata-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(153, 24, 255, 0.15);
}

.exclusive-course-page .metadata-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.exclusive-course-page .metadata-item strong {
    display: block;
    background: linear-gradient(135deg, var(--lavender), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.exclusive-course-page .chip {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.2), rgba(153, 24, 255, 0.1));
    border: 1px solid rgba(153, 24, 255, 0.3);
    color: var(--lavender);
    font-weight: 600;
}

.exclusive-course-page .chip.beginner {
    background: linear-gradient(135deg, rgba(46, 111, 118, 0.2), rgba(46, 111, 118, 0.1));
    border-color: rgba(46, 111, 118, 0.3);
    color: var(--aqua);
}

.exclusive-course-page .chip.intermediate {
    background: linear-gradient(135deg, rgba(240, 197, 63, 0.2), rgba(240, 197, 63, 0.1));
    border-color: rgba(240, 197, 63, 0.3);
    color: #d4a817;
}

.exclusive-course-page .chip.advanced {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.2), rgba(153, 24, 255, 0.1));
    border-color: rgba(153, 24, 255, 0.3);
    color: var(--lavender);
}

/* Exclusive feature list */
.exclusive-course-page .feature-list {
    gap: 1rem;
}

.exclusive-course-page .feature-list li {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.08), rgba(153, 24, 255, 0.04));
    border: 1.5px solid rgba(153, 24, 255, 0.18);
    padding: 1.25rem;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.exclusive-course-page .feature-list li::before {
    content: '✦';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lavender);
    font-weight: 700;
    opacity: 0.6;
}

.exclusive-course-page .feature-list li {
    padding-left: 2.5rem;
}

.exclusive-course-page .feature-list li:hover {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.12), rgba(153, 24, 255, 0.08));
    border-color: rgba(153, 24, 255, 0.28);
    box-shadow: 0 8px 24px rgba(153, 24, 255, 0.12);
    transform: translateX(6px);
}

/* Premium section background */
.exclusive-course-page.section-premium {
    background: linear-gradient(180deg, rgba(153, 24, 255, 0.03), rgba(240, 197, 63, 0.02));
}

/* Exclusive section styling */
.exclusive-course-page .section {
    position: relative;
}

.exclusive-course-page .section-dark {
    background: linear-gradient(135deg, rgba(29, 79, 87, 0.92), rgba(153, 24, 255, 0.08));
}

.exclusive-course-page .section-dark h2 {
    color: #ffffff;
}

.exclusive-course-page .section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.exclusive-course-page .section-dark .button-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.exclusive-course-page .section-dark .button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero actions centering for related courses */
.centered {
    text-align: center;
}

.hero-actions.centered {
    justify-content: center;
    gap: 1rem;
}

.exclusive-course-page .button-primary {
    background: linear-gradient(135deg, #d019ff, #7c13ff);
    box-shadow: 0 16px 40px rgba(124, 19, 255, 0.28);
    transition: all 0.35s ease;
}

.exclusive-course-page .button-primary:hover {
    box-shadow: 0 20px 50px rgba(124, 19, 255, 0.35);
    transform: translateY(-2px);
}

/* ========================================
   FAQ STYLES
   ======================================== */

.faq-container {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(46, 111, 118, 0.08);
    color: var(--aqua);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
    color: var(--lavender);
}

.faq-item:hover .faq-icon {
    background: rgba(46, 111, 118, 0.12);
    transform: scale(1.1);
}

.faq-item[open] .faq-toggle,
.faq-toggle[aria-expanded="true"] {
    color: var(--lavender);
}

.faq-item[open] .faq-icon,
.faq-toggle[aria-expanded="true"] .faq-icon {
    background: rgba(153, 24, 255, 0.15);
    color: var(--lavender);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Exclusive FAQ styling */
.exclusive-faq {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(249, 240, 255, 0.6));
    border: 1.5px solid rgba(153, 24, 255, 0.18);
}

.exclusive-faq .faq-toggle {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exclusive-faq .faq-toggle:hover {
    background: rgba(153, 24, 255, 0.05);
}

.exclusive-faq .faq-question {
    background: linear-gradient(135deg, var(--text), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exclusive-faq .faq-icon {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.15), rgba(153, 24, 255, 0.08));
    color: var(--lavender);
}

.exclusive-faq:hover .faq-icon {
    background: linear-gradient(135deg, rgba(153, 24, 255, 0.25), rgba(153, 24, 255, 0.15));
    box-shadow: 0 8px 16px rgba(153, 24, 255, 0.12);
}

.exclusive-faq .faq-answer p {
    color: rgba(29, 79, 87, 0.8);
}

/* FAQ footer section */
.faq-footer {
    text-align: center;
    padding: 2.5rem 2rem;
}

.faq-footer h3 {
    font-size: 1.8rem;
    margin: 0.75rem 0;
    color: var(--text);
}

.faq-footer .eyebrow {
    color: var(--lavender);
}

.exclusive-course-page .faq-footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(249, 240, 255, 0.6));
    border: 1.5px solid rgba(153, 24, 255, 0.22);
}

.exclusive-course-page .faq-footer h3 {
    background: linear-gradient(135deg, var(--lavender), var(--aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive FAQ adjustments */
@media (max-width: 768px) {
    .faq-toggle {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-footer {
        padding: 2rem 1.5rem;
    }
}

/* Responsive adjustments for course pages */
@media (max-width: 768px) {
    .exclusive-card {
        box-shadow: 0 4px 16px rgba(153, 24, 255, 0.1);
    }
    
    .exclusive-course-page .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .exclusive-course-page .feature-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
    }
}
