:root {
    --crimson: #C0152A;
    --crimson-dark: #8B0E1D;
    --crimson-light: #E8294A;
    --crimson-deep: #3D0719;
    --pink: #F72585;
    --pink-light: #FF6BAE;
    --pink-pale: #FFE0EE;
    --blush: #FFF0F5;
    --gold: #D4A017;
    --white: #FFFFFF;
    --off-white: #FDF7F9;
    --text-dark: #1A0509;
    --text-mid: #4A1020;
    --text-soft: #8B4558;
    --border: rgba(192, 21, 42, 0.15);
    --shadow-pink: 0 8px 40px rgba(247, 37, 133, 0.15);
    --shadow-red: 0 8px 40px rgba(192, 21, 42, 0.2);
    --nav-h: 80px;
    --tb-h: 36px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/*  SCROLLBAR  */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blush);
}

::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 3px;
}

/*  HERO  */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, #1A0509 0%, #3D0719 40%, #7A0D24 70%, #C0152A 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(247, 37, 133, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(247, 37, 133, 0.08) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(192, 21, 42, 0.15) 0%, transparent 40%);
}

.hero-mandala {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.06;
    animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-inner {
    max-width: 1300px;
    margin: auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 37, 133, 0.15);
    border: 1px solid rgba(247, 37, 133, 0.3);
    color: var(--pink-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--pink-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--crimson-light));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(247, 37, 133, 0.4);
    transition: all 0.25s;
    display: inline-block;
}

.btn-sm {
    padding: 5px 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(247, 37, 133, 0.55);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--pink-light);
    background: rgba(247, 37, 133, 0.1);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-num span {
    color: var(--pink-light);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.6s 0.25s ease both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px 28px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s;
}

.hero-card:hover {
    transform: translateX(-6px);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ic-pink {
    background: rgba(247, 37, 133, 0.2);
}

.ic-gold {
    background: rgba(212, 160, 23, 0.2);
}

.ic-red {
    background: rgba(192, 21, 42, 0.3);
}

.hero-card-text h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hero-card-text p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/*  SECTION COMMON  */
section {
    padding: 90px 24px;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--crimson));
    border-radius: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--crimson);
}

.section-sub {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
}

/*  ABOUT  */
.about-bg {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--crimson-dark), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 2px solid var(--pink-pale);
}

.about-badge-float strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--crimson);
    font-weight: 900;
}

