/* assets/css/style.css */

/* --- 1. Variables and Reset --- */
:root {
    --primary-color: #66BB6A; 
    --secondary-color: #A5D6A7; 
    --accent-color: #43A047; 
    --text-dark: #333; 
    --text-light: #fff;
    --bg-light: #F9FFF9; 
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* NEW: fixed notification bar height */
    --notif-h: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light); 
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* space for fixed notification bar */
    padding-top: var(--notif-h);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --- 2. Utility Classes --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* --- 3. Notification Bar Styling --- */
.notification-bar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  height: var(--notif-h);
  display: flex;
  align-items: center;
  /* full-width strip */
  width: 100vw;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: var(--text-light);
  text-align: center;
  padding: 0 12px;
  font-size: 0.9em;
  animation: pulse 2s infinite;
  overflow: hidden;
}
.notification-bar::before{
  content:'';
  position:absolute; inset:0 auto 0 -100%;
  width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

.notification-bar .container{
  max-width: 100% !important;
  width:100%;
  padding:0;
}

.notification-bar .notif-text{
  display:block; white-space:nowrap; width:100%;
  overflow:hidden;
}
.notification-bar .notif-text > span{
  display:inline-block; padding-left:100%;
  animation: notifScroll 22s linear infinite;
}
@keyframes notifScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.85} }
@keyframes shimmer { 0%{left:-100%} 100%{left:100%} }

