/* ============================================================
   Vervoer - Transport & Logistics Template
   Main Stylesheet
   ============================================================ */

:root {
    --primary-color: #FF6B00;
    --secondary-color: #1A1A2E;
    --dark-color: #0F0F1A;
    --text-color: #666666;
    --light-bg: #F5F5F5;
    --white: #ffffff;
    --border-color: #E0E0E0;
    --font-primary: 'Barlow', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

/* Global Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    background: var(--white);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary-color); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }
.auto-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* Page Wrapper */
.page-wrapper { position: relative; }

/* ============================================================
   HEADER STYLES
   ============================================================ */
.main-header { position: relative; z-index: 999; }

/* Header Top */
.header-top {
    background: var(--secondary-color);
    padding: 10px 0;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.header-top .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-list { display: flex; gap: 25px; }
.contact-list li { display: flex; align-items: center; gap: 8px; }
.contact-list a { color: rgba(255,255,255,0.7); }
.contact-list a:hover { color: var(--primary-color); }
.contact-list i { color: var(--primary-color); }
.social-links { display: flex; align-items: center; gap: 12px; }
.social-links span { color: rgba(255,255,255,0.5); font-size: 12px; margin-right: 5px; }
.social-links a {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 12px;
}
.social-links a:hover { background: var(--primary-color); color: #fff; }

/* Header Sticky */
.header-sticky {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 999;
    transition: var(--transition);
}
.header-sticky .inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}
.logo img { height: 45px; }

/* Navigation */
.main-menu .navigation { display: flex; gap: 5px; }
.main-menu .navigation > li { position: relative; }
.main-menu .navigation > li > a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
.main-menu .navigation > li > a::after {
    content: '';
    position: absolute; bottom: 0; left: 18px; right: 18px;
    height: 2px; background: var(--primary-color);
    transform: scaleX(0); transition: var(--transition);
}
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a { color: var(--primary-color); }
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after { transform: scaleX(1); }

/* Dropdown */
.main-menu .navigation li.dropdown > a::before {
    content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    margin-left: 5px; font-size: 11px;
}
.main-menu .navigation li ul {
    position: absolute; top: 100%; left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.main-menu .navigation li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-menu .navigation li ul li a {
    display: block; padding: 10px 20px;
    font-size: 14px; color: var(--secondary-color);
    border-bottom: 1px solid #f0f0f0;
}
.main-menu .navigation li ul li a:hover { background: var(--light-bg); color: var(--primary-color); padding-left: 28px; }
.main-menu .navigation li ul li ul { left: 100%; top: 0; }

/* Outer Box */
.outer-box { display: flex; align-items: center; gap: 15px; }
.btn-style-one {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-style-one:hover { background: var(--secondary-color); color: #fff; }
.btn-style-one i { margin-left: 8px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: var(--secondary-color);
    z-index: 9999; transition: var(--transition);
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
}
.menu-backdrop.active { display: block; }
.mobile-menu .close-btn {
    position: absolute; top: 15px; right: 15px;
    width: 35px; height: 35px;
    background: var(--primary-color); color: #fff;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px;
}
.menu-box { padding: 60px 25px 30px; }
.nav-logo { margin-bottom: 30px; }
.nav-logo img { height: 40px; }
.mobile-nav-toggler {
    display: none; cursor: pointer;
    flex-direction: column; gap: 5px;
}
.icon-bar {
    display: block; width: 25px; height: 2px;
    background: var(--secondary-color); transition: var(--transition);
}
.navbar-toggler { display: none; }

/* ============================================================
   BANNER / HERO SECTION  ←  UPDATED
   ============================================================ */

/* -- Wrapper ------------------------------------------------ */
.banner-section {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    min-height: 650px;
}

/* -- Individual slides ------------------------------------- */
.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 1;
    padding: 0;
}

/* Active slide — also drives section height */
.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    position: relative;
    min-height: 650px;
    display: flex;
}

/* Slide being faded out */
.banner-slide.leaving {
    opacity: 0;
    z-index: 2;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* -- Slide background image -------------------------------- */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* -- Dark gradient overlay --------------------------------- */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.96) 0%,
        rgba(15, 15, 26, 0.88) 100%
    );
}

/* -- Centred content wrapper ------------------------------- */
.slide-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    text-align: center;
    padding: 120px 20px 100px;
}

