/* =============================================
   CEDFAST TOURS — PREMIUM STYLESHEET
   Palette: Jet Black · Pure Emerald · White
   Fonts: Sora (headings) + DM Sans (body)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --black:           #0D0D0D;
    --black-2:         #141414;
    --black-3:         #1C1C1C;
    --black-4:         #252525;
    --black-soft:      #2E2E2E;

    --emerald:         #059669;
    --emerald-light:   #10B981;
    --emerald-bright:  #34D399;
    --emerald-dim:     #047857;
    --emerald-glow:    rgba(5,150,105,0.12);
    --emerald-border:  rgba(5,150,105,0.28);

    --white:           #FFFFFF;
    --white-90:        rgba(255,255,255,0.9);
    --white-70:        rgba(255,255,255,0.7);
    --white-40:        rgba(255,255,255,0.4);
    --white-10:        rgba(255,255,255,0.08);
    --white-05:        rgba(255,255,255,0.04);

    --light-bg:        #F4F8F6;
    --light-bg-2:      #EBF5F1;

    --text-dark:       #111111;
    --text-muted:      #6B7280;
    --border-light:    rgba(0,0,0,0.08);
    --border-dark:     rgba(255,255,255,0.1);

    --card-shadow:     0 4px 24px rgba(0,0,0,0.06);
    --card-hover:      0 20px 60px rgba(0,0,0,0.13);
    --glow-shadow:     0 8px 32px rgba(5,150,105,0.28);

    --gradient:        linear-gradient(135deg, #059669, #047857);
    --gradient-h:      linear-gradient(135deg, #10B981, #059669);
    --black-gradient:  linear-gradient(135deg, #0D0D0D, #252525);
    --hero-overlay:    linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(5,150,105,0.42) 100%);

    --radius:    16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.35s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   SHARED COMPONENTS
============================================= */
.section-pill {
    display: inline-block;
    background: var(--emerald-glow);
    color: var(--emerald);
    border: 1px solid var(--emerald-border);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--black);
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}
.section-subtitle.light { color: var(--white-70); }

.wave-title {
    width: 64px;
    height: 3px;
    background: var(--gradient);
    margin: 14px auto 32px;
    border-radius: 2px;
}
.wave-title.left { margin-left: 0; }

/* Bootstrap button overrides */
.btn-primary {
    background: var(--gradient) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    padding: 0.65rem 1.8rem !important;
    box-shadow: var(--glow-shadow) !important;
    transition: var(--transition) !important;
    color: var(--white) !important;
}
.btn-primary:hover {
    background: var(--gradient-h) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(5,150,105,0.35) !important;
}
.btn-outline-light { border-radius: 50px !important; font-weight: 700 !important; padding: 0.65rem 1.8rem !important; transition: var(--transition) !important; }
.btn-outline-light:hover { transform: translateY(-2px) !important; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
    transition: var(--transition);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    z-index: 999;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
    border-bottom-color: var(--border-light);
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 0.3px;
}
.navbar-brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 10px; transition: transform 0.3s ease; }
.navbar-brand strong { color: var(--black); margin-left: 0.5rem; }
.navbar-brand:hover { color: var(--black); }
.navbar-brand:hover img { transform: scale(1.06); }
.navbar-brand:hover strong { color: var(--emerald); }

.nav-link {
    color: var(--black) !important;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0.8rem !important;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--emerald) !important; }
.nav-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--emerald);
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.nav-link.active::after, .nav-link:hover::after { width: 60%; }

.btn-cta {
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.55rem 1.5rem;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    box-shadow: var(--glow-shadow);
    transition: var(--transition);
}
.btn-cta:hover { background: var(--gradient-h); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(5,150,105,0.4); }

.navbar-toggler { border: 1.5px solid var(--border-light); border-radius: var(--radius-xs); padding: 0.4rem 0.6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--emerald-glow); outline: none; }

@media (max-width: 1199px) { .navbar-brand { font-size: 1.05rem; } .navbar-brand img { width: 40px; height: 40px; } }
@media (max-width: 991px) {
    .navbar-nav {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1rem 1.25rem;
        margin-top: 0.5rem;
        box-shadow: 0 16px 48px rgba(0,0,0,0.12);
        border: 1px solid var(--border-light);
    }
    .nav-link { padding: 0.75rem 0 !important; border-bottom: 1px solid var(--border-light); }
    .nav-link::after { display: none; }
    .btn-cta { width: 100%; text-align: center; margin-top: 0.75rem; }
}
@media (max-width: 575px) { .navbar-brand img { width: 36px; height: 36px; } .navbar-brand { font-size: 0.95rem; } }

