/* ═══════════════════════════════════════════════════════════════
   GHRPS — Ultra luxury layer (fullscreen hero, refined sections)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fullscreen hero: image edge-to-edge, copy bottom-left ─── */
.hero-fullscreen {
    position: relative;
    background: var(--navy-dark, #0f1d45);
}
.hero-full-swiper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
}
.hero-full-slide {
    min-height: 100vh;
    min-height: 100dvh;
}
.hero-full-swiper .swiper-slide {
    height: 100vh;
    height: 100dvh;
}
.hero-full-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-full-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hero-full-swiper .swiper-slide-active .hero-full-media {
    animation: heroFullZoom 12s ease-out forwards;
}
@keyframes heroFullZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.hero-full-media--default,
.hero-full-slide--solo .hero-full-media--default {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy) 45%, var(--teal));
}
/* Light scrim only at bottom-left — rest of image stays clear */
.hero-full-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(0deg, rgba(15, 29, 69, 0.75) 0%, transparent 42%),
        linear-gradient(90deg, rgba(15, 29, 69, 0.55) 0%, transparent 55%);
}
.hero-full-content {
    position: absolute;
    z-index: 5;
    left: clamp(1.25rem, 4vw, 3.5rem);
    bottom: clamp(5.5rem, 12vh, 8rem);
    max-width: min(580px, 88vw);
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(15, 29, 69, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.hero-full-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--saffron-light, #ffd166);
    margin-bottom: 1rem;
}
.hero-full-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.2vw, 3.1rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero-full-content h1 .hero-highlight {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-full-lead {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}
.hero-full-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.hero-full-actions .btn-hero-solid { margin-left: 0; }

/* Slider UI — compact, inside hero only */
.hero-full-ui {
    position: absolute;
    z-index: 8;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1.25rem, 3vh, 2rem);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.55rem;
    background: rgba(15, 29, 69, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-full-prev,
.hero-full-next {
    position: static;
    width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    transition: all 0.3s var(--ease-spring, ease);
}
.hero-full-prev::after,
.hero-full-next::after {
    font-size: 0.65rem;
    font-weight: 700;
}
.hero-full-prev:hover,
.hero-full-next:hover {
    background: var(--saffron);
    color: var(--navy-dark);
    transform: scale(1.05);
}
.hero-full-pagination {
    position: static !important;
    width: auto !important;
    line-height: 1;
}
.hero-full-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 3px !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}
.hero-full-pagination .swiper-pagination-bullet-active {
    width: 14px;
    border-radius: 3px;
    background: var(--saffron) !important;
}

/* Stats — own section below hero (no overlap) */
.stats-strip--section {
    margin-top: 0 !important;
    padding: 2.75rem 0 3rem;
    background: #fff;
    border-top: 1px solid rgba(26, 47, 107, 0.06);
}
.stats-strip--section .stats-strip-inner {
    max-width: 100%;
    box-shadow: 0 8px 32px rgba(15, 29, 69, 0.06);
}
.stats-strip--section .stat-box .stat-value {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}
.stats-strip--section .stat-box .stat-label {
    font-size: 0.75rem;
}

/* Highlight cards */
.highlights-strip {
    padding: 3rem 0 4rem;
}
.highlight-card {
    height: 100%;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(26, 47, 107, 0.06);
    box-shadow: 0 12px 36px rgba(15, 29, 69, 0.06);
    transition: all 0.45s var(--ease-spring, ease);
}
.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card, 0 20px 50px rgba(15, 29, 69, 0.12));
    border-color: rgba(245, 166, 35, 0.25);
}
.highlight-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 47, 107, 0.08), rgba(245, 166, 35, 0.15));
    color: var(--navy);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.highlight-card h5 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}
.highlight-card p {
    font-size: 0.9rem;
    color: #5a6478;
    line-height: 1.65;
    margin: 0;
}

/* Luxury headings */
.heading-luxury {
    font-family: var(--font-heading);
    color: var(--brown, #4a3728);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}
.heading-luxury::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--teal));
    border-radius: 2px;
}
.text-center .heading-luxury::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-navy .heading-luxury::after {
    background: linear-gradient(90deg, var(--saffron-light), var(--saffron));
}

/* Message blocks — ultra */
.message-block--luxury {
    position: relative;
}
.message-block--luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.4), transparent);
}
.message-photo-frame--luxury {
    border-radius: 20px;
    border: none;
    box-shadow:
        0 24px 60px rgba(15, 29, 69, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
}
.message-photo-frame--luxury::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(245, 166, 35, 0.35);
    border-radius: 24px;
    pointer-events: none;
}
.section-beige--luxury {
    background: linear-gradient(180deg, var(--beige, #f0ebe3) 0%, #f7f4ef 100%);
}

.pillar-card-mockup--luxury {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem 2.25rem;
    border: 1px solid rgba(26, 47, 107, 0.06);
    box-shadow: 0 16px 40px rgba(15, 29, 69, 0.06);
    position: relative;
    overflow: hidden;
}
.pillar-card-mockup--luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--saffron), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth, ease);
}
.pillar-card-mockup--luxury:hover::after { transform: scaleX(1); }

.link-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}
.link-read-more:hover {
    color: var(--saffron-dark);
    gap: 0.65rem;
}

