/* ═══════════════════════════════════════════════════════════
   Sunny Start Home Daycare — Main Stylesheet
   daycare.suleymanov.work
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables (Light Theme) ─── */
:root {
    --primary: #FF6B35;
    --primary-dark: #e55a2b;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --accent-pink: #FF6B9D;
    --dark: #2C3E50;
    --darker: #1a252f;
    --light: #FFF8F0;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --text-primary: #2C3E50;
    --text-secondary: #6c757d;
    --text-muted: #8e99a4;
    --bg-body: #FFF8F0;
    --bg-card: #ffffff;
    --bg-section: #f5f0eb;
    --bg-hero-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 50%, #FFE66D 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 35px rgba(255,107,53,0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
    --font-primary: 'Nunito', sans-serif;
    --font-heading: 'Fredoka One', cursive;
    --navbar-bg: rgba(255,255,255,0.95);
    --navbar-text: #2C3E50;
    --footer-bg: #2C3E50;
    --footer-text: #cbd5e0;
}

/* ─── Dark Theme ─── */
[data-theme="dark"] {
    --primary: #FF8E53;
    --dark: #e2e8f0;
    --darker: #f7fafc;
    --light: #1a1a2e;
    --text-primary: #e2e8f0;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --bg-body: #0f0f23;
    --bg-card: #16213e;
    --bg-section: #1a1a2e;
    --bg-hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-hover: 0 12px 35px rgba(255,142,83,0.15);
    --navbar-bg: rgba(15,15,35,0.95);
    --navbar-text: #e2e8f0;
    --footer-bg: #0a0a1a;
    --footer-text: #a0aec0;
    --gray-100: #1a1a2e;
    --gray-200: #16213e;
    --gray-300: #1e3a5f;
    --gray-400: #2a4a7f;
    --gray-700: #a0aec0;
    --gray-800: #cbd5e0;
    --white: #16213e;
}

[data-theme="dark"] .navbar-light {
    background: var(--navbar-bg) !important;
}
[data-theme="dark"] .navbar-light .nav-link,
[data-theme="dark"] .navbar-light .navbar-brand {
    color: var(--navbar-text) !important;
}
[data-theme="dark"] .dropdown-menu {
    background: var(--bg-card);
    border-color: var(--gray-300);
}
[data-theme="dark"] .dropdown-item {
    color: var(--text-primary);
}
[data-theme="dark"] .dropdown-item:hover {
    background: var(--gray-200);
}
[data-theme="dark"] .card,
[data-theme="dark"] .modal-content {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--gray-300);
}
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background: var(--bg-section);
    color: var(--text-primary);
    border-color: var(--gray-300);
}
[data-theme="dark"] .text-muted { color: var(--text-muted) !important; }
[data-theme="dark"] .text-dark { color: var(--text-primary) !important; }
[data-theme="dark"] .bg-light { background: var(--bg-section) !important; }
[data-theme="dark"] .bg-white { background: var(--bg-card) !important; }
[data-theme="dark"] .alert-info { background: var(--gray-200); color: var(--text-primary); border-color: var(--gray-300); }
[data-theme="dark"] .breadcrumb-item a { color: var(--primary); }
[data-theme="dark"] .breadcrumb-item.active { color: var(--text-secondary); }
[data-theme="dark"] .table { color: var(--text-primary); }
[data-theme="dark"] .badge.bg-light { background: var(--gray-200) !important; color: var(--text-primary) !important; }
[data-theme="dark"] .list-group-item { background: var(--bg-card); color: var(--text-primary); border-color: var(--gray-300); }
[data-theme="dark"] .accordion-item { background: var(--bg-card); border-color: var(--gray-300); }
[data-theme="dark"] .accordion-button { background: var(--bg-card); color: var(--text-primary); }
[data-theme="dark"] .accordion-button:not(.collapsed) { background: var(--gray-200); }

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-primary); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; position: relative; display: inline-block; }
.section-title h2::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--primary); border-radius: 2px; margin: 12px auto 0;
}
.section-title p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── Navbar ─── */
#mainNav {
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    box-shadow: none;
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}
#mainNav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 6px 0;
}
.navbar-brand {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-heading); color: var(--primary) !important;
}
.brand-icon { font-size: 1.8rem; }
.brand-text { font-size: 1.3rem; color: var(--primary) !important; }
.brand-sub { font-size: 0.75rem; color: var(--text-secondary); margin-top: 3px; }
.nav-link {
    font-weight: 700; color: var(--navbar-text) !important;
    padding: 8px 14px !important; border-radius: var(--radius-sm);
    font-size: 0.92rem; transition: var(--transition);
}
.nav-link:hover { color: var(--primary) !important; background: rgba(255,107,53,0.08); }
.btn-portal {
    background: var(--primary); color: #fff !important;
    border: none; padding: 8px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.88rem; transition: var(--transition);
}
.btn-portal:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,53,0.3); }
.btn-theme-toggle {
    background: none; border: 2px solid var(--gray-300);
    color: var(--text-primary); width: 38px; height: 38px;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: var(--transition);
    font-size: 0.95rem; padding: 0;
}
.btn-theme-toggle:hover { border-color: var(--primary); color: var(--primary); transform: rotate(20deg); }
.lang-switch { font-size: 0.9rem; }
.lang-current { font-weight: 800; }

