/* ============================================
   CHANDRASHEEL CRICKET ACADEMY - STYLESHEET
   ============================================ */

:root {
    --primary: #1a3a5c;
    --primary-dark: #0f2640;
    --accent: #e8600a;
    --accent-light: #ff8c3a;
    --green: #1a7a3a;
    --green-light: #2ecc71;
    --gold: #f0a500;
    --light-bg: #f8fafb;
    --dark-bg: #0f1923;
    --card-shadow: 0 8px 32px rgba(0,0,0,0.08);
    --card-hover: 0 16px 48px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    overflow-x: hidden;
}

.hindi-text {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--accent) !important; }
.bg-accent { background-color: var(--accent) !important; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .top-info span {
    opacity: 0.85;
}

.top-bar .top-info i {
    color: var(--accent);
    margin-right: 4px;
}

.top-bar .top-social a {
    color: #fff;
    margin-left: 12px;
    opacity: 0.7;
    transition: all 0.3s;
}

.top-bar .top-social a:hover {
    opacity: 1;
    color: var(--accent);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.brand-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
}

.brand-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.92rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
}

.btn-admission {
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
}

.btn-admission:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 96, 10, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0a1f33 0%, #1a3a5c 40%, #0f2640 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 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.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232, 96, 10, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(26, 122, 58, 0.1) 0%, transparent 50%);
}

.min-vh-80 { min-height: 75vh; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(232, 96, 10, 0.3); }
    50% { box-shadow: 0 0 40px rgba(232, 96, 10, 0.6); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-hindi {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.hero-location {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.hero-location i {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 96, 10, 0.4);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-cricket-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(232, 96, 10, 0.3);
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   HIGHLIGHTS STRIP
   ============================================ */
.highlights-strip {
    padding: 40px 0;
    background: #fff;
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--light-bg);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: var(--accent);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.highlight-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ============================================
   SECTION TAGS & TITLES
   ============================================ */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(232, 96, 10, 0.1), rgba(240, 165, 0, 0.1));
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(232, 96, 10, 0.2);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.section-intro {
    background: #fff;
}

.intro-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}

.intro-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intro-card {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #e8edf2;
    transition: all 0.4s;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
}

.intro-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.intro-card h5 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.card-1 i { color: var(--accent); }
.card-2 i { color: var(--green); }
.card-3 i { color: var(--gold); }
.card-4 i { color: var(--primary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 96, 10, 0.35);
    color: #fff;
}

/* ============================================
   LEADERS SECTION
   ============================================ */
.section-leaders {
    background: var(--light-bg);
}

.leader-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #fff;
}

.leader-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.leader-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.leader-org {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.leader-bio {
    color: #777;
    font-size: 0.9rem;
    margin-top: 10px;
}

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

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(232, 96, 10, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 96, 10, 0.4);
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--green));
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-header .breadcrumb {
    background: none;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   ABOUT PAGE - FEATURES GRID
   ============================================ */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid #e8edf2;
    transition: all 0.4s;
    box-shadow: var(--card-shadow);
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.about-feature h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-feature p {
    font-size: 0.88rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ============================================
   FACILITY CARDS
   ============================================ */
.section-facility {
    background: var(--light-bg);
}

.facility-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: var(--accent);
}

.facility-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.facility-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.facility-card p {
    font-size: 0.95rem;
    color: #6c757d;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.facility-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.facility-features li:last-child {
    border-bottom: none;
}

.facility-features li i {
    color: var(--green);
    margin-right: 8px;
}

/* ============================================
   ACTIVITY CARDS
   ============================================ */
.section-alt {
    background: var(--light-bg);
}

.activity-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
    text-align: center;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: var(--green);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.activity-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 0.93rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Co-curricular Cards */
.cocurricular-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
}

.cocurricular-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: var(--accent);
}

.cc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #fff;
}

.cocurricular-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cocurricular-card p {
    font-size: 0.88rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Tour Cards */
.tour-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 25px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    transition: all 0.4s;
    text-align: center;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
    border-color: var(--primary);
}

.tour-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.tour-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-card p {
    font-size: 0.93rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Program Cards */
.program-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover);
}

.program-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(232, 96, 10, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.program-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.93rem;
    color: #6c757d;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
}

.program-features li i {
    color: var(--green);
    margin-right: 8px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
    margin-bottom: 30px;
}

.filter-btn {
    background: #e8edf2;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 4px;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #fff;
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 250px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: var(--card-shadow);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover);
}

.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s;
}

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

.gallery-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-card:hover .gallery-label {
    opacity: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid #e8edf2;
    transition: all 0.3s;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(232, 96, 10, 0.15);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 40px;
    color: #fff;
    height: 100%;
}

.contact-info-wrapper h3 {
    color: #fff;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.ci-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1rem;
}

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

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

.social-icon-lg {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon-lg:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* ============================================
   ADMISSION FORM
   ============================================ */
.admission-form-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #fff;
}

.form-section {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid #e8edf2;
}

.form-section-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.form-section-title i {
    color: var(--accent);
    margin-right: 8px;
}

.admission-form-wrapper .form-control,
.admission-form-wrapper .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid #e0e5ec;
    transition: all 0.3s;
}

.admission-form-wrapper .form-control:focus,
.admission-form-wrapper .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(232, 96, 10, 0.15);
}

/* ============================================
   ADMIN PAGE
   ============================================ */
.admin-stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.admin-stat-card h3 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
}

.admin-table-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
}

.admin-table thead {
    background: var(--primary);
    color: #fff;
}

.admin-table thead th {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 10px;
    white-space: nowrap;
}

.admin-table tbody td {
    font-size: 0.88rem;
    padding: 10px;
    vertical-align: middle;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

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

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-form-wrapper {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf2;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: #fff;
}

.login-form-wrapper .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid #e8edf2;
    transition: all 0.3s;
}

.login-form-wrapper .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(232, 96, 10, 0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }

    .intro-card-grid,
    .about-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .top-bar .top-info {
        font-size: 0.75rem;
    }

    .contact-form-wrapper,
    .admission-form-wrapper {
        padding: 25px 20px;
    }

    .form-section {
        padding: 15px;
    }

    .intro-card-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.highlight-card,
.facility-card,
.activity-card,
.gallery-card,
.leader-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
