/* ============================================
   ROYAL KIDS INTERNATIONAL SCHOOL
   Premium Design System - Navy Blue + Gold
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============= CSS VARIABLES ============= */
:root {
    /* Primary Colors - Navy Blue */
    --primary-900: #060e1a;
    --primary-800: #0a1628;
    --primary-700: #0f1f38;
    --primary-600: #1a2d50;
    --primary-500: #243b68;
    --primary: #1a2d50;
    --primary-light: #2a4a7a;

    /* Accent Colors - Gold */
    --accent-dark: #9a7516;
    --accent: #d4a12a;
    --accent-light: #f0c040;
    --accent-lighter: #fce9a6;
    --gold-gradient: linear-gradient(135deg, #d4a12a, #f0c040, #d4a12a);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e3e6ec;
    --gray-300: #c8cdd8;
    --gray-400: #a0a8b8;
    --gray-500: #6c757d;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --gray-900: #0d1117;

    /* Semantic */
    --success: #10b981;
    --info: #3b82f6;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
    --shadow-gold: 0 4px 20px rgba(212, 161, 42, 0.3);
    --shadow-blue: 0 4px 20px rgba(26, 45, 80, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1280px;
    --container-narrow: 960px;
}

/* ============= RESET & BASE ============= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ============= UTILITY CLASSES ============= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-sm {
    padding: var(--space-3xl) 0;
}

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

.text-accent {
    color: var(--accent);
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

/* ============= TYPOGRAPHY ============= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-800);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-header .subtitle {
    font-family: var(--font-accent);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.section-header p {
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
    opacity: 0;
    border-radius: inherit;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary::before {
    background: var(--primary-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 45, 80, 0.4);
}

.btn-accent {
    background: var(--gold-gradient);
    color: var(--primary-800);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-accent::before {
    background: linear-gradient(135deg, #f0c040, #ffd84d, #f0c040);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 161, 42, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary-800);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ============= HEADER / NAVIGATION ============= */
.top-bar {
    background: var(--primary-800);
    color: var(--gray-300);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--accent);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.top-bar-right a:hover {
    background: var(--accent);
    color: var(--primary-800);
    transform: translateY(-2px);
}

/* Main Header */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
    box-shadow: none;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-800);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    font-family: var(--font-accent);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-base);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

.nav a.active {
    font-weight: 600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============= HERO SECTION ============= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(26, 45, 80, 0.75) 50%, rgba(42, 74, 122, 0.65) 100%);
    z-index: 2;
}

/* Decorative Elements */
.hero-decor {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-decor-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 161, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-decor-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.hero-decor-3 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(212, 161, 42, 0.15);
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 161, 42, 0.15);
    border: 1px solid rgba(212, 161, 42, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-light);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============= CARDS ============= */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-light));
}

.card-body {
    padding: var(--space-xl);
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* Icon Cards */
.icon-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-card:hover::before {
    transform: scaleX(1);
}

.icon-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(26, 45, 80, 0.08), rgba(26, 45, 80, 0.03));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.icon-card:hover .icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent-light);
    transform: scale(1.1);
}

.icon-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.icon-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Feature Card */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-lighter);
}

.feature-card .icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.4rem;
}

.feature-card h4 {
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============= GRIDS ============= */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

/* ============= PAGE BANNER ============= */
.page-banner {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-light) 100%);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,161,42,0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -80px;
    right: -50px;
}

.page-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(212,161,42,0.1);
    border-radius: 50%;
    bottom: -40px;
    left: 10%;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb a {
    color: var(--accent-light);
}

.page-banner .breadcrumb a:hover {
    color: var(--accent);
}

.page-banner .breadcrumb .separator {
    color: rgba(255,255,255,0.3);
}

/* ============= ABOUT SECTION ============= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 4rem;
}

.about-img .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: var(--primary-800);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content .subtitle {
    font-family: var(--font-accent);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.about-content p {
    margin-bottom: var(--space-lg);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.92rem;
}

.about-feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ============= STATS BAR ============= */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,161,42,0.08) 0%, transparent 70%);
    border-radius: 50%;
    right: -200px;
    top: -200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: rgba(212, 161, 42, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.5rem;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============= CTA SECTION ============= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,161,42,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212,161,42,0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto var(--space-xl);
}