/* --- 4. Header & Navigation --- */
.header-main {
    background-color: var(--text-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: var(--notif-h);   /* header just below fixed bar */
    z-index: 1400;        /* above slider */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo img { height: 45px; transition: var(--transition); }
.logo img:hover { transform: scale(1.05); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1500; /* ensure clickable above everything */
    padding: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links > li { position: relative; padding: 10px 18px; }

.nav-links > li > a {
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a:hover { color: var(--primary-color); }

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background-color: var(--text-light);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    z-index: 10;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    animation: fadeInDown 0.3s;
}
@keyframes fadeInDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    transition: var(--transition);
}
.dropdown-content a:hover { background-color: var(--bg-light); color: var(--primary-color); padding-left: 25px; }

.nav-links li:hover .dropdown-content { display: block; }

/* Megamenu Styles */
.megamenu {
    display: none;
    position: absolute;
    top: 100%; left: -480px;
    width: 700px;
    background-color: var(--text-light);
    box-shadow: var(--shadow-md);
    z-index: 10;
    border-top: 3px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 0 8px 8px;
    animation: fadeInDown 0.3s;
}
.nav-links li:hover .megamenu { display: flex; gap: 30px; }

.megamenu-col { flex: 1; }
.megamenu-col h4 {
    color: var(--text-dark);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 700;
}
.megamenu-col ul { list-style: none; }
.megamenu-col ul li { margin-bottom: 10px; }
.megamenu-col ul li a {
    display: flex; align-items: center; padding: 8px 5px;
    color: var(--text-dark); transition: var(--transition); border-radius: 4px;
}
.megamenu-col ul li a:hover { background-color: var(--bg-light); padding-left: 10px; }
.megamenu-col ul li a i { margin-right: 10px; color: var(--primary-color); font-size: 1.1em; }

/* --- 5. Homepage Sections Styling --- */
/* Hero Slider */
.hero-slider {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    width: 100%;
    aspect-ratio: 32 / 10; /* ≈1920x600 look on desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.dynamic-banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0; z-index: 1; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    text-align: center; color: var(--text-light);
}
.dynamic-banner-slide:first-child { opacity: 1; z-index: 2; }

.dynamic-banner-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.1));
    z-index: 1;
}

.slide-content { position: relative; z-index: 3; padding: 20px; }
.slide-content h1 { font-size: 2.5em; margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0,0,0,.3); }
.slide-content p  { font-size: 1.2em; text-shadow: 1px 1px 4px rgba(0,0,0,.3); }
/* --- Slider Dots (manual pagination) --- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 0;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfcfcf;
    opacity: 0.8;
    cursor: pointer;
    padding: 0;
}
.slider-dot.active {
    background: #333;
    opacity: 1;
}
@media (max-width: 768px) {
    .slider-dot { width: 9px; height: 9px; }
}

/* Course Promotion */
.course-promo {
    background: linear-gradient(135deg, #ffffff, var(--bg-light));
    border: 2px solid var(--secondary-color);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.course-promo h2 { color: var(--accent-color); margin-bottom: 20px; font-size: 2em; }
.course-promo p  { font-size: 1.1em; margin-bottom: 25px; }

/* Section Title */
.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Social Media Section */
.social-media-info {
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #f0fdf0, #e8f5e9);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.social-links-big {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex; align-items: center;
    padding: 14px 28px; border-radius: 50px;
    color: white; font-weight: 700;
    box-shadow: var(--shadow-md); text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.social-icon i { font-size: 1.6em; margin-right: 12px; }

.youtube-color { background: linear-gradient(135deg, #FF0000, #cc0000); }
.instagram-color { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.telegram-color { background: linear-gradient(135deg, #0088CC, #006699); }
.facebook-color { background: linear-gradient(135deg, #3b5998, #2d4373); }

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.platform-card {
    background-color: var(--text-light);
    border: 1px solid #eee; border-radius: 12px;
    padding: 30px 20px; text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.platform-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.platform-card i { font-size: 3em; color: var(--primary-color); margin-bottom: 15px; }
.platform-card h4 { color: var(--text-dark); margin: 15px 0 10px; font-size: 1.3em; font-weight: 700; }
.platform-card p { color: #666; font-size: 0.95em; line-height: 1.5; }

/* ===== Apps Download Section (for index.php new block) ===== */
.apps-download {
    padding: 50px 0;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #f0fdf0, #e8f5e9);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.app-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.app-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--text-dark);
}
.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.app-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 44px;
    box-shadow: var(--shadow-sm);
}
.app-meta h4 {
    font-size: 1.05em;
    margin: 0 0 2px 0;
    line-height: 1.1;
    color: var(--text-dark);
}
.app-store {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.92em;
    color: var(--accent-color);
}

/* Testimonials */
.testimonials { padding: 50px 0; margin-bottom: 50px; }
.testimonial-scroll-container {
    overflow-x: auto; overflow-y: hidden;
    padding-bottom: 20px; margin-top: 30px;
    -webkit-overflow-scrolling: touch; scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0; white-space: nowrap;
}
.testimonial-scroll-container::-webkit-scrollbar { height: 8px; }
.testimonial-scroll-container::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 10px; }
.testimonial-scroll-container::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }
.testimonial-grid { display: inline-flex; gap: 25px; }

.testimonial-item {
    flex: 0 0 350px; background-color: var(--text-light);
    border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-md); transition: var(--transition);
    white-space: normal;
}
.testimonial-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

.video-embed { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- 6. Footer Styling --- */
.footer-main {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 50px 0 20px 0;
    margin-top: 60px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
}
.footer-col { flex: 1 1 250px; }
.footer-col h4 { color: var(--text-dark); margin-bottom: 20px; font-size: 1.3em; font-weight: 700; }

/* QUICK LINKS: 6-per-column auto grid */
.footer-quick-links {
    list-style: none;
    padding: 0;
    display: grid;
    grid-auto-flow: column;                 /* fill down then create new column */
    grid-template-rows: repeat(6, auto);    /* 6 rows => 6 links per column */
    column-gap: 40px;
    row-gap: 10px;
}
.footer-quick-links li { break-inside: avoid; }
.footer-quick-links a {
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}
.footer-quick-links a:hover { color: var(--text-light); transform: translateX(5px); }

• /* Contact on right (desktop) */
.footer-col-contact { justify-self: end; }
.contact-info p { margin-bottom: 12px; line-height: 1.8; }

.social-links a { display: inline-block; margin-right: 15px; font-size: 1.6em; color: var(--text-light); transition: var(--transition); }
.social-links a:hover { transform: scale(1.2); opacity: 0.8; }

.footer-bottom {
    text-align: center; padding-top: 25px; margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.95em;
}

/* Support Page */
.support-box {
    background-color: var(--text-light);
    border: 2px solid var(--secondary-color);
    border-left: 6px solid var(--primary-color);
    padding: 35px; border-radius: 12px;
    box-shadow: var(--shadow-md); margin: 30px 0;
}
.support-list-full li { padding: 15px 0; border-bottom: 1px dashed #ddd; font-size: 1.05em; }
.support-list-full li i { color: var(--primary-color); margin-right: 15px; font-size: 1.2em; }
.support-list-full strong { color: var(--accent-color); }

/* Query Popup */
#query-trigger-btn {
    position: fixed;
    bottom: 30px; right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border: none; padding: 16px 28px; border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-size: 1.1em; font-weight: 700; cursor: pointer;
    z-index: 1000; transition: var(--transition);
}
#query-trigger-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
#query-trigger-btn i { margin-right: 8px; }

#query-popup {
    position: fixed; bottom: 100px; right: 20px;
    width: 320px; background-color: var(--text-light);
    border-radius: 15px; box-shadow: var(--shadow-lg);
    padding: 25px; z-index: 1001; animation: slideUp .3s;
}
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.popup-box { text-align: center; }
.popup-box h3 { color: var(--accent-color); margin-bottom: 10px; }
.popup-box p { font-size: 0.95em; color: #666; margin-bottom: 20px; }

.popup-btn {
    display: block; width: 100%;
    margin: 12px 0; padding: 14px;
    border-radius: 10px; font-weight: 700;
    text-align: center; text-decoration: none;
    transition: var(--transition); font-size: 1em;
}
.whatsapp-btn { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: var(--shadow-sm); }
.whatsapp-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }
.call-btn { background-color: #f5f5f5; color: var(--accent-color); border: 2px solid var(--secondary-color); }
.call-btn:hover { background-color: var(--bg-light); border-color: var(--primary-color); }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 1.5em; cursor: pointer; color: #999; transition: var(--transition); }
.close-btn:hover { color: var(--accent-color); transform: rotate(90deg); }

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1490; /* just below the menu panel */
    opacity: 0; transition: opacity 0.3s;
}
.nav-overlay.active { display: block; opacity: 1; }

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* reduce notif height for mobile */
    :root { --notif-h: 34px; }
  
  	.notification-bar{ font-size: .85em; }

    /* Container */
    .container { width: 95%; padding: 0 10px; }

    /* Notification Bar */
    .notification-bar { font-size: 0.60em; }

    /* Header & Navigation */
    .navbar { padding: 12px 0; }
    .logo img { height: 38px; }
    .mobile-menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; max-width: 300px; height: 100vh;
        background-color: var(--text-light);
        flex-direction: column; align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 1500; /* above header & overlay */
    }
    .nav-links.active { left: 0; }
    .nav-links > li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links > li > a::after { display: none; }

    /* Dropdown & Megamenu Mobile */
    .dropdown-content,
    .megamenu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 10px 0 10px 20px;
        background-color: var(--bg-light);
        animation: none;
    }
    .nav-links li.active .dropdown-content,
    .nav-links li.active .megamenu { display: block; }
    .megamenu { flex-direction: column; gap: 15px; }
    .megamenu-col h4 { font-size: 0.95em; }

    /* Hero Slider */
    .hero-slider { aspect-ratio: 2 / 1; margin-bottom: 30px; border-radius: 8px; }
    .slide-content h1 { font-size: 1.8em; }
    .slide-content p  { font-size: 1em; }

    /* Apps grid responsive */
    .app-grid { grid-template-columns: repeat(2, 1fr); }

    /* Course Promo */
    .course-promo { padding: 40px 15px; margin-bottom: 30px; }
    .course-promo h2 { font-size: 1.6em; }
    .course-promo p  { font-size: 1em; }

    /* Section Title */
    .section-title { font-size: 1.8em; margin-bottom: 25px; }

    /* Social Media */
    .social-media-info { padding: 35px 15px; margin-bottom: 30px; }
    .social-links-big { gap: 15px; }
    .social-icon { padding: 12px 20px; font-size: 0.95em; }
    .social-icon i { font-size: 1.4em; margin-right: 8px; }

    /* Platform Grid */
    .platform-grid { grid-template-columns: 1fr; gap: 20px; }
    .platform-card { padding: 25px 15px; }
    .platform-card i { font-size: 2.5em; }
    .platform-card h4 { font-size: 1.2em; }

    /* Testimonials */
    .testimonials { padding: 35px 0; }
    .testimonial-scroll-container { margin-top: 20px; padding-bottom: 15px; overflow-x: scroll; }
    .testimonial-item { flex: 0 0 280px; }

    /* Footer */
    .footer-main { padding: 35px 0 15px 0; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-col-contact { justify-self: start; } /* contact flows under links on mobile */

    /* Quick Links grid keeps 6 rows; fewer columns on small width automatically */
    .footer-quick-links { column-gap: 24px; }

    .footer-bottom { font-size: 0.85em; }

    /* Support Box */
    .support-box { padding: 25px 15px; }
    .support-list-full li { font-size: 0.95em; padding: 12px 0; }

    /* Query Popup */
    #query-trigger-btn { bottom: 20px; right: 20px; padding: 14px 22px; font-size: 1em; }
    #query-popup { width: calc(100% - 40px); right: 20px; bottom: 80px; padding: 20px; }

    /* Buttons */
    .btn { padding: 10px 22px; font-size: 0.95em; }
}

@media (max-width: 576px) {
    .app-grid { grid-template-columns: 1fr; }
    .app-card { border-radius: 16px; }
    .app-icon { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .hero-slider { aspect-ratio: 16 / 9; }
    .slide-content h1 { font-size: 1.5em; }
    .section-title { font-size: 1.5em; }
    .social-icon { padding: 10px 16px; font-size: 0.9em; }
    .testimonial-item { flex: 0 0 250px; }
    #query-trigger-btn { padding: 12px 18px; font-size: 0.95em; }
}

/* Smooth Scrolling */
html { scroll-behavior: smooth; }

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.container > * { animation: fadeIn 0.6s ease-out; }

/* ========= ADDITIVE FIXES (mobile header only) ========= */

/* 1) Mobile panel should start below fixed notification bar */
@media (max-width: 768px){
  .nav-links{ top: var(--notif-h) !important; }
}

/* 2) Make header & toggle clickable above overlay on mobile */
@media (max-width: 768px){
  .header-main{ z-index: 1600 !important; }
  .mobile-menu-toggle{
    position: relative;
    z-index: 1601 !important;
    pointer-events: auto;
  }
}

/* 3) Caret rotate when submenu open (visual feedback) */
@media (max-width: 768px){
  .dropdown-link i{ transition: transform .2s ease; }
  .nav-links li.active > .dropdown-link i{ transform: rotate(180deg); }
}

/* 4) Smooth accordion feel (optional, safe) */
@media (max-width: 768px){
  .dropdown-content, .megamenu{ overflow: hidden; }
}

/* Always-visible CSS burger (no icon font dependency) */
.mobile-menu-toggle {
  display: none;                 
  background: transparent;
  border: 0;
  line-height: 1;
  padding: 6px;
  margin-left: auto;             
  cursor: pointer;
  z-index: 1601;                 
}

.mobile-menu-toggle .burger,
.mobile-menu-toggle .burger::before,
.mobile-menu-toggle .burger::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);  
  position: relative;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle .burger::before,
.mobile-menu-toggle .burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-toggle .burger::before { top: -7px; }
.mobile-menu-toggle .burger::after  { top:  7px; }


@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}


/* =========================================================
   PROMO POPUP (added only; rest unchanged)
   - Centered modal with fixed size for both desktop & mobile
   - Image clickable; close button; smooth fade/scale
   ========================================================= */
.promo-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2000;
  opacity: 0; transition: opacity .2s ease;
}
.promo-overlay.show{ opacity: 1; }

.promo-popup{
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.96);
  background: #fff;
  width: 380px;               /* same size desktop + mobile */
  max-width: 90vw;
  aspect-ratio: 4 / 5;        /* as per screenshot */
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  z-index: 2001;
  opacity: 0; transition: transform .2s ease, opacity .2s ease;
  overflow: hidden;
}
.promo-popup.show{
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}
.promo-popup a, .promo-popup img{
  display: block; width: 100%; height: 100%;
}
.promo-popup img{
  object-fit: cover; object-position: center;
}
.promo-close{
  position: absolute; top: 6px; right: 8px;
  width: 34px; height: 34px;
  border: none; border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff; font-size: 20px; line-height: 34px; text-align: center;
  cursor: pointer; transition: transform .15s ease, background .15s ease;
  z-index: 1;
}
.promo-close:hover{ transform: scale(1.05); background: rgba(0,0,0,.7); }