.about-badge-float span {
    font-size: 0.72rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.about-feature:hover {
    background: var(--blush);
    border-color: var(--pink-pale);
    transform: translateX(6px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feat-text h4 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.feat-text p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/*  PROGRAMS  */
.programs-bg {
    background: var(--blush);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.program-card {
    background: var(--white);
    border-radius: 22px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--pink));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-pink);
    border-color: transparent;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.prog-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--pink-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.program-card:hover .prog-icon {
    background: linear-gradient(135deg, var(--crimson), var(--pink));
}

.prog-grade {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 6px;
}

.prog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.prog-desc {
    font-size: 0.87rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

.prog-link {
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.prog-link:hover {
    gap: 10px;
}

/*  HIGHLIGHTS  */
.highlights-bg {
    background: var(--white);
}

.highlights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.highlight-card {
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: scale(1.02);
}

.hc-big {
    grid-row: 1 / 3;
    min-height: 460px;
}

.hc-red {
    background: linear-gradient(135deg, var(--crimson-dark), var(--crimson-light));
}

.hc-pink {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
}

.hc-light {
    background: var(--blush);
    border: 1px solid var(--border);
}

.hc-dark {
    background: linear-gradient(135deg, #2D0710, #5A1020);
}

.hc-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hc-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.hc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.hc-sub {
    font-size: 0.82rem;
    margin-top: 6px;
    opacity: 0.7;
}

.hc-red .hc-tag, .hc-red .hc-title, .hc-red .hc-sub {
    color: var(--white);
}

.hc-pink .hc-tag, .hc-pink .hc-title, .hc-pink .hc-sub {
    color: var(--white);
}

.hc-dark .hc-tag, .hc-dark .hc-title, .hc-dark .hc-sub {
    color: var(--white);
}

.hc-light .hc-tag {
    color: var(--crimson);
}

.hc-light .hc-title {
    color: var(--text-dark);
}

.hc-light .hc-sub {
    color: var(--text-soft);
}

/*  FACULTY  */
.faculty-bg {
    background: var(--blush);
}

.faculty-grid {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    flex-direction: row;
    flex-wrap: wrap;
}

.faculty-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    max-width: 200px;
    width: 100%;
}

.faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pink);
    border-color: transparent;
}

.faculty-avatar {
    height: 200px;
    background: linear-gradient(135deg, var(--crimson-dark), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.faculty-avatar>img {
    max-width: 100%;
    max-height: 100%;
}

.faculty-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.faculty-info {
    padding: 20px 22px 24px;
}

.faculty-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.faculty-role {
    font-size: 0.78rem;
    color: var(--crimson);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faculty-qual {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/*  TESTIMONIALS  */
.test-bg {
    background: var(--white);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.test-card {
    background: var(--blush);
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.test-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-pink);
}

.test-quote {
    font-size: 2.5rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.test-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.test-avatar>img {
    max-width: 100%;
    max-height: 100%;
}

.test-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.test-role {
    font-size: 0.75rem;
    color: var(--crimson);
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/*  EVENTS  */
.events-bg {
    background: var(--blush);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.event-item {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.event-item:hover {
    box-shadow: var(--shadow-pink);
    border-color: var(--pink-pale);
    transform: translateX(6px);
}

.event-date {
    min-width: 70px;
    text-align: center;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white);
    border-radius: 14px;
    padding: 12px;
    flex-shrink: 0;
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.event-month {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.event-info {
    flex: 1;
}

.event-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.event-meta {
    font-size: 0.8rem;
    color: var(--text-soft);
    display: flex;
    gap: 16px;
}

.event-tag {
    background: var(--pink-pale);
    color: var(--crimson);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    flex-shrink: 0;
}

/*  ADMISSIONS BANNER  */
.admission-section {
    padding: 0;
}

.admission-banner {
    background: linear-gradient(120deg, var(--crimson-dark) 0%, #6D0F22 40%, var(--pink) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.admission-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.admission-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.admission-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 36px;
    position: relative;
}

.admission-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    background: var(--white);
    color: var(--crimson);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.25s;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/*  CONTACT  */
.contact-bg {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--blush);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 3px;
}

.contact-val {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form {
    background: var(--blush);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border 0.2s;
    resize: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(247, 37, 133, 0.35);
    transition: all 0.25s;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(247, 37, 133, 0.5);
}

/* HEADER */
.site-header .topbar {
    height: var(--tb-h);
    background: var(--crimson-deep);
    display: flex;
    align-items: center;
    padding: 0 28px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1001;
}

.site-header .topbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.site-header .tb-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-header .tb-left span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-header .tb-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header .topbar a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.site-header .topbar a:hover {
    color: var(--pink-light);
}

.site-header .tb-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Marquee notice */
.site-header .tb-notice {
    flex: 1;
    overflow: hidden;
    max-width: 500px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.site-header .tb-notice-inner {
    display: inline-flex;
    white-space: nowrap;
    gap: 48px;
    animation: vvps-marquee 22s linear infinite;
}

.site-header .tb-notice-inner span {
    color: var(--pink-light);
    font-weight: 600;
}

@keyframes vvps-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STICKY NAVBAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1.5px solid var(--border);
}

.site-header .navbar {
    height: var(--nav-h);
}

.site-header .navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header .logo-img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid var(--pink-pale);
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(247, 37, 133, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header .logo-name {
    font-family: var(--font-disp);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--crimson-dark);
}

.site-header .logo-sub {
    font-size: 0.64rem;
    color: var(--text-soft);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ DESKTOP MENU (hidden on mobile via media) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.site-header .nav-item {
    position: relative;
}

.site-header .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 13px;
    border-radius: 8px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    position: relative;
}

.site-header .nav-link .arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
    opacity: 0.5;
}

.site-header .nav-link:hover {
    color: var(--crimson);
    background: var(--blush);
}

.site-header .nav-item:hover>.nav-link {
    color: var(--crimson);
    background: var(--blush);
}

.site-header .nav-item:hover>.nav-link .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.site-header .nav-link.active {
    color: var(--crimson);
}

.site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--crimson), var(--pink));
}

/* Apply button special */
.site-header .btn-apply {
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 18px rgba(247, 37, 133, 0.32);
    transition: transform 0.2s, box-shadow 0.2s !important;
    margin-left: 6px;
}

.site-header .btn-apply:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(247, 37, 133, 0.48) !important;
}

.site-header .btn-apply::after {
    display: none !important;
}

/* Dropdowns (desktop) */
.site-header .dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--drop-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    z-index: 500;
    list-style: none;
}

.site-header .nav-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    gap: 8px;
}

.site-header .dropdown-link .d-icon {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.75;
}

.site-header .dropdown-link .d-arrow {
    margin-left: auto;
    opacity: 0.4;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.site-header .dropdown li:hover>.dropdown-link {
    background: var(--blush);
    color: var(--crimson);
}

.site-header .dropdown li:hover>.dropdown-link .d-arrow {
    transform: rotate(-90deg);
    opacity: 1;
}

.site-header .drop-sep {
    height: 1px;
    background: var(--border);
    margin: 6px 8px;
}

/* Nested dropdown (2-level) */
.site-header .sub-dropdown {
    position: absolute;
    top: 0;
    left: calc(100% + 8px);
    min-width: 210px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--drop-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 600;
    list-style: none;
}

.site-header .dropdown li:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mega Menu */
.site-header .has-mega {
    position: static;
}

.site-header .mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(1060px, 96vw);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--drop-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 700;
    overflow: hidden;
}

.site-header .has-mega:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.site-header .mega-inner {
    display: flex;
}

.site-header .mega-featured {
    width: 240px;
    flex-shrink: 0;
    background: linear-gradient(160deg, var(--crimson-deep), var(--crimson));
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.site-header .mega-featured::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.site-header .mega-featured::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(247, 37, 133, 0.1);
}

.site-header .mega-feat-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.site-header .mega-feat-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header .mega-feat-title {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.site-header .mega-feat-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.site-header .mega-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 4px;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.site-header .mega-feat-cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

.site-header .mega-cols {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 28px 24px;
}

.site-header .mega-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.site-header .mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-header .mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background 0.17s, color 0.17s;
    white-space: nowrap;
}

.site-header .mega-col ul li a:hover {
    background: var(--blush);
    color: var(--crimson);
}

.site-header .mega-footer {
    background: var(--blush);
    border-top: 1px solid var(--border);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-header .mega-footer-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 600;
}

.site-header .mega-quick-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.site-header .mega-pill {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--crimson);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.18s;
}

.site-header .mega-pill:hover {
    background: var(--crimson);
    color: var(--white);
    border-color: var(--crimson);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HAMBURGER (visible only on mobile) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.site-header .hamburger:hover {
    background: var(--blush);
}

.site-header .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--crimson);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.site-header .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MOBILE DRAWER (single source, transforms into accordion) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header .mobile-drawer {
    display: none;
    position: fixed;
    top: calc(var(--tb-h) + var(--nav-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    padding: 16px 0 40px;
    border-top: 1px solid var(--border);
}

.site-header .mobile-drawer.open {
    transform: translateX(0);
}

.site-header .mob-item {
    border-bottom: 1px solid var(--border);
}

.site-header .mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}

.site-header .mob-link:hover, .site-header .mob-link.active {
    color: var(--crimson);
    background: var(--blush);
}

.site-header .mob-chevron {
    font-size: 0.75rem;
    color: var(--text-soft);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.site-header .mob-item.expanded>.mob-link .mob-chevron {
    transform: rotate(180deg);
    color: var(--crimson);
}

.site-header .mob-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    background: var(--blush);
}

.site-header .mob-item.expanded>.mob-panel {
    max-height: 1200px;
}

.site-header .mob-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 36px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.18s, background 0.18s;
    border-bottom: 1px solid rgba(192, 21, 42, 0.06);
}

.site-header .mob-sub-link:last-child {
    border-bottom: none;
}

.site-header .mob-sub-link:hover {
    color: var(--crimson);
    background: rgba(247, 37, 133, 0.06);
}

.site-header .mob-nested-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 36px;
    width: 100%;
    border: none;
    background: none;
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    border-bottom: 1px solid rgba(192, 21, 42, 0.06);
}

.site-header .mob-nested-btn:hover {
    color: var(--crimson);
    background: rgba(247, 37, 133, 0.06);
}

.site-header .mob-nested-chevron {
    font-size: 0.7rem;
    color: var(--text-soft);
    transition: transform 0.25s;
}

.site-header .mob-nested-item.expanded>.mob-nested-btn .mob-nested-chevron {
    transform: rotate(180deg);
    color: var(--crimson);
}

.site-header .mob-nested-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
    background: rgba(255, 240, 245, 0.6);
}

.site-header .mob-nested-item.expanded>.mob-nested-panel {
    max-height: 600px;
}

.site-header .mob-nested-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 52px;
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.83rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(192, 21, 42, 0.05);
}

.site-header .mob-nested-link:hover {
    color: var(--crimson);
}

.site-header .mob-section-head {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    padding: 14px 36px 6px;
}

.site-header .mob-apply-wrap {
    padding: 20px 24px 8px;
}

.site-header .mob-apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(247, 37, 133, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.site-header .mob-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(247, 37, 133, 0.5);
}

.site-header .mob-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 24px 0;
}