/* ─── Page Hero ─── */
.page-hero {
    background: var(--bg-hero-gradient);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.page-hero h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.15); position: relative; }
.page-hero .lead { font-size: 1.2rem; opacity: 0.95; position: relative; }
.portal-hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

/* ─── Hero Section (Home) ─── */
.hero-section {
    background: var(--bg-hero-gradient);
    min-height: 100vh;
    display: flex; align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-section::before {
    content: ''; position: absolute; bottom: -5%;
    left: 0; right: 0; height: 120px;
    background: var(--bg-body);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-section h1 { font-size: 3.5rem; line-height: 1.2; text-shadow: 0 3px 15px rgba(0,0,0,0.15); }
.hero-section .lead { font-size: 1.3rem; opacity: 0.95; }
.hero-badges .badge {
    padding: 10px 18px; font-size: 0.85rem; font-weight: 700;
    border-radius: 50px; margin: 4px;
}
.hero-image-placeholder {
    width: 100%; max-width: 480px; height: 380px;
    background: rgba(255,255,255,0.15); border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px); border: 2px solid rgba(255,255,255,0.2);
    margin: 0 auto;
}
.hero-image-placeholder i { font-size: 5rem; opacity: 0.4; }
.hero-stats { display: flex; gap: 30px; margin-top: 30px; }
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-family: var(--font-heading); font-size: 2rem; display: block; }
.hero-stat .stat-label { font-size: 0.8rem; opacity: 0.8; }
.btn-hero {
    padding: 14px 36px; border-radius: 50px; font-weight: 800;
    font-size: 1.05rem; transition: var(--transition);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-light.btn-hero:hover { background: #fff; color: var(--primary); }

/* ─── Feature Cards ─── */
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.feature-icon {
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-icon.icon-safety { background: #ffecd2; color: #FF6B35; }
.feature-icon.icon-edu { background: #d4f4dd; color: #28a745; }
.feature-icon.icon-meals { background: #ffd4e5; color: #e83e8c; }
.feature-icon.icon-cam { background: #d4e5ff; color: #007bff; }
.feature-icon.icon-outdoor { background: #e8d4ff; color: #6f42c1; }
.feature-icon.icon-reports { background: #d4f4f4; color: #17a2b8; }

/* ─── Program Cards ─── */
.program-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #fff;
}
.program-card-img.infant { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.program-card-img.toddler { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.program-card-img.preschool { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.program-card-img.afterschool { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.program-card-body { padding: 25px; }
.program-card-body h4 { margin-bottom: 4px; }
.program-age { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }

/* ─── Pricing Cards ─── */
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.pricing-card.featured::before {
    content: '★ MOST POPULAR'; position: absolute; top: 20px; right: -35px;
    background: var(--primary); color: #fff; padding: 4px 40px;
    font-size: 0.7rem; font-weight: 800; transform: rotate(45deg);
    letter-spacing: 1px;
}
.pricing-price { font-family: var(--font-heading); font-size: 3rem; color: var(--primary); margin: 15px 0 5px; }
.pricing-period { color: var(--text-secondary); font-size: 0.9rem; }
.pricing-features { list-style: none; padding: 0; margin: 25px 0; text-align: left; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.92rem; }
.pricing-features li i { color: var(--secondary); margin-right: 8px; width: 18px; text-align: center; }

/* ─── Testimonial Cards ─── */
.testimonial-card, .testimonial-card-full {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.testimonial-card:hover, .testimonial-card-full:hover { box-shadow: var(--shadow-md); }
.testimonial-card blockquote, .testimonial-card-full blockquote {
    font-style: italic; color: var(--text-secondary);
    margin-bottom: 15px; font-size: 0.95rem; line-height: 1.7;
}
.testimonial-author strong { display: block; color: var(--text-primary); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* ─── FAQ Accordion ─── */
.faq-accordion .accordion-item {
    border: none; margin-bottom: 12px; border-radius: var(--radius-sm) !important;
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
    font-weight: 700; font-family: var(--font-primary);
    padding: 18px 24px; font-size: 1rem; color: var(--text-primary);
    border: none; background: var(--bg-card);
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: var(--bg-card); box-shadow: none; }
.faq-accordion .accordion-button::after { filter: hue-rotate(180deg); }
.faq-accordion .accordion-body { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.8; background: var(--bg-card); }

/* ─── Gallery ─── */
.gallery-filters { text-align: center; margin-bottom: 30px; }
.gallery-filters .btn {
    margin: 4px; border-radius: 50px; padding: 8px 22px;
    font-weight: 700; font-size: 0.88rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    position: relative; height: 250px;
    background: var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 2rem; }

/* ─── Live Camera ─── */
.livecam-preview {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.cam-feed {
    background: #1a1a2e; aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    position: relative; border-radius: var(--radius-sm);
    overflow: hidden;
}
.cam-feed .placeholder-cam {
    color: var(--gray-500); text-align: center;
}
.cam-feed .placeholder-cam i { font-size: 3rem; margin-bottom: 10px; display: block; }
.cam-live-badge {
    position: absolute; top: 12px; left: 12px;
    background: #dc3545; color: #fff;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 800;
    animation: livePulse 2s infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.cam-name {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.6); color: #fff;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
}
.cam-timestamp {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.6); color: #0f0;
    padding: 4px 10px; border-radius: 50px;
    font-size: 0.72rem; font-family: monospace;
}
.subscription-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: #fff; border-radius: var(--radius); padding: 30px;
    text-align: center;
}

/* ─── Event Cards ─── */
.event-card-full {
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.event-card-full:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.event-date-block {
    background: var(--primary);
    color: #fff; padding: 20px 25px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-width: 110px;
}
.event-month { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; opacity: 0.9; }
.event-day-big { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1; }
.event-weekday { font-size: 0.7rem; opacity: 0.8; }
.event-details { padding: 20px 25px; }
.event-details h4 { margin-bottom: 6px; font-size: 1.1rem; }
.event-details p { color: var(--text-secondary); margin: 0; font-size: 0.92rem; }

/* ─── Meal Cards ─── */
.meal-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.meal-day-header {
    background: var(--secondary);
    color: #fff; padding: 12px 20px;
}
.meal-day-header h4 { margin: 0; font-size: 1.1rem; }
.meal-item { text-align: center; }
.meal-type {
    display: block; color: var(--primary);
    font-weight: 800; font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ─── Staff Cards ─── */
.staff-card-full {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.staff-card-full:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.staff-avatar { color: var(--primary); margin-bottom: 15px; }
.staff-certs { margin-top: 15px; }

/* ─── Report Cards (Parent Portal) ─── */
.report-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.report-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff; padding: 15px 25px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.report-date { font-size: 0.85rem; opacity: 0.9; }
.report-body { padding: 20px 25px; }
.report-section { margin-bottom: 10px; }
.report-section h6 { font-family: var(--font-primary); font-weight: 800; font-size: 0.88rem; margin-bottom: 4px; }
.report-section p { color: var(--text-secondary); margin: 0; font-size: 0.92rem; }

/* ─── Blog ─── */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    height: 200px; background: var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--gray-500);
}
.blog-card-body { padding: 20px; }
.blog-card-body h5 a { color: var(--text-primary); }
.blog-card-body h5 a:hover { color: var(--primary); }
.blog-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-article { line-height: 1.9; font-size: 1.05rem; }
.blog-article h2, .blog-article h3 { margin-top: 30px; margin-bottom: 15px; }
.social-sync-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bg-section); border-radius: 50px;
    padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
    color: var(--text-secondary);
}
.social-share-buttons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    color: #fff; font-size: 1rem;
    transition: var(--transition);
}
.social-share-buttons a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-tiktok { background: #000; }

/* ─── Enrollment Wizard ─── */
.enrollment-steps {
    display: flex; justify-content: center; gap: 20px;
    margin-bottom: 40px; flex-wrap: wrap;
}
.step-indicator {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-weight: 700; font-size: 0.88rem;
    transition: var(--transition);
}
.step-indicator .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-200); display: flex;
    align-items: center; justify-content: center;
    font-weight: 800; transition: var(--transition);
}
.step-indicator.active { color: var(--primary); }
.step-indicator.active .step-num { background: var(--primary); color: #fff; }
.step-indicator.completed .step-num { background: var(--secondary); color: #fff; }
.enrollment-step { display: none; }
.enrollment-step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Contact Info Cards ─── */
.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-info-card .info-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,107,53,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 15px;
}

/* ─── Schedule Table ─── */
.schedule-table {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.schedule-table th {
    background: var(--primary);
    color: #fff; font-weight: 700;
    padding: 14px 20px; border: none;
}
.schedule-table td {
    padding: 12px 20px;
    border-color: var(--gray-200);
    vertical-align: middle;
}
.schedule-table tbody tr:hover { background: rgba(255,107,53,0.04); }

/* ─── Review Summary ─── */
.review-summary {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

/* ─── About Timeline ─── */
.timeline-item {
    display: flex; gap: 20px;
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: -30px;
    width: 3px; background: var(--gray-300);
}
.timeline-item::after {
    content: '';
    position: absolute; left: -5px; top: 8px;
    width: 13px; height: 13px;
    border-radius: 50%; background: var(--primary);
    border: 3px solid var(--bg-body);
}
.timeline-item:last-child::before { display: none; }

/* ─── Certifications ─── */
.cert-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-card); border-radius: var(--radius-sm);
    padding: 12px 20px; box-shadow: var(--shadow-sm);
    font-weight: 700; font-size: 0.9rem;
}

/* ─── CTA Section ─── */
.cta-section {
    background: var(--bg-hero-gradient);
    color: #fff; padding: 60px 0; text-align: center;
}
.cta-section h2 { color: #fff; }

/* ─── Buttons ─── */
.btn-primary {
    background: var(--primary); border-color: var(--primary);
    font-weight: 700; border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 700; border-radius: var(--radius-sm); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); }
.btn-lg { padding: 12px 32px; font-size: 1rem; }

/* ─── Login Page ─── */
.login-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.login-left {
    background: var(--bg-hero-gradient);
    color: #fff; padding: 50px 35px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.login-right { padding: 50px 35px; }
.demo-accounts .demo-account {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 12px 16px; margin-bottom: 8px;
    cursor: pointer; transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.demo-accounts .demo-account:hover { border-color: var(--primary); background: rgba(255,107,53,0.05); }

/* ─── Footer ─── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-top { padding: 60px 0 30px; }
.footer-top h5 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--footer-text); font-size: 0.92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; font-size: 0.92rem; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--primary); margin-top: 3px; }
.social-links { display: flex; gap: 12px; margin-top: 15px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); font-size: 0.95rem;
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; }
.footer-bottom a { color: var(--footer-text); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--primary); }
.newsletter-form .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.footer-app-badges img { transition: var(--transition); }
.footer-app-badges img:hover { transform: scale(1.05); }

/* ─── Misc ─── */
.map-placeholder {
    background: var(--gray-200); height: 300px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
}
.counter-number { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); }
.social-sync-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: var(--radius); color: #fff; padding: 25px 30px;
}
.app-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    border-radius: var(--radius); color: #fff; padding: 30px;
    text-align: center;
}
.app-qr-placeholder {
    width: 120px; height: 120px;
    background: #fff; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}

/* ─── Lightbox ─── */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9);
    z-index: 9999; display: none; align-items: center; justify-content: center;
    cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 90vh; border-radius: 8px; }

/* ─── Animations ─── */
.bounce-hover { transition: var(--transition); }
.bounce-hover:hover { animation: bounce 0.5s; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .hero-section h1 { font-size: 2.5rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 15px; flex-wrap: wrap; }
    .section-title h2 { font-size: 2rem; }
    .navbar-collapse { background: var(--bg-card); border-radius: var(--radius); padding: 15px; margin-top: 10px; box-shadow: var(--shadow-lg); }
    .event-card-full { flex-direction: column; }
    .event-date-block { flex-direction: row; gap: 10px; min-width: auto; padding: 12px 20px; }
    .enrollment-steps { gap: 8px; }
    .step-indicator span:not(.step-num) { display: none; }
}
@media (max-width: 575.98px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-section h1 { font-size: 2rem; }
    .section-padding { padding: 50px 0; }
    .pricing-price { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-image-placeholder { height: 250px; }
    .login-left { padding: 30px 20px; }
    .login-right { padding: 30px 20px; }
}

/* ─── Print ─── */
@media print {
    .site-header, .site-footer, .btn, .social-links { display: none !important; }
    body { background: #fff; color: #000; }
    .page-hero { padding: 20px 0; background: none; color: #000; }
    .report-header { background: none; color: #000; border-bottom: 2px solid #000; }
}