/* =============================================
   HERO
============================================= */
.hero { position: relative; min-height: 100vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .carousel, .hero-bg .carousel-inner, .hero-bg .carousel-item { height: 100%; min-height: 100vh; }
.hero-bg img { width: 100%; height: 100vh; min-height: 100vh; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding-top: 80px; }
.hero h1 { font-size: 3.1rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.8px; }
.hero h1 .em { color: var(--emerald-bright); }
.main-text { font-size: 1.1rem; opacity: 0.88; line-height: 1.7; }
.support-text { font-size: 0.93rem; opacity: 0.72; }

.hero-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--emerald-bright); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; opacity: 0.72; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }

.car-img { max-width: 100%; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4)); animation: floatCar 4s ease-in-out infinite; }
@keyframes floatCar { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

@media (max-width: 1199px) { .hero h1 { font-size: 2.65rem; } }
@media (max-width: 991px) {
    .hero { min-height: auto; padding-bottom: 4rem; }
    .hero h1 { font-size: 2.25rem; text-align: center; }
    .hero-content { text-align: center; }
    .main-text, .support-text { text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-stat-divider { display: none; }
    .car-img { max-width: 78%; }
}
@media (max-width: 767px) { .hero h1 { font-size: 1.9rem; } .car-img { max-width: 85%; } .hero-stat-num { font-size: 1.55rem; } }
@media (max-width: 575px) { .hero h1 { font-size: 1.65rem; } .main-text { font-size: 0.97rem; } .hero-stats { gap: 20px; } }

/* =============================================
   MODALS
============================================= */
.modal-content { border-radius: var(--radius); border: none; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
.modal-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); }
.modal-header.dark-head { background: var(--black); }
.modal-header.em-head { background: var(--gradient); }
.modal-header.dark-head .modal-title,
.modal-header.em-head .modal-title { color: var(--white) !important; font-family: 'Sora', sans-serif; }
.modal-body { padding: 1.5rem; }
.modal-body .form-label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.modal-body .form-control {
    border-radius: var(--radius-sm); border: 1.5px solid var(--border-light);
    font-size: 0.92rem; padding: 0.62rem 0.9rem; transition: var(--transition);
}
.modal-body .form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(5,150,105,0.15); outline: none; }
.modal-body .btn { border-radius: 50px; padding: 10px 28px; font-weight: 700; border: none; }
.modal-body .btn-success { background: var(--gradient) !important; }
.modal-body .btn-success:hover { background: var(--gradient-h) !important; transform: translateY(-1px); }
.modal-body .btn-dark-modal { background: var(--black) !important; color: var(--white) !important; }
.modal-body .btn-dark-modal:hover { background: var(--black-3) !important; }
@media (max-width: 575px) { .modal-dialog { max-width: 95%; } }

/* =============================================
   ABOUT SECTION  — Fixed visibility
============================================= */
.about { background: var(--white); padding: 96px 0; }

.about-img-wrapper { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -14px; right: -14px;
    width: 65%; height: 65%;
    border: 3px solid var(--emerald);
    border-radius: 16px;
    z-index: -1;
    pointer-events: none;
}
.about-img-wrapper img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; display: block; transition: transform 0.5s ease;
}
.about-img-wrapper:hover img { transform: scale(1.03); }

.about-text { color: var(--text-muted); line-height: 1.8; font-size: 0.97rem; margin-bottom: 1rem; }

.about-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }

.highlight-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--emerald);
    font-weight: 600; color: var(--text-dark); font-size: 0.93rem;
    transition: var(--transition);
}
.highlight-item i { color: var(--emerald); font-size: 1.1rem; min-width: 18px; flex-shrink: 0; }
.highlight-item:hover { background: var(--black); color: var(--white); transform: translateX(6px); border-left-color: var(--emerald-bright); }
.highlight-item:hover i { color: var(--emerald-bright); }