/* ─── Premium CTA band ─── */
.cta-premium {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow: hidden;
}
.cta-premium__bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1523050854058-7755a4d72594?w=1920&q=80') center / cover no-repeat;
}
.cta-premium__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 18, 40, 0.92) 0%, rgba(26, 47, 107, 0.88) 45%, rgba(13, 148, 136, 0.35) 100%);
}
.cta-premium__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}
.cta-premium__glow--left {
    left: -120px;
    bottom: -100px;
    background: var(--saffron, #f5a623);
}
.cta-premium__glow--right {
    right: -80px;
    top: -80px;
    background: var(--teal, #0d9488);
}
.cta-premium__inner {
    position: relative;
    z-index: 3;
}
.cta-premium__card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.cta-premium__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron-light, #ffd166);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.35);
}
.cta-premium__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff !important;
    margin: 0 0 1.25rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.cta-premium__lead {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 620px;
    margin: 0 auto 2rem;
}
.cta-premium__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.cta-premium__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta-premium__btn--primary {
    background: linear-gradient(135deg, #fffbf5, #fff);
    color: var(--navy, #1a2f6b) !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.cta-premium__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(245, 166, 35, 0.45);
    color: var(--navy-dark, #0f1d45) !important;
}
.cta-premium__btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff !important;
    background: transparent;
}
.cta-premium__btn--outline:hover {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-color: var(--saffron);
    color: var(--navy-dark) !important;
    transform: translateY(-4px);
}
@media (max-width: 575px) {
    .cta-premium__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-premium__btn {
        justify-content: center;
    }
}
.testimonials-section {
    background: linear-gradient(180deg, #f7f4ef 0%, var(--beige, #f0ebe3) 100%);
}

@media (max-width: 767px) {
    .hero-full-content {
        left: 1rem;
        right: 1rem;
        max-width: none;
        bottom: 5rem;
        padding: 1.25rem;
    }
    .hero-full-ui {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 1rem;
    }
    .stats-strip--section {
        padding: 2rem 0 2.5rem;
    }
}

@media (max-width: 575px) {
    .hero-full-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-full-actions .btn-hero-solid,
    .hero-full-actions .btn-hero-outline {
        text-align: center;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-full-swiper .swiper-slide-active .hero-full-media {
        animation: none;
    }
}

/* ═══ Ultra luxury preloader ═══ */
body.is-loading {
    overflow: hidden;
}
.site-preloader--luxury {
    display: flex !important;
    background: linear-gradient(145deg, #0a1228 0%, #0f1d45 40%, #1a2f6b 70%, #0d3d4a 100%);
    z-index: 100000;
}
.site-preloader--luxury.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-aurora {
    position: absolute;
    inset: -50%;
    background:
        conic-gradient(from 0deg at 50% 50%, transparent, rgba(245, 166, 35, 0.08), transparent, rgba(13, 148, 136, 0.1), transparent);
    animation: preloaderAurora 12s linear infinite;
}
@keyframes preloaderAurora {
    to { transform: rotate(360deg); }
}
.preloader-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--saffron-light, #ffd166);
    opacity: 0;
    animation: preloaderSpark 4s ease-in-out infinite;
}
.preloader-particles span:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; }
.preloader-particles span:nth-child(2) { left: 75%; top: 20%; animation-delay: 0.5s; }
.preloader-particles span:nth-child(3) { left: 85%; top: 60%; animation-delay: 1s; }
.preloader-particles span:nth-child(4) { left: 20%; top: 70%; animation-delay: 1.5s; }
.preloader-particles span:nth-child(5) { left: 50%; top: 15%; animation-delay: 2s; }
.preloader-particles span:nth-child(6) { left: 40%; top: 85%; animation-delay: 0.8s; }
.preloader-particles span:nth-child(7) { left: 65%; top: 45%; animation-delay: 1.2s; }
.preloader-particles span:nth-child(8) { left: 10%; top: 45%; animation-delay: 1.8s; }
@keyframes preloaderSpark {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.4); }
}
.preloader-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 520px;
}
.preloader-brand-img {
    max-height: 96px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    animation: preloaderLogoIn 1s ease-out both;
}
.preloader-brand-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--saffron, #f5a623);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(245, 166, 35, 0.4);
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.25);
    animation: preloaderLogoIn 1s ease-out both;
}
@keyframes preloaderLogoIn {
    from { opacity: 0; transform: scale(0.85) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.preloader-school-name {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    animation: preloaderTextIn 1.1s ease-out 0.15s both;
}
.preloader-school-name__main {
    display: block;
    font-size: clamp(1.65rem, 5vw, 2.35rem);
    color: #fff;
    letter-spacing: 0.02em;
}
.preloader-school-name__ji {
    display: inline;
    font-size: clamp(1.65rem, 5vw, 2.35rem);
    background: linear-gradient(135deg, #ffd166, #f5a623, #d4890a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0.15em;
}
.preloader-school-name__sub {
    display: block;
    font-size: clamp(1.1rem, 3.5vw, 1.55rem);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}
@keyframes preloaderTextIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.preloader-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 2rem;
    animation: preloaderTextIn 1s ease-out 0.35s both;
}
.preloader-progress {
    width: min(280px, 80vw);
    margin: 0 auto;
    animation: preloaderTextIn 1s ease-out 0.5s both;
}
.preloader-progress__track {
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.65rem;
}
.preloader-progress__fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--teal, #0d9488), var(--saffron, #f5a623), #ffd166);
    animation: preloaderBarFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.6);
}
@keyframes preloaderBarFill {
    to { width: 100%; }
}
.preloader-progress__label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
