/* ============================================================
   MYFUEL EV — DESIGN SYSTEM
   ============================================================ */

:root {
    --primary:   #00C853;
    --primary-dark: #00962e;
    --dark:      #0B1120;
    --dark-mid:  #111827;
    --gray-soft: #F4F6F8;
    --text-muted: #6B7280;
    --bs-primary: #00C853;
    --bs-primary-rgb: 0, 200, 83;
    --bs-dark:   #0B1120;
    --bs-white:  #ffffff;
    --bs-light:  #F4F6F8;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,200,83,0.18);
    --transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1F2937;
    background: #fff;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.fw-600 { font-weight: 600; }
.fw-800 { font-weight: 800; }
.z-2 { z-index: 2; }

/* ---- Spinner ---- */
#spinner {
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible; opacity: 1;
}

/* ---- Back to top ---- */
.back-to-top {
    position: fixed; right: 28px; bottom: 28px;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    z-index: 99; transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,200,83,0.35);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ---- Buttons ---- */
.btn { font-weight: 600; transition: var(--transition); }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,200,83,0.3); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-light:hover { transform: translateY(-2px); }
.btn-lg-square { width: 46px; height: 46px; padding: 0; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.mf-navbar {
    background: rgba(11, 17, 32, 0.0);
    backdrop-filter: blur(0px);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.mf-navbar.scrolled {
    background: rgba(11, 17, 32, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.mf-logo { height: 60px; transition: var(--transition); }
.mf-navbar.scrolled .mf-logo { height: 50px; }

.mf-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.mf-navbar .nav-link:hover,
.mf-navbar .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0,200,83,0.08);
}
.mf-navbar .dropdown-menu {
    background: var(--dark-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 8px;
    margin-top: 8px;
}
.mf-navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
}
.mf-navbar .dropdown-item:hover { background: rgba(0,200,83,0.15); color: var(--primary); }
.mf-navbar .navbar-toggler { color: rgba(255,255,255,0.8); }

@media (max-width: 991px) {
    .mf-navbar { background: rgba(11,17,32,0.97); padding: 14px 0; }
    #mfNav { background: var(--dark-mid); border-radius: var(--radius-lg); padding: 16px; margin-top: 12px; }
    .mf-navbar .nav-link { padding: 10px 16px !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.mf-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.mf-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}
.mf-hero-slide.active {
    opacity: 1;
}
.mf-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(11,17,32,0.92) 45%, rgba(11,17,32,0.55) 100%);
    z-index: 2;
}
.mf-hero-diagonal {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, transparent 38%, rgba(0,200,83,0.12) 100%);
    z-index: 2;
    pointer-events: none;
}

.mf-badge {
    background: rgba(0,200,83,0.15);
    border: 1px solid rgba(0,200,83,0.35);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mf-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.mf-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.mf-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    line-height: 1.75;
}