/* ABOUT ANIMATION — properly scoped, safe fallback */
.about-animate {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-animate.show { opacity: 1; transform: translateY(0); }
.about-animate:nth-child(2) { transition-delay: 0.15s; }

@media (max-width: 1199px) { .about-img-wrapper img { height: 380px; } }
@media (max-width: 991px) {
    .about { padding: 64px 0; }
    .about-img-wrapper::after { display: none; }
    .about-img-wrapper img { height: 320px; }
}
@media (max-width: 767px) {
    .about { padding: 48px 0; }
    .about-img-wrapper img { height: 240px; }
    .about-text { text-align: center; }
}
@media (max-width: 575px) { .about-img-wrapper img { height: 210px; } }

/* =============================================
   WHO WE SERVE
============================================= */
.who-we-serve { background: var(--light-bg); padding: 96px 0; }

.serve-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    transition: var(--transition); height: 100%;
    box-shadow: var(--card-shadow); border: 1px solid var(--border-light);
    display: flex; flex-direction: column;
}
.serve-img-wrap { overflow: hidden; flex-shrink: 0; }
.serve-img-wrap img { width: 100%; height: 195px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.serve-card:hover .serve-img-wrap img { transform: scale(1.06); }

.serve-card-body { padding: 52px 22px 24px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }

.serve-icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    margin: -44px auto 14px;
    border-radius: 50%;
    background: var(--gradient);
    border: 4px solid var(--white);
    position: relative; z-index: 2;
    box-shadow: 0 6px 20px rgba(5,150,105,0.3);
}
.serve-icon i { color: var(--white); font-size: 1.4rem; }

.serve-card h5 { font-weight: 700; color: var(--black); margin-bottom: 10px; font-size: 1.05rem; }
.serve-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; flex-grow: 1; }

.serve-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.serve-chip {
    background: var(--emerald-glow); color: var(--emerald-dim);
    border: 1px solid var(--emerald-border);
    border-radius: 50px; font-size: 0.74rem; font-weight: 600; padding: 4px 12px;
}
.serve-card:hover { transform: translateY(-10px); box-shadow: var(--card-hover); border-color: var(--emerald-border); }

@media (max-width: 991px) { .who-we-serve { padding: 64px 0; } .serve-img-wrap img { height: 170px; } }
@media (max-width: 767px) { .serve-img-wrap img { height: 155px; } }

/* =============================================
   SERVICES
============================================= */
.services { background: var(--white); padding: 96px 0; }

.cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.cat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-icon i { color: var(--white); font-size: 1.1rem; }
.cat-header h4 { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--black); font-size: 1.25rem; margin: 0; }
.cat-divider { height: 3px; width: 72px; background: var(--gradient); border-radius: 2px; margin-top: 5px; }

.service-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    height: 100%; border: 1.5px solid var(--border-light);
    transition: var(--transition); display: flex; flex-direction: column;
}
.svc-img { width: 100%; height: 148px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.service-card:hover .svc-img { transform: scale(1.08); }
.svc-body { padding: 52px 18px 20px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }

.icon-circle {
    width: 56px; height: 56px;
    margin: -40px auto 14px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--gradient); border: 4px solid var(--white);
    position: relative; z-index: 2;
    box-shadow: 0 6px 20px rgba(5,150,105,0.25); transition: var(--transition);
}
.service-card:hover .icon-circle { background: var(--black-gradient); }
.icon-circle i { color: var(--white); font-size: 1.2rem; }

.service-card h5 { font-weight: 700; color: var(--black); margin-bottom: 8px; font-size: 0.97rem; }
.service-card p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 12px; flex-grow: 1; }

.s-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
.s-tag { background: var(--light-bg); color: var(--emerald-dim); font-size: 0.74rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--emerald-border); }

.card-accent { height: 3px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; flex-shrink: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover); border-color: var(--emerald-border); }
.service-card:hover .card-accent { transform: scaleX(1); }

@media (max-width: 991px) { .services { padding: 64px 0; } .svc-img { height: 130px; } }
@media (max-width: 767px) {
    .cat-header { justify-content: center; flex-direction: column; text-align: center; }
    .cat-header.right { flex-direction: column-reverse; }
    .cat-divider { margin: 5px auto; }
    .svc-img { height: 115px; }
}
@media (max-width: 575px) { .icon-circle { width: 48px; height: 48px; margin-top: -34px; } }

/* =============================================
   FLEET
============================================= */
.fleet { background: var(--light-bg); padding: 96px 0; }

.fleet-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    transition: var(--transition); height: 100%;
    box-shadow: var(--card-shadow); border: 1px solid var(--border-light);
    display: flex; flex-direction: column;
}
.fleet-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; }
.fleet-img-wrap img { width: 100%; height: 225px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }

