/* ========================================
   BAF SEMC - Complete Stylesheet
   Modern Educational Institution Theme
   Colors: Cyan (#0dcaf0) & Gold (#ffc107)
   ======================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Cyan */
    --primary: #0dcaf0;
    --primary-dark: #0aa2c0;
    --primary-light: #5dd9f5;
    
    /* Accent Colors - Gold */
    --accent: #ffc107;
    --accent-dark: #d9a406;
    --accent-light: #ffcd39;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px -10px rgba(255, 193, 7, 0.5);
    --shadow-primary: 0 10px 30px -10px rgba(13, 202, 240, 0.4);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
    .section { padding: 6rem 0; }
}

.section-sm {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .section-sm { padding: 3rem 0; }
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Icons */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--gray-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(255, 193, 7, 0.6);
}

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

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

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
}

/* ===== Section Labels & Titles ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(13, 202, 240, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.section-label .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}

.section-title-light {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title-light { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title-light { font-size: 3rem; }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 42rem;
}

@media (min-width: 768px) {
    .section-subtitle { font-size: 1.125rem; }
}

.section-subtitle-light {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
}

@media (min-width: 768px) {
    .section-subtitle-light { font-size: 1.125rem; }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.section-header-center {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.section-header-center .section-subtitle,
.section-header-center .section-subtitle-light {
    margin: 0 auto;
}

.gold-underline {
    position: relative;
    display: inline-block;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-full);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    display: none;
}

@media (min-width: 768px) {
    .top-bar { display: block; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--white);
}

.contact-info .contact-item:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--accent);
}

.main-nav {
    background: var(--white);
    padding: 1rem 0;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.main-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 48px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img { height: 56px; }
}

.logo-text {
    display: block;
    padding-left: 40px;
    padding-top: 5px;
}

@media (min-width: 640px) {
    .logo-text { display: block; }
}

.logo-text h1 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .logo-text h1 { font-size: 1rem; }
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

@media (min-width: 768px) {
    .logo-text p { font-size: 0.875rem; }
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-menu { display: flex; }
}

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

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-menu > li > a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-radius: var(--radius-md);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .nav-cta { display: flex; }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-700);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
}

.nav-menu.active > li {
    width: 100%;
}

.nav-menu.active > li > a {
    width: 100%;
    padding: 0.75rem 1rem;
}

.nav-menu.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
}

/* ===== NOTICE TICKER ===== */
.notice-ticker-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0.625rem 0;
    margin-top: 80px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .notice-ticker-section { margin-top: 5px; }
}

.notice-ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.notice-label span {
    display: none;
}

@media (min-width: 640px) {
    .notice-label span { display: inline; }
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 18s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.ticker-item:hover {
    color: var(--accent);
}

.ticker-item .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.payment-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-base);
}

.payment-btn:hover {
    background: var(--accent-light);
}

.payment-btn span {
    display: none;
}

@media (min-width: 640px) {
    .payment-btn span { display: inline; }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 60, 80, 0.7), rgba(0, 60, 80, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 7rem;
}

.hero-text {
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
    animation: fadeIn 0.6s ease forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-900);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease forwards;
}

@media (min-width: 640px) {
    .hero-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 4rem; }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 36rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-description { font-size: 1.125rem; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(13, 202, 240, 0.95);
    backdrop-filter: blur(10px);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .stats-row {
        justify-content: flex-start;
        gap: 4rem;
    }
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

@media (min-width: 768px) {
    .stat-number { font-size: 2rem; }
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    display: none;
}

@media (min-width: 640px) {
    .stat-divider { display: block; }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-base);
}

.slider-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--gray-900);
}

.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

@media (min-width: 768px) {
    .slider-prev { left: 1.5rem; }
    .slider-next { right: 1.5rem; }
}

.slider-indicators {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.indicator.active {
    width: 32px;
    background: var(--accent);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.image-decoration-1 {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-2xl);
    z-index: 0;
}

.image-decoration-2 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(13, 202, 240, 0.1);
    border-radius: var(--radius-2xl);
    z-index: 0;
}

.floating-badge {
    position: absolute;
    bottom: -1rem;
    left: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

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

.badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.about-content {
    space-y: 1.5rem;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .highlights-grid { grid-template-columns: 1fr 1fr; }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.motto-box {
    padding: 1.25rem;
    background: rgba(13, 202, 240, 0.05);
    border: 1px solid rgba(13, 202, 240, 0.1);
    border-radius: var(--radius-xl);
    margin: 1.5rem 0;
}

.motto-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.motto-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .stats-cards { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(13, 202, 240, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-card-icon {
    background: var(--primary);
    color: var(--white);
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== EVENTS SECTION ===== */
.events {
    background: var(--white);
}

.events-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .events-grid { grid-template-columns: repeat(4, 1fr); }
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 3px solid #ffcd39;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.event-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.event-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.event-card:hover .event-title {
    color: var(--primary);
}

.event-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 1rem;
}

.event-link:hover {
    color: var(--primary-dark);
}

.event-link i {
    transition: transform var(--transition-fast);
}

.event-link:hover i {
    transform: translateX(4px);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.achievement-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .achievement-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.achievement-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

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

.achievement-item:hover img {
    transform: scale(1.1);
}

.achievement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-base);
}

.achievement-item:hover .achievement-overlay {
    opacity: 1;
    transform: translateY(0);
}

.achievement-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

@media (min-width: 768px) {
    .achievement-title { font-size: 1rem; }
}

.achievement-year {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.achievement-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.achievement-item:hover .achievement-zoom {
    opacity: 1;
}

.achievement-zoom i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.achievement-bg-1,
.achievement-bg-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.achievement-bg-1 {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(60px);
}

.achievement-bg-2 {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(60px);
}

/* ===== MESSAGES SECTION ===== */
.messages {
    background: linear-gradient(135deg, var(--gray-50), var(--white), rgba(13, 202, 240, 0.03));
    position: relative;
    overflow: hidden;
}

.messages-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .messages-grid { grid-template-columns: repeat(2, 1fr); }
}

.message-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.message-card:hover {
    box-shadow: var(--shadow-xl);
}

.message-accent-bar {
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--primary-light), var(--accent));
}