/* -- Trust badge pills ------------------------------------- */
.slide-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.38);
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 100px;
}
.slide-badge i { color: var(--primary-color); }

/* -- sub-title (reused class, centered override) ----------- */
.banner-content {
    text-align: center;
}
.banner-content .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    justify-content: center;
}
.banner-content .sub-title::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* -- h1 ---------------------------------------------------- */
.banner-content h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 58px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}
.banner-content h1 span { color: var(--primary-color); }

/* -- paragraph --------------------------------------------- */
.banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 32px;
}

/* -- CTA button row ---------------------------------------- */
.banner-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary orange button */
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 34px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}
.banner-btn:hover { background: #fff; color: var(--secondary-color); }
.banner-btn i { font-size: 16px; }

/* Outline ghost button */
.banner-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 34px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}
.banner-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.banner-btn-outline i { font-size: 16px; }

/* -- Prev / Next arrow buttons ----------------------------- */
.sl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.sl-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.sl-prev { left: 24px; }
.sl-next { right: 24px; }

/* -- Dot navigation ---------------------------------------- */
.sl-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.sl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.sl-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 100px;
}

/* -- Slide counter (top-right) ----------------------------- */
.sl-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    z-index: 10;
    letter-spacing: 1px;
}
#slCur { color: var(--primary-color); }

/* -- Progress bar (bottom edge) ---------------------------- */
.sl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 10;
    width: 0%;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 100px 0; }