.fleet-badge { position: absolute; top: 14px; right: 14px; background: var(--gradient); color: var(--white); font-size: 0.74rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; }
.fleet-badge.dark { background: var(--black-gradient); }
.fleet-badge.green { background: linear-gradient(135deg, #047857, #059669); }

.fleet-body { padding: 22px 22px 6px; flex-grow: 1; display: flex; flex-direction: column; }
.fleet-card h5 { color: var(--black); font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; }

.fleet-cap { display: flex; align-items: center; gap: 7px; color: var(--emerald); font-weight: 700; font-size: 0.88rem; margin-bottom: 16px; }

.fleet-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.fleet-list li { display: flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 0.88rem; padding: 7px 0; border-bottom: 1px solid var(--light-bg); }
.fleet-list li:last-child { border-bottom: none; }
.fleet-list li i { color: var(--emerald); font-size: 0.9rem; min-width: 16px; flex-shrink: 0; }

.fleet-footer { display: flex; gap: 10px; padding: 16px 22px; border-top: 1px solid var(--border-light); background: var(--light-bg); }
.fleet-btn-p { flex: 1; background: var(--gradient); color: var(--white); border: none; border-radius: 50px; padding: 9px 14px; font-weight: 700; font-size: 0.84rem; cursor: pointer; transition: var(--transition); }
.fleet-btn-p:hover { background: var(--gradient-h); transform: translateY(-1px); box-shadow: var(--glow-shadow); }
.fleet-btn-o { flex: 1; background: transparent; color: var(--black); border: 1.5px solid var(--black-4); border-radius: 50px; padding: 9px 14px; font-weight: 700; font-size: 0.84rem; cursor: pointer; transition: var(--transition); }
.fleet-btn-o:hover { background: var(--black); color: var(--white); }

.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover); }

@media (max-width: 1199px) { .fleet-img-wrap img { height: 205px; } }
@media (max-width: 991px) { .fleet { padding: 64px 0; } .fleet-img-wrap img { height: 210px; } }
@media (max-width: 767px) { .fleet-footer { flex-direction: column; gap: 8px; } }
@media (max-width: 575px) { .fleet-img-wrap img { height: 190px; } }

/* =============================================
   WHY CHOOSE US
============================================= */
.why-section { background: var(--white); padding: 96px 0; }
.why-visual { min-height: 420px; position: relative; }
.why-blob { position: absolute; width: 430px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.07; }
.why-image { width: 88%; max-width: 480px; position: relative; z-index: 2; animation: float 4s ease-in-out infinite; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.why-float-icon { position: absolute; font-size: 1.9rem; color: var(--emerald); animation: float 3.5s ease-in-out infinite; filter: drop-shadow(0 4px 8px rgba(5,150,105,0.3)); }
.why-float-icon.i1 { top: 14%; left: 6%; animation-delay: 0.5s; }
.why-float-icon.i2 { top: 14%; right: 6%; }

.why-card { background: var(--white); border-radius: 16px; padding: 24px 20px; border: 1.5px solid var(--border-light); box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: var(--transition); height: 100%; }
.why-icon-box { width: 50px; height: 50px; border-radius: 13px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: var(--transition); }
.why-card:hover .why-icon-box { background: var(--gradient); }
.why-icon-box i { font-size: 1.5rem; color: var(--emerald); transition: var(--transition); }
.why-card:hover .why-icon-box i { color: var(--white); }
.why-card h6 { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--black); font-size: 0.95rem; margin-bottom: 7px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover); border-color: var(--emerald-border); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

@media (max-width: 991px) { .why-section { padding: 64px 0; } .why-visual { min-height: 300px; margin-bottom: 2rem; } .why-blob { width: 320px; } }
@media (max-width: 767px) { .why-visual { min-height: 250px; } .why-image { max-width: 300px; } }

/* =============================================
   HOW IT WORKS  — dark background
============================================= */
.how-it-works { background: var(--black); padding: 96px 0; }

.timeline { position: relative; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.timeline::before { content: ''; position: absolute; top: 26px; left: 5%; right: 5%; height: 2px; background: linear-gradient(90deg, var(--emerald), transparent); opacity: 0.25; z-index: 1; }

.timeline-step { text-align: center; position: relative; flex: 1 1 16%; z-index: 2; padding: 0 8px; }
.step-icon { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: var(--gradient); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; box-shadow: var(--glow-shadow); transition: var(--transition); }
.step-icon:hover { transform: scale(1.12); }
.timeline-step h6 { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 0.92rem; }
.timeline-step p { font-size: 0.86rem; color: var(--white-70); }

@media (max-width: 991px) { .how-it-works { padding: 64px 0; } .timeline::before { display: none; } .timeline-step { flex: 1 1 42%; } }
@media (max-width: 767px) { .timeline { flex-direction: column; align-items: center; } .timeline-step { flex: unset; width: 100%; max-width: 340px; } }

/* =============================================
   COVERAGE
============================================= */
.coverage-section { background: var(--light-bg); padding: 80px 0; }
.coverage-list { list-style: none; padding: 0; }
.coverage-list li { background: var(--white); color: var(--black); font-weight: 700; padding: 10px 22px; border-radius: 50px; font-size: 0.92rem; transition: var(--transition); border: 1.5px solid var(--border-light); cursor: default; }
.coverage-list li i { color: var(--emerald); }
.coverage-list li:hover { background: var(--gradient); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--glow-shadow); }
.coverage-list li:hover i { color: var(--white); }