.message-content {
    padding: 2rem;
}

.message-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.message-image {
    position: relative;
    flex-shrink: 0;
}

.message-image img {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    object-position: top;
    box-shadow: var(--shadow-md);
    border: 4px solid rgba(13, 202, 240, 0.1);
}

.message-card:hover .message-image img {
    border-color: rgba(13, 202, 240, 0.3);
}

.star-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.star-badge i {
    width: 16px;
    height: 16px;
    color: var(--gray-900);
    fill: var(--gray-900);
}

.message-info {
    flex: 1;
    padding-top: 0.25rem;
}

.message-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(13, 202, 240, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.message-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.message-designation {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    width: 32px;
    height: 32px;
    color: rgba(255, 193, 7, 0.4);
}

.message-quote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
}

.message-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: var(--accent);
    fill: var(--accent);
}

.excellence-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.messages-bg-1,
.messages-bg-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.messages-bg-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(13, 202, 240, 0.05);
    filter: blur(60px);
}

.messages-bg-2 {
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(60px);
}

/* ===== TEACHERS SECTION ===== */
.teachers {
    background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.carousel-nav {
    display: flex;
    gap: 0.75rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(13, 202, 240, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.teachers-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.teachers-carousel::-webkit-scrollbar {
    display: none;
}

.teacher-card {
    flex-shrink: 0;
    width: 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.teacher-card:hover {
    box-shadow: var(--shadow-xl);
}

.teacher-image {
    position: relative;
    height: 288px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.1);
}

.department-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.teacher-email {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.teacher-card:hover .teacher-email {
    opacity: 1;
    transform: translateX(0);
}

.teacher-email:hover {
    background: var(--primary);
    color: var(--white);
}

.teacher-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.teacher-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.teacher-designation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.teacher-designation i {
    color: var(--accent);
}

.teacher-footer {
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.pulse-dot-sm {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.teacher-footer i {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.teacher-card:hover .teacher-footer i {
    color: var(--accent);
    transform: translateX(4px);
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-banner {
    display: block;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.appointment-banner:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.appointment-banner img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.appointment-banner:hover img {
    transform: scale(1.02);
}

.appointment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 202, 240, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.appointment-banner:hover .appointment-overlay {
    opacity: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stats-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
}

.stats-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stats-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 193, 7, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: transform var(--transition-base);
}

.stats-box:hover .stats-icon {
    transform: scale(1.1);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

@media (min-width: 768px) {
    .stats-number { font-size: 3rem; }
}

.stats-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stats-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.5rem 0;
}

.stats-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stats-bg-1,
.stats-bg-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.stats-bg-1 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16rem;
    height: 16rem;
    background: rgba(255, 193, 7, 0.1);
    filter: blur(60px);
}

.stats-bg-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 12rem;
    height: 12rem;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(40px);
}

/* ===== GOVERNING BODY SECTION ===== */
.governing {
    background: rgba(13, 202, 240, 0.03);
}

.chairman-card {
    max-width: 40rem;
    margin: 0 auto 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.crown-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.crown-badge i {
    width: 16px;
    height: 16px;
    color: var(--gray-900);
    fill: var(--gray-900);
}

.chairman-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .chairman-content {
        flex-direction: row;
        text-align: left;
    }
}

.chairman-image img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .chairman-image img {
        width: 160px;
        height: 160px;
    }
}

.chairman-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.chairman-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .chairman-name { font-size: 1.5rem; }
}

.chairman-designation {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.chairman-title {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .members-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .members-grid { grid-template-columns: repeat(5, 1fr); }
}

.member-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.member-image img {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--gray-200);
    transition: border-color var(--transition-fast);
}

.member-card:hover .member-image img {
    border-color: var(--primary);
}

.member-role {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: rgba(13, 202, 240, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.member-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.member-card:hover .member-name {
    color: var(--primary);
}

.member-designation {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-text {
    max-width: 40rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.5rem 0 1rem;
}

@media (min-width: 640px) {
    .cta-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 2.25rem; }
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .cta-description { font-size: 1.125rem; }
}

.cta-bg-1,
.cta-bg-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-bg-1 {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 193, 7, 0.2);
    filter: blur(60px);
}

.cta-bg-2 {
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
        gap: 2.5rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: background var(--transition-fast);
}

.info-card:hover {
    background: var(--gray-100);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.info-content a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 200px;
}

@media (min-width: 1024px) {
    .map-container {
        flex: 1;
        min-height: 200px;
    }
}

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

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-about {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--gray-900);
}

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

.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

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

.footer-contact .contact-item {
    display: flex;
    gap: 0.75rem;
}

.footer-contact .contact-item i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact .contact-item p,
.footer-contact .contact-item a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a,
.footer-bottom-links span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-xl);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: var(--gray-900);
}

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: var(--radius-xl);
}

.lightbox-caption h3 {
    font-size: 1.25rem;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateX(150%);
    transition: transform var(--transition-base);
}

.toast.active {
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.toast-message {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
    .hero-content {
        padding-bottom: 5rem;
    }
    
    .slider-indicators {
        bottom: 4rem;
    }
    
    .hero-stats {
        padding: 0.75rem 0;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}