.about-image { position: relative; }
.about-image .main-image img { width: 100%; border-radius: 8px; }
.about-image .company-logo {
    position: absolute; bottom: -20px; right: -20px;
}
.about-image .company-logo img { width: 120px; }
.about-content { padding-left: 40px; }
.sec-label {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 15px;
}
.sec-label::before { content: '~ '; }
.sec-label::after { content: ' ~'; }
.about-content h2 {
    font-family: var(--font-primary);
    font-weight: 800; font-size: 42px;
    color: var(--secondary-color);
    line-height: 1.2; margin-bottom: 20px;
}
.about-content p { margin-bottom: 25px; }
.features-list { margin: 25px 0; display: flex; gap: 25px; flex-wrap: wrap; }
.features-list li {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-primary); font-weight: 700;
    color: var(--secondary-color); font-size: 15px;
}
.features-list li img { width: 45px; }
.about-bottom {
    display: flex; align-items: center; gap: 20px;
    padding-top: 20px; border-top: 1px solid var(--border-color);
    margin-top: 25px;
}
.about-bottom .email { color: var(--primary-color); font-weight: 600; }
.read-more-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-color);
    color: #fff; padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-primary); font-weight: 700;
    font-size: 14px; text-transform: uppercase;
    transition: var(--transition);
}
.read-more-btn:hover { background: var(--secondary-color); color: #fff; }
.testimonial-inline {
    background: var(--secondary-color);
    color: #fff; padding: 20px 25px;
    border-radius: 8px; margin-bottom: 25px;
    position: relative;
}
.testimonial-inline .quote-icon {
    font-size: 50px; color: var(--primary-color);
    line-height: 1; font-family: Georgia, serif;
    position: absolute; top: 10px; left: 20px;
}
.testimonial-inline p { margin: 20px 0 10px; padding-left: 10px; font-size: 14px; }
.testimonial-inline .author { color: var(--primary-color); font-weight: 600; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 100px 0; background: var(--light-bg); }
.sec-title { text-align: center; margin-bottom: 60px; }
.sec-title .sec-label { display: block; }
.sec-title h2 {
    font-family: var(--font-primary);
    font-weight: 800; font-size: 42px;
    color: var(--secondary-color); margin: 10px 0 15px;
}
.sec-title p { max-width: 600px; margin: 0 auto; }
.service-block {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    margin-bottom: 30px;
}
.service-block:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-block .icon-box {
    padding: 35px 30px 25px;
    position: relative;
}
.service-block .icon-box img { width: 60px; margin-bottom: 15px; }
.service-block h4 { font-family: var(--font-primary); font-weight: 700; font-size: 20px; color: var(--secondary-color); }
.service-block h4 a:hover { color: var(--primary-color); }
.service-block p { font-size: 14px; margin-top: 10px; }
.service-block .service-image { overflow: hidden; }
.service-block .service-image img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); }
.service-block:hover .service-image img { transform: scale(1.05); }
.service-block .read-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-color); font-weight: 600; font-size: 14px;
    padding: 15px 30px;
    border-top: 1px solid var(--border-color);
}
.service-block .num-badge {
    position: absolute; top: 30px; right: 20px;
    width: 50px; height: 50px; opacity: 0.15;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--primary-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-section .auto-container {
    display: flex; align-items: center;
    justify-content: space-between; gap: 30px;
}
.cta-section h3 {
    font-family: var(--font-primary); font-weight: 800;
    font-size: 36px; color: #fff; line-height: 1.2;
}
.cta-section .shapes { position: absolute; right: 200px; top: 0; bottom: 0; opacity: 0.1; }
.cta-section .shapes img { height: 100%; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #212529; color: whitesmoke;
    padding: 16px 36px; border-radius: 4px;
    font-family: var(--font-primary); font-weight: 700;
    font-size: 15px; text-transform: uppercase;
    white-space: nowrap; transition: var(--transition);
}
.cta-btn:hover { background: var(--secondary-color); color: #fff; }

/* ============================================================
   WHY CHOOSE US / TABS SECTION
   ============================================================ */
.why-choose-section { padding: 100px 0; }
.tab-btns { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.tab-btn {
    padding: 18px 25px;
    background: var(--light-bg);
    font-family: var(--font-primary);
    font-weight: 700; font-size: 15px;
    color: var(--secondary-color);
    border: none; cursor: pointer;
    text-align: left; transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 10px;
}
.tab-btn.active-btn { background: var(--primary-color); color: #fff; }
.tab-btn i { font-size: 18px; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content .content-box { padding: 30px; background: var(--light-bg); border-radius: 8px; }
.tab-content h4 {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 24px; color: var(--secondary-color); margin-bottom: 15px;
}
.calc-form .form-group { margin-bottom: 15px; }
.calc-form input, .calc-form select {
    width: 100%; padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px; font-size: 14px;
    background: #fff; color: var(--secondary-color);
}
.calc-form input:focus, .calc-form select:focus {
    outline: none; border-color: var(--primary-color);
}
.submit-btn {
    background: var(--primary-color); color: #fff;
    padding: 12px 30px; border: none;
    border-radius: 4px; cursor: pointer;
    font-family: var(--font-primary); font-weight: 700;
    text-transform: uppercase; transition: var(--transition);
}
.submit-btn:hover { background: var(--secondary-color); }
.tracking-form { display: flex; gap: 10px; margin-bottom: 20px; }
.tracking-form input {
    flex: 1; padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
.tracking-form button {
    background: var(--primary-color); color: #fff;
    padding: 12px 20px; border: none;
    border-radius: 4px; cursor: pointer;
    font-weight: 700; transition: var(--transition);
}
.tracking-steps { display: flex; flex-direction: column; gap: 10px; }
.tracking-step {
    display: flex; align-items: center; gap: 15px;
    padding: 12px 0; border-bottom: 1px dashed var(--border-color);
    font-size: 14px;
}
.tracking-step .dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--border-color); flex-shrink: 0;
}
.tracking-step.done .dot { background: var(--primary-color); }
.tracking-step.active .dot { background: var(--primary-color); box-shadow: 0 0 0 4px rgba(255,107,0,0.2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.work-section { padding: 100px 0; background: var(--light-bg); }
.work-block {
    text-align: center; padding: 30px 20px;
    position: relative;
}
.work-block .num {
    display: inline-block;
    background: var(--primary-color);
    color: #fff; font-family: var(--font-primary);
    font-weight: 800; font-size: 12px;
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 20px;
}
.work-block .icon {
    width: 90px; height: 90px;
    background: var(--white);
    border-radius: 50%; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    font-size: 36px; color: var(--primary-color);
}
.work-block h5 {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 18px; color: var(--secondary-color);
    margin-bottom: 12px;
}
.work-block p { font-size: 14px; }
.work-block .arrow {
    position: absolute; top: 70px; right: -30px;
    font-size: 24px; color: var(--primary-color); opacity: 0.3;
}
.portfolio-list {
    display: flex; flex-direction: column; gap: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}
.portfolio-item h6 {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 16px; color: var(--secondary-color);
}
.portfolio-item a {
    color: var(--primary-color); font-size: 13px;
    font-weight: 600; display: inline-flex;
    align-items: center; gap: 5px;
}
.portfolio-item p { font-size: 13px; margin-top: 5px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { padding: 100px 0; }
.testimonial-block {
    background: var(--light-bg);
    border-radius: 8px; padding: 40px;
    position: relative;
}
.testimonial-block .quote {
    font-size: 60px; color: var(--primary-color);
    font-family: Georgia, serif; line-height: 1;
    position: absolute; top: 20px; right: 30px;
    opacity: 0.2;
}
.testimonial-block .stars { color: var(--primary-color); font-size: 14px; margin-bottom: 15px; }
.testimonial-block p { font-size: 15px; margin-bottom: 20px; }
.testimonial-block .author { display: flex; align-items: center; gap: 15px; }
.testimonial-block .author img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; }
.testimonial-block .author-info h6 { font-family: var(--font-primary); font-weight: 700; color: var(--secondary-color); }
.testimonial-block .author-info span { font-size: 13px; color: var(--primary-color); }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { padding: 60px 0; background: var(--light-bg); border-top: 1px solid var(--border-color); }
.client-logo { text-align: center; padding: 0 20px; }
.client-logo img { max-height: 50px; filter: grayscale(1); opacity: 0.5; transition: var(--transition); }
.client-logo:hover img { filter: none; opacity: 1; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 100px 0; }
.blog-block {
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-radius: 8px; overflow: hidden;
    transition: var(--transition);
}
.blog-block:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-block .image { overflow: hidden; }
.blog-block .image img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition); }
.blog-block:hover .image img { transform: scale(1.05); }
.blog-block .content { padding: 25px; }
.blog-block .meta { display: flex; gap: 20px; font-size: 13px; color: #999; margin-bottom: 12px; }
.blog-block .meta i { color: var(--primary-color); margin-right: 5px; }
.blog-block h5 a {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 18px; color: var(--secondary-color); line-height: 1.4;
}
.blog-block h5 a:hover { color: var(--primary-color); }
.blog-block p { font-size: 14px; margin: 12px 0; }
.blog-block .read-link {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--primary-color); font-weight: 700; font-size: 13px;
}
.blog-block .read-link:hover { gap: 10px; }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {

    padding: 80px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.bottom-cta h3 {
    font-family: var(--font-primary); font-weight: 800;
    font-size: 36px; color: var(--secondary-color); margin-bottom: 15px;
}
.bottom-cta p { color: rgba(0, 0, 0, 0.7); max-width: 500px; margin: 0 auto 30px; }
.bottom-cta .weight-image {
    position: absolute; right: 50px; bottom: 0;
    opacity: 0.06;
}
.bottom-cta .weight-image img { height: 200px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.6);
    padding-top: 80px;
}
.widgets-section { padding-bottom: 50px; }
.footer-widget .widget-title {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 18px; color: #fff;
    padding-bottom: 15px; margin-bottom: 25px;
    position: relative;
}
.footer-widget .widget-title::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px; background: var(--primary-color);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 40px; }
.logo-widget .text { font-size: 14px; margin-bottom: 20px; }
.logo-widget .read-more {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-color); font-weight: 600; font-size: 14px;
}
.info-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 15px; font-size: 14px;
}
.info-list li i { color: var(--primary-color); margin-top: 4px; flex-shrink: 0; }
.info-list a { color: rgba(255,255,255,0.6); }
.info-list a:hover { color: var(--primary-color); }
.newsletter-form {
    display: flex; margin: 15px 0 20px;
}
.newsletter-form input {
    flex: 1; padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 13px;
    border-radius: 4px 0 0 4px; border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    background: var(--primary-color); color: #fff;
    padding: 0 18px; border: none;
    border-radius: 0 4px 4px 0; cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { background: #fff; color: var(--primary-color); }
.gallery-outer {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
}
.gallery-outer .image { overflow: hidden; border-radius: 4px; }
.gallery-outer .image img { width: 100%; height: 70px; object-fit: cover; transition: var(--transition); }
.gallery-outer .image:hover img { transform: scale(1.1); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 10px;
}
.copyright-text { color: rgba(255,255,255,0.5); font-size: 14px; }
.copyright-text a { color: var(--primary-color); }

/* ============================================================
   PAGE TITLE / BREADCRUMB
   ============================================================ */
.page-title-area {
    background: var(--secondary-color);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.page-title-area::before {
    content: '';
    position: absolute; inset: 0;
    background: url('images/banner/page-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}
.page-title-area .content { position: relative; z-index: 2; }
.page-title-area h1 {
    font-family: var(--font-primary); font-weight: 800;
    font-size: 48px; color: #fff; margin-bottom: 15px;
}
.breadcrumb-list { display: flex; align-items: center; gap: 10px; }
.breadcrumb-list a { color: rgba(255,255,255,0.7); font-size: 14px; }
.breadcrumb-list a:hover { color: var(--primary-color); }
.breadcrumb-list span { color: var(--primary-color); font-size: 12px; }
.breadcrumb-list li:last-child a { color: var(--primary-color); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary-color); color: #fff;
    border: none; border-radius: 50%; cursor: pointer;
    font-size: 18px; transition: var(--transition);
    opacity: 0; visibility: hidden; z-index: 999;
    box-shadow: 0 5px 15px rgba(255,107,0,0.4);
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--secondary-color); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .main-menu { display: none; }
    .mobile-nav-toggler { display: flex; }
    .banner-content h1 { font-size: 40px; }
    .about-content { padding-left: 0; margin-top: 40px; }
    .cta-section .auto-container { flex-direction: column; text-align: center; }
    .header-top .inner-container { flex-direction: column; gap: 10px; }
    .sl-arrow { display: none; }
    .slide-inner { padding: 90px 20px 80px; }
}
@media (max-width: 767px) {
    .banner-content h1 { font-size: 32px; }
    .banner-section,
    .banner-slide.active { min-height: 520px; }
    .slide-inner { padding: 80px 20px 70px; }
    .banner-btns { flex-direction: column; align-items: center; }
    .sec-title h2 { font-size: 30px; }
    .about-content h2 { font-size: 30px; }
    .cta-section h3 { font-size: 26px; }
    .bottom-cta h3 { font-size: 28px; }
    .contact-list { flex-direction: column; gap: 8px; }
    .gallery-outer { grid-template-columns: repeat(3, 1fr); }
    .page-title-area h1 { font-size: 34px; }
    .features-list { flex-direction: column; gap: 15px; }
    .work-block .arrow { display: none; }
    .tab-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .header-sticky .inner-container { height: 65px; }
    .logo img { height: 35px; }
    .btn-style-one { display: none; }
    .banner-content h1 { font-size: 26px; }
    .banner-section,
    .banner-slide.active { min-height: 450px; }
    .slide-inner { padding: 70px 16px 65px; }
    .slide-badges { display: none; }
}