/* =============================================
   CTA SECTION
============================================= */
.cta-section { background: var(--black); padding: 96px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -80px; right: -60px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(5,150,105,0.15), transparent 70%); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; bottom: -60px; left: -40px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(5,150,105,0.08), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-divider { width: 64px; height: 3px; background: var(--gradient); border-radius: 2px; margin: 14px auto 28px; }

@media (max-width: 991px) { .cta-section { padding: 72px 0; } }
@media (max-width: 767px) { .cta-section { padding: 56px 0; } }

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section { background: var(--white); padding: 96px 0; }

.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--card-shadow); border: 1px solid var(--border-light); height: 100%; }
.contact-form-wrap .form-control { border-radius: var(--radius-sm); border: 1.5px solid var(--border-light); font-size: 0.92rem; padding: 0.65rem 1rem; transition: var(--transition); }
.contact-form-wrap .form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(5,150,105,0.12); outline: none; }
.contact-form-wrap .form-label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.contact-form-wrap .form-label i { color: var(--emerald); }

.contact-info-wrap { background: var(--black); border-radius: 20px; padding: 40px; height: 100%; display: flex; flex-direction: column; }
.ci-title { color: var(--white); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.65rem; margin-bottom: 6px; }
.ci-sub { color: var(--white-70); font-size: 0.9rem; margin-bottom: 28px; }

.ci-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-dark); }
.ci-item:last-of-type { border-bottom: none; }
.ci-icon-box { width: 44px; height: 44px; border-radius: 12px; background: var(--emerald-glow); border: 1px solid var(--emerald-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon-box i { color: var(--emerald-bright); font-size: 1.15rem; }
.ci-lbl { font-size: 0.76rem; color: var(--white-40); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 3px; }
.ci-val { font-weight: 700; color: var(--white-90); font-size: 0.93rem; }

.ci-socials { display: flex; gap: 10px; margin-top: 28px; }
.ci-social { width: 40px; height: 40px; border-radius: 50%; background: var(--white-10); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--white-70); font-size: 1.1rem; transition: var(--transition); }
.ci-social:hover { background: var(--emerald); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--glow-shadow); }

/* Form messages */
.form-msg { padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; display: none; }
.form-msg.success { background: var(--emerald-glow); border: 1px solid var(--emerald-border); color: var(--emerald-dim); }
.form-msg.error { background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.25); color: #dc2626; }

@media (max-width: 991px) { .contact-section { padding: 64px 0; } }
@media (max-width: 767px) { .contact-form-wrap, .contact-info-wrap { padding: 28px 20px; } }

/* =============================================
   FOOTER
============================================= */
.footer-section { background: var(--black-2); padding: 64px 0 0; }
.footer-brand { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-brand .em { color: var(--emerald-bright); }
.footer-desc { color: var(--white-70); font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 9px; }
.f-soc { width: 38px; height: 38px; border-radius: 50%; background: var(--white-10); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; color: var(--white-70); font-size: 1rem; transition: var(--transition); }
.f-soc:hover { background: var(--emerald); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--glow-shadow); }

.footer-head { color: var(--white); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 16px; }

.f-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.f-links li a { color: var(--white-70); font-size: 0.87rem; transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.f-links li a::before { content: '›'; color: var(--emerald); font-size: 1rem; }
.f-links li a:hover { color: var(--emerald-bright); padding-left: 4px; }

.f-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.f-contact-list li { display: flex; align-items: center; gap: 10px; color: var(--white-70); font-size: 0.87rem; }
.f-contact-list li i { color: var(--emerald); font-size: 0.95rem; min-width: 18px; }

.footer-divider { border-color: var(--border-dark) !important; margin: 48px 0 0; }
.footer-bottom { padding: 20px 0; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.82rem; }

@media (max-width: 767px) {
    .footer-section { padding: 48px 0 0; }
    .footer-section .row { text-align: center; }
    .footer-socials { justify-content: center; }
    .f-links li a { justify-content: center; }
    .f-contact-list li { justify-content: center; }
}

/* =============================================
   GLOBAL RESPONSIVE TITLES
============================================= */
@media (max-width: 991px) { .section-title { font-size: 1.85rem; } }
@media (max-width: 767px) { .section-title { font-size: 1.65rem; text-align: center; } .section-subtitle { font-size: 0.92rem; } .wave-title { margin: 10px auto 24px; } }
@media (max-width: 575px) { .section-title { font-size: 1.45rem; } }