/* ============================================================
   VJEET MUSHROOM
   Main Stylesheet - Green Theme
   Location: vjeet-mushroom/assets/css/style.css
   ============================================================ */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary:       #2d6a4f;
    --primary-dark:  #1b4332;
    --primary-light: #52b788;
    --primary-bg:    #d8f3dc;
    --accent:        #74c69d;
    --white:         #ffffff;
    --light-bg:      #f8f9fa;
    --dark:          #212529;
    --text-muted:    #6c757d;
    --border:        #dee2e6;
    --shadow:        0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover:  0 8px 30px rgba(0,0,0,0.15);
    --radius:        12px;
    --radius-sm:     8px;
    --transition:    all 0.3s ease;
}

/* ---- Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.navbar-brand img { transition: var(--transition); }
.brand-text { font-size: 20px; font-weight: 700; }

.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark) !important;
    padding: 6px 14px !important;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-bg);
}

.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.nav-icon-btn:hover { background: var(--primary-bg); color: var(--primary); }

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 13px; }

.lang-btn {
    color: var(--text-muted);
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active { color: var(--primary); background: var(--primary-bg); }

.lang-divider { color: var(--border); }

.search-bar-wrapper {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1040;
    display: none;
    border-top: 2px solid var(--primary);
}

.search-bar-wrapper.active { display: block; }
.search-bar-form { position: relative; }

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 50px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.live-search-results.show { display: block; }

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover { background: var(--primary-bg); }
.search-result-item:last-child { border-bottom: none; }

/* ============================================================
   HERO SECTION (index.php only - DO NOT change)
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(45,106,79,0.75) 100%),
                url('../images/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.88);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; color: white; }
.hero-stat .number { font-size: 28px; font-weight: 700; color: var(--accent); display: block; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ============================================================
   SECTION STYLES — REDUCED PADDING
   ============================================================ */
.section-padding    { padding: 40px 0; }
.section-padding-sm { padding: 20px 0; }

.section-header { text-align: center; margin-bottom: 25px; }

.section-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   PAGE HEADER BANNER — REDUCED HEIGHT (inner pages only)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 22px 0;
    margin-bottom: 25px;
}

.page-header h1 {
    color: white;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 5px;
}

.page-header .breadcrumb { background: none; padding: 0; margin: 0; }
.page-header .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 13px; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item a:hover { color: white; }
.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.course-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.course-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.course-card-body { padding: 20px; }

.course-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.badge-free { background: #d8f3dc; color: var(--primary); }
.badge-paid { background: #fff3cd; color: #856404; }

.course-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }

.course-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.course-price { font-size: 18px; font-weight: 700; color: var(--primary); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--light-bg);
}

.product-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img { transform: scale(1.05); }

.product-card-body { padding: 18px; }