.mf-scroll-down {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    animation: bounce-down 2s infinite;
    transition: color .3s;
}
.mf-scroll-down:hover { color: var(--primary); }
@keyframes bounce-down {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.mf-stats-strip {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mf-stats-row { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mf-stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.mf-stat-item.last { border-right: none; }
.mf-stat-item:hover { background: rgba(0,200,83,0.05); }
.mf-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
    font-family: 'Sora', sans-serif;
}
.mf-stat-num span { font-size: 1.8rem; font-weight: 700; }
.mf-stat-item p { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; margin: 0; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 575px) {
    .mf-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mf-stat-item.last { border-bottom: none; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.mf-section { padding: 100px 0; }
.mf-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.mf-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.mf-about-img-wrap {
    position: relative;
    width: 100%;
}
.mf-about-img-main {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}
@media (max-width: 991px) {
    .mf-about-img-main {
        max-height: 320px;
    }
}
.mf-about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 42%;
    height: 52%;
    border: 6px solid #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.mf-about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.mf-about-badge {
    position: absolute;
    top: 40px; right: 0;
    background: var(--primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,200,83,0.4);
}
.mf-about-badge-num { display: block; font-size: 2.4rem; font-weight: 800; font-family: 'Sora', sans-serif; line-height: 1; }
.mf-about-badge-text { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }

.mf-checklist {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.mf-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 20px;
    clear: both;
}
.mf-check-item:last-child { margin-bottom: 0; }
.mf-check-item > div {
    flex: 1;
    min-width: 0;
    display: block;
}
.mf-check-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    min-width: 36px;
    background: rgba(0,200,83,0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
    margin-top: 2px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.mf-hiw { background: var(--dark); }
.mf-hiw .mf-section-label { color: rgba(0,200,83,0.8); }
.mf-hiw .mf-section-title { color: #fff; }

.mf-step-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.mf-step-card:hover {
    background: rgba(0,200,83,0.07);
    border-color: rgba(0,200,83,0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,200,83,0.15);
}
.mf-step-num {
    position: absolute;
    top: 20px; right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    font-family: 'Sora', sans-serif;
    line-height: 1;
    pointer-events: none;
}
.mf-step-icon {
    width: 64px; height: 64px;
    background: rgba(0,200,83,0.15);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.mf-step-card:hover .mf-step-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,200,83,0.4);
}
.mf-step-card h5 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.mf-step-card p { color: rgba(255,255,255,0.55); margin: 0; line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.mf-service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.mf-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.mf-service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.mf-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mf-service-card:hover .mf-service-img img { transform: scale(1.08); }
.mf-service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,17,32,0.5), transparent);
}
.mf-service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.mf-service-icon {
    width: 48px; height: 48px;
    background: rgba(0,200,83,0.12);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.mf-service-card:hover .mf-service-icon { background: var(--primary); color: #fff; }
.mf-service-body h5 { font-size: 1.1rem; margin-bottom: 10px; }
.mf-service-body p { flex: 1; line-height: 1.7; margin-bottom: 20px; }
.mf-service-link {
    font-weight: 600; color: var(--primary);
    text-decoration: none; font-size: 14px;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 4px;
}
.mf-service-link:hover { color: var(--primary-dark); gap: 8px; }

/* ============================================================
   FOUNDER'S MESSAGE
   ============================================================ */
.mf-founder {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.mf-founder .mf-section-title { color: #fff; }
.mf-founder-bg-shape {
    position: absolute;
    top: -100px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mf-founder-photo-wrap {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
}
.mf-founder-photo-placeholder {
    width: 280px; height: 360px;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(0,200,83,0.4);
    border-radius: var(--radius-xl);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.25);
    font-size: 64px;
    transition: var(--transition);
}
.mf-founder-photo-placeholder:hover { border-color: var(--primary); background: rgba(0,200,83,0.06); }
.mf-founder-photo-placeholder p { font-size: 13px; margin-bottom: 0; }

/* When a real photo is available, replace placeholder with: */
.mf-founder-photo {
    width: 280px; height: 360px;
    object-fit: cover; object-position: top;
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 8px rgba(0,200,83,0.1);
}

.mf-founder-card-badge {
    margin-top: 24px;
    background: rgba(0,200,83,0.12);
    border: 1px solid rgba(0,200,83,0.25);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    text-align: center;
    width: 100%;
}
.mf-founder-card-badge h5 { color: #fff; margin-bottom: 4px; font-size: 1rem; }
.mf-founder-card-badge span { color: var(--primary); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.mf-founder-quote-mark {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 20px;
}
.mf-founder-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 16px;
}
.mf-founder-text strong { color: #fff; }

.mf-founder-timeline { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mf-founder-timeline-item {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.mf-founder-timeline-year {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    min-width: 95px;
    letter-spacing: 0.03em;
}
.mf-founder-timeline-role { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.mf-testi-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.mf-testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.mf-testi-card.featured {
    background: var(--dark);
    border-color: rgba(0,200,83,0.3);
    box-shadow: 0 8px 32px rgba(0,200,83,0.2);
}
.mf-testi-stars { color: #F59E0B; font-size: 14px; }
.mf-testi-card.featured .mf-testi-stars { color: var(--primary); }
.mf-testi-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}
.mf-testi-card.featured .mf-testi-text { color: rgba(255,255,255,0.8); }
.mf-testi-author { display: flex; align-items: center; gap: 14px; }
.mf-testi-author img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.mf-testi-author strong { display: block; font-size: 15px; color: #111; margin-bottom: 2px; }
.mf-testi-card.featured .mf-testi-author strong { color: #fff; }
.mf-testi-author span { font-size: 13px; color: var(--text-muted); }
.mf-testi-card.featured .mf-testi-author span { color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.mf-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, #0d2b15 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.mf-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/carousel-1.jpg') center/cover no-repeat;
    opacity: 0.04;
}

/* ============================================================
   FOOTER
   ============================================================ */
.mf-footer {
    background: var(--dark);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mf-footer-logo { height: 55px; }
.mf-footer-newsletter {
    display: flex; gap: 8px;
}
.mf-footer-newsletter .form-control {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
}
.mf-footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.35); }
.mf-footer-newsletter .form-control:focus { outline: none; border-color: var(--primary); background: rgba(0,200,83,0.07); box-shadow: none; }
.mf-footer-newsletter .btn { flex-shrink: 0; border-radius: 8px; font-size: 14px; }

.mf-footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.mf-footer-links { list-style: none; padding: 0; margin: 0; }
.mf-footer-links li { margin-bottom: 10px; }
.mf-footer-links a, .mf-footer-links li {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.mf-footer-links a:hover { color: var(--primary); padding-left: 4px; }
.mf-footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.mf-footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.mf-footer-social { display: flex; gap: 10px; }
.mf-footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}
.mf-footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.mf-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mf-footer-bottom a { text-decoration: none; transition: color .3s; }
.mf-footer-bottom a:hover { color: var(--primary) !important; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.mf-page-header {
    position: relative;
    padding: 160px 0 80px;
    background: url('../img/banner-img.jpg') center/cover no-repeat;
    overflow: hidden;
}
.mf-page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(11,17,32,0.92) 0%, rgba(11,17,32,0.75) 100%);
}
.mf-page-header .container { position: relative; z-index: 2; }
.mf-page-header .breadcrumb { background: none; padding: 0; }
.mf-page-header .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color .3s; }
.mf-page-header .breadcrumb-item a:hover { color: var(--primary); }
.mf-page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.mf-info-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}
.mf-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.mf-info-icon {
    width: 60px; height: 60px;
    background: rgba(0,200,83,0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.mf-info-card:hover .mf-info-icon { background: var(--primary); color: #fff; }
.mf-info-card h6 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 8px; }
.mf-info-card p { margin: 0; font-weight: 500; }
.mf-info-card a { color: inherit; text-decoration: none; }
.mf-info-card a:hover { color: var(--primary); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.mf-contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
}
.mf-form-group { display: flex; flex-direction: column; gap: 6px; }
.mf-form-group label { font-size: 13px; font-weight: 600; color: #374151; text-transform: uppercase; letter-spacing: 0.05em; }
.mf-form-control {
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: var(--gray-soft);
    transition: var(--transition);
    width: 100%;
    outline: none;
    color: #1F2937;
}
.mf-form-control:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(0,200,83,0.12); }
textarea.mf-form-control { resize: vertical; }

/* ============================================================
   BREADCRUMB (inner pages — legacy fallback)
   ============================================================ */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url(../img/banner-img.jpg) center/cover no-repeat;
    padding: 80px 0;
}
.bg-breadcrumb .breadcrumb-item a { color: #fff; text-decoration: none; }
.bg-breadcrumb .breadcrumb-item.active { color: var(--primary); }
.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color: var(--gray-soft) !important; }

/* Dropdown toggle arrow */
.mf-navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 6px;
}

/* WOW animation defaults */
.wow { visibility: hidden; }

/* ===== TICKER BAR - remove to revert ===== */
.mf-ticker-bar {
    background: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    z-index: 1050;
}
.mf-ticker-track {
    display: inline-block;
    animation: mfTicker 22s linear infinite;
}
.mf-ticker-track span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0B1120;
    letter-spacing: 0.02em;
}
@keyframes mfTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.mf-navbar { top: 36px !important; }
/* ===== END TICKER BAR ===== */

/* ===== LAUNCH SECTION - remove to revert ===== */
.mf-launch-section {
    background: var(--dark-mid);
}
.mf-launch-poster {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
/* ===== END LAUNCH SECTION ===== */