.cta-content .btn-accent {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============= FORMS ============= */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 45, 80, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============= FOOTER ============= */
.footer {
    background: var(--primary-900);
    color: var(--gray-300);
    padding-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-about .logo {
    margin-bottom: var(--space-lg);
}

.footer-about .logo-text h1 {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-about .logo-text span {
    color: var(--accent);
}

.footer-about p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-800);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ============= GALLERY ============= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-light));
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,22,40,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-accent);
}

.gallery-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.gallery-filter button {
    padding: 10px 24px;
    background: var(--gray-100);
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

/* ============= NEWS / NOTICE ============= */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.news-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--primary-800);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 700;
    line-height: 1.2;
}

.news-date-badge .day {
    font-size: 1.3rem;
    display: block;
}

.news-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-body {
    padding: var(--space-xl);
}

.news-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(26, 45, 80, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.news-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.news-card-body h3 a:hover {
    color: var(--accent-dark);
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.news-card-body .read-more {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card-body .read-more:hover {
    color: var(--accent);
    gap: 10px;
}

/* Notice Board */
.notice-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item:hover {
    background: var(--gray-50);
    padding-left: calc(var(--space-xl) + 8px);
}

.notice-date {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-accent);
}

.notice-date .day {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.notice-date .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.notice-content h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.notice-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============= FACULTY ============= */
.faculty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.faculty-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.faculty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 4rem;
}

.faculty-info {
    padding: var(--space-xl);
}

.faculty-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.faculty-info .designation {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.faculty-info .qualification {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.faculty-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.faculty-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.faculty-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============= ADMISSIONS ============= */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.timeline-item h4 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 0.92rem;
    margin: 0;
}

/* Fees Table */
.fees-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fees-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.fees-table th {
    padding: 16px 20px;
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fees-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
    color: var(--gray-600);
}

.fees-table tbody tr {
    transition: var(--transition-base);
}

.fees-table tbody tr:hover {
    background: var(--gray-50);
}

.fees-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============= CONTACT ============= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--accent-lighter);
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.2rem;
}

.contact-info-card h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact-form-card h3 {
    margin-bottom: var(--space-xl);
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============= TESTIMONIALS ============= */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-card .quote-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author-info h5 {
    font-family: var(--font-accent);
    color: var(--gray-800);
    margin-bottom: 0;
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============= MARQUEE / TICKER ============= */
.news-ticker {
    background: var(--accent);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-800);
}

.ticker-item i {
    color: var(--primary-600);
}

/* ============= SCROLL ANIMATIONS ============= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============= KEYFRAMES ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* ============= BACK TO TOP ============= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--accent-light);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ============= MISC ============= */
.divider {
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: var(--space-md) 0;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

.tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 161, 42, 0.1);
    color: var(--accent-dark);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bg-light {
    background: var(--gray-50);
}

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

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Success Message */
.form-success {
    display: none;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    color: var(--success);
    font-family: var(--font-accent);
    font-weight: 600;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--space-xl) var(--space-xl);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right var(--transition-base);
        z-index: 1000;
        gap: 0;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Grids */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat .number {
        font-size: 1.6rem;
    }

    /* Page Banner */
    .page-banner {
        padding: 80px 0 40px;
    }

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    /* Buttons */
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    /* About Features */
    .about-features {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--space-md);
    }

    /* Fees Table */
    .fees-table {
        display: block;
        overflow-x: auto;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }

    .hero-stat {
        flex: 1;
        min-width: 0;
    }

    .hero-stat .number {
        font-size: 1.3rem;
    }

    .hero-stat .label {
        font-size: 0.65rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============= PRINT ============= */
@media print {
    .header, .footer, .back-to-top, .top-bar, .news-ticker {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        padding: 20px 0;
    }
}