.site-header .mob-contact-strip a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.82rem;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
}

.site-header .mob-contact-strip a:hover {
    background: var(--blush);
    color: var(--crimson);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE BREAKPOINTS (single header adapts) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1100px) {
    .site-header .mega-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header .mega-featured {
        display: none;
    }
}

@media (max-width: 960px) {
    .site-header .nav-menu {
        display: none;
    }

    .site-header .hamburger {
        display: flex;
    }

    .site-header .mobile-drawer {
        display: block;
    }

    .site-header .tb-left .tb-notice {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header .topbar {
        padding: 0 16px;
    }

    .site-header .navbar-inner {
        padding: 0 16px;
    }

    .site-header .logo-text {
        display: none;
    }
}

@media (max-width: 420px) {
    .site-header .tb-right {
        display: none;
    }
}

/*  FOOTER  */
footer {
    background: var(--text-dark);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1300px;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo-text .logo-name {
    color: var(--pink-light);
}

.footer-logo-text .logo-tagline {
    color: rgba(255, 255, 255, 0.3);
}

.footer-col h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--pink-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.logo-footer {
    max-width: 150px;
}

.logo-footer>img {
    max-width: 100%;
}

.footer-logo-text {
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    color: white;
}

.social-btn>svg {
    max-width: 20px;
    max-height: 20px;
}

.social-btn:hover {
    background: var(--crimson);
    border-color: var(--crimson);
    transform: translateY(-2px);
}

/*  BACK TO TOP  */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--crimson), var(--pink));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(247, 37, 133, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 900;
    border: none;
    color: white;
}

.back-top.show {
    opacity: 1;
    transform: none;
}

.back-top:hover {
    transform: translateY(-3px);
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-card {
        flex: 1;
        min-width: 220px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-wrap {
        max-width: 400px;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hc-big {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 68px;
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-visual {
        display: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
    }

    .about-badge-float {
        bottom: -12px;
        right: -12px;
    }

    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .event-tag {
        margin-left: 0;
    }
}


/* RICH CONTENT */
.rich-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--crimson-dark);
    margin: 28px 0 16px 0;
}

.rich-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-mid);
    margin: 24px 0 12px 0;
    border-left: 4px solid var(--pink);
    padding-left: 16px;
}

.rich-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 18px;
}

.rich-content ul, .rich-content ol {
    margin: 16px 0 20px 32px;
}

.rich-content li {
    margin-bottom: 8px;
    line-height: 1.65;
    color: var(--text-soft);
}

.rich-content strong {
    color: var(--crimson);
    font-weight: 700;
}

.rich-content img {
    max-width: 100%;
    border-radius: 15px;
}