.product-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.4; }
.product-price { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--light-bg);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.btn-success { background-color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-success:hover { background-color: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }
.btn-outline-success { color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-success:hover { background-color: var(--primary) !important; border-color: var(--primary) !important; color: white !important; }
.text-success { color: var(--primary) !important; }
.bg-success { background-color: var(--primary) !important; }
.border-success { border-color: var(--primary) !important; }

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.why-card {
    text-align: center;
    padding: 25px 20px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-title { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: auto;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 45px;
    color: var(--primary-bg);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 10px; }

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-bg);
}

.testimonial-name { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.testimonial-stars { color: #ffc107; font-size: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-dark); }
.footer-main { padding: 20px 0 15px; }

.footer-tagline { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; margin-bottom: 15px; }

.footer-contact-info p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.footer-contact-info a { color: rgba(255,255,255,0.75); }
.footer-contact-info a:hover { color: var(--accent); }

.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-links a i { font-size: 10px; color: var(--accent); }
.footer-hours { color: rgba(255,255,255,0.7); font-size: 14px; }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover { background: var(--primary-light); color: white; transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }

.footer-bottom-link { color: rgba(255,255,255,0.6); font-size: 13px; transition: var(--transition); }
.footer-bottom-link:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 9998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover { background: #128c7e; color: white; transform: scale(1.1); }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast { min-width: 300px; border-radius: var(--radius-sm); font-size: 14px; }
.toast.bg-success { background: var(--primary) !important; }
.toast.bg-danger  { background: #dc3545 !important; }
.toast.bg-warning { background: #ffc107 !important; }
.toast.bg-info    { background: #0dcaf0 !important; }

/* ============================================================
   FORMS
   ============================================================ */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(45,106,79,0.15);
}

.form-label { font-weight: 500; font-size: 14px; color: var(--dark); margin-bottom: 6px; }

.form-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 220px;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,67,50,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i { color: white; font-size: 28px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress { height: 8px; border-radius: 4px; background: var(--primary-bg); }
.progress-bar { background: var(--primary); border-radius: 4px; }

/* ============================================================
   DASHBOARD STATS
   ============================================================ */
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-number { font-size: 32px; font-weight: 700; color: var(--primary); display: block; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

.filter-tab {
    padding: 7px 18px;
    border-radius: 25px;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ============================================================
   ALERTS & BADGES
   ============================================================ */
.alert-success { background: #d8f3dc; border-color: var(--primary-light); color: var(--primary-dark); }

.badge-success-custom {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================
   CART
   ============================================================ */
.cart-item {
    background: white;
    border-radius: var(--radius-sm);
    padding: 15px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.cart-item:hover { box-shadow: var(--shadow); }

.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }

.qty-control { display: flex; align-items: center; gap: 8px; }

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }

.qty-input { width: 50px; text-align: center; border: 1px solid var(--border); border-radius: 6px; padding: 4px; font-size: 14px; }

/* ============================================================
   ORDER SUMMARY BOX
   ============================================================ */
.order-summary-box {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: sticky;
    top: 90px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.order-summary-row:last-child { border-bottom: none; }
.order-total { font-size: 20px; font-weight: 700; color: var(--primary); }

/* ============================================================
   EVENTS
   ============================================================ */
.event-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.event-img-wrapper { height: 200px; overflow: hidden; }
.event-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-card:hover .event-img-wrapper img { transform: scale(1.05); }
.event-card-body { padding: 20px; }

.event-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0; }

.event-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.event-meta-item i { color: var(--primary); font-size: 12px; }

/* ============================================================
   LIGHTBOX (Gallery)
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.show { display: flex; }

.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-section { min-height: 70vh; padding: 60px 0; }
    .section-padding { padding: 30px 0; }
    .footer-main { padding: 20px 0 15px; }
    .form-card { padding: 20px; }
    .page-header { padding: 18px 0; margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 26px; }
    .hero-stats { gap: 20px; }
    .hero-stat .number { font-size: 22px; }
    .section-padding { padding: 25px 0; }
    .order-summary-box { position: static; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 22px; bottom: 20px; right: 15px; }
    .page-header { padding: 15px 0; margin-bottom: 15px; }
    .page-header h1 { font-size: 20px; }
}

@media (max-width: 575px) {
    .form-card { padding: 15px; }
    .course-card-body { padding: 15px; }
    .product-card-body { padding: 14px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-primary-custom  { color: var(--primary) !important; }
.bg-primary-custom    { background-color: var(--primary) !important; }
.bg-light-green       { background-color: var(--primary-bg) !important; }
.border-radius-custom { border-radius: var(--radius) !important; }
.shadow-custom        { box-shadow: var(--shadow) !important; }

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn 0.5s ease-in-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* ============================================================
   AUTO ANIMATION — Initial hidden state prevent layout shift
   ============================================================ */
.course-card,
.course-card-new,
.product-card,
.product-card-new,
.why-card,
.why-card-new,
.testimonial-card,
.testimonial-card-new,
.event-card,
.event-card-new,
.gallery-item,
.stat-card,
.about-stat-card {
    will-change: opacity, transform;
}
/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #16a34a;
    box-shadow: 0 4px 15px rgba(22,163,74,0.12);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-info-body h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.contact-info-body p,
.contact-info-body a {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 0;
    text-decoration: none;
}

.contact-info-body a:hover {
    color: #16a34a;
}