/* ============================================================
   Expert Trans Logistic — Premium Stylesheet
   Primary: #082D63 | Accent: #F97316
   Fonts: Poppins (headings), Inter (body)
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #082D63;
    --primary-dark: #061f45;
    --primary-light: #0d3d7a;
    --accent: #F97316;
    --accent-dark: #ea580c;
    --accent-light: #fb923c;
    --white: #ffffff;
    --light-gray: #f4f6f9;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --success: #22c55e;
    --shadow-sm: 0 2px 8px rgba(8, 45, 99, 0.08);
    --shadow-md: 0 4px 20px rgba(8, 45, 99, 0.12);
    --shadow-lg: 0 8px 40px rgba(8, 45, 99, 0.16);
    --shadow-accent: 0 4px 20px rgba(249, 115, 22, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    padding-bottom: 0;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

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

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-accent {
    color: var(--accent) !important;
}

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white) !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.45);
    color: var(--white) !important;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* --- Topbar --- */
.topbar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
}

.topbar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.topbar-list li a,
.topbar-list li span {
    color: rgba(255, 255, 255, 0.85);
    display: inline;
    align-items: center;
    gap: 6px;
}

.topbar-list li a:hover {
    color: var(--accent);
}

.topbar-list li i {
    color: var(--accent);
    font-size: 12px;
    margin-right: 4px;
}

.topbar-phones {
    white-space: nowrap;
}

.topbar-phones a {
    color: #fff;
    font-weight: 600;
    margin: 0 2px;
}

.topbar-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.topbar-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    color: #fff !important;
    transition: 0.2s ease;
}

.topbar-call-btn {
    background: #F97316;
}

.topbar-call-btn:hover {
    background: #ea580c;
    color: #fff !important;
}

.topbar-map-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.topbar-map-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #fff !important;
}

.float-map {
    background: #082D63;
}

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-left: 6px;
    font-size: 13px;
    transition: var(--transition);
}

.topbar-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Navbar --- */
.main-navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1030;
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-primary {
    color: var(--primary);
}

.navbar-brand .brand-accent {
    color: var(--accent);
}

.navbar-brand small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .navbar-logo {
        height: 44px;
        max-width: 60px;
    }
}

.main-navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--accent) !important;
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 8px;
}

.main-navbar .dropdown-item {
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-navbar .dropdown-item:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

.main-navbar .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.main-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23082D63' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-quote {
    font-size: 13px !important;
    padding: 10px 20px !important;
    letter-spacing: 0.5px;
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 45, 99, 0.92) 0%, rgba(8, 45, 99, 0.55) 48%, rgba(249, 115, 22, 0.28) 100%),
        linear-gradient(0deg, rgba(8, 45, 99, 0.45) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.9);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary) !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--accent);
}

/* --- Stats Bar --- */
.stats-bar-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--light-gray);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(8, 45, 99, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 26px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
}

.service-link:hover {
    color: var(--primary);
}

/* --- About Section --- */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.about-features li i {
    color: var(--accent);
    margin-top: 4px;
}

/* --- Why Choose Us --- */
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.why-icon i {
    font-size: 22px;
    color: var(--accent);
}

.why-card:hover .why-icon {
    background: var(--accent);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* --- Dark Stats Section --- */
.dark-stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
}

.dark-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.dark-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
}

/* --- Reviews --- */
.reviews-section {
    background: var(--white);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.google-rating .stars i {
    color: #fbbc04;
    font-size: 16px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 14px;
}

.review-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin: 16px 0 20px;
    font-size: 15px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

/* --- Process Timeline --- */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
}

.process-content h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-content p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Bottom Features --- */
.bottom-features {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.bottom-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 24px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.bottom-feature-item:last-child {
    border-right: none;
}

.bottom-feature-item:hover {
    background: var(--light-gray);
}

.bottom-feature-item i {
    font-size: 28px;
    color: var(--accent);
    min-width: 40px;
}

.bottom-feature-item h6 {
    font-size: 15px;
    margin-bottom: 2px;
}

.bottom-feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 45, 99, 0.92) 0%, rgba(8, 45, 99, 0.65) 55%, rgba(249, 115, 22, 0.25) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--accent);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Footer --- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-logo img {
    height: 72px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-map iframe {
    filter: grayscale(30%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 992px) {
    .floating-buttons {
        bottom: 30px;
    }
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.float-whatsapp {
    background: #25d366;
}

.float-call {
    background: var(--primary);
}

.float-top {
    background: var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    background: var(--gray-800);
    color: var(--white);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Bottom Bar --- */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.mobile-bar-call {
    background: var(--primary);
}

.mobile-bar-whatsapp {
    background: #25d366;
}

.mobile-bar-btn:hover {
    opacity: 0.9;
    color: var(--white);
}

/* --- Quote Modal --- */
.quote-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.quote-modal .modal-header {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 20px 24px;
}

.quote-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.quote-modal .modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.quote-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.quote-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.quote-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.quote-step.active .step-number,
.quote-step.completed .step-number {
    background: var(--accent);
    color: var(--white);
}

.quote-step .step-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.quote-step.active .step-label {
    color: var(--accent);
    font-weight: 600;
}

.quote-step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 20px;
}

.quote-form-step {
    display: none;
}

.quote-form-step.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.quote-modal .input-group-text {
    background: var(--light-gray);
    border-color: var(--gray-300);
    color: var(--accent);
}

.quote-modal .form-control,
.quote-modal .form-select {
    border-color: var(--gray-300);
    padding: 10px 14px;
}

.quote-modal .form-control:focus,
.quote-modal .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* --- MVV Cards (About) --- */
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon i {
    font-size: 24px;
    color: var(--accent);
}

.values-list {
    padding-left: 0;
    list-style: none;
}

.values-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.values-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* --- Team Cards --- */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h5 {
    margin-bottom: 4px;
}

.team-info span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

/* --- Certificate Cards --- */
.cert-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

/* --- Service Listing --- */
.service-listing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-listing-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-listing-card:hover .service-listing-image img {
    transform: scale(1.05);
}

.service-listing-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}

.service-listing-icon i {
    color: var(--white);
    font-size: 20px;
}

.service-listing-body {
    padding: 35px 24px 24px;
}

.service-listing-body h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-listing-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

/* --- Service Detail --- */
.service-sidebar-card,
.location-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.service-sidebar-card h5,
.location-sidebar-card h5 {
    margin-bottom: 12px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.03);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin: 16px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 8px;
}

.service-gallery-item img {
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-gallery-item:hover img {
    transform: scale(1.03);
}

/* --- Fleet --- */
.fleet-filter-tabs,
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.fleet-filter-btn,
.gallery-filter-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.fleet-filter-btn:hover,
.fleet-filter-btn.active,
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fleet-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.fleet-capacity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.fleet-type {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.fleet-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 3px 0;
}

.fleet-features li i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 11px;
}

.fleet-item.hidden {
    display: none;
}

/* --- Gallery --- */
.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 45, 99, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay i {
    font-size: 30px;
    margin-bottom: 8px;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

.gallery-item.hidden {
    display: none;
}

/* --- Lightbox --- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-height: 75vh;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 16px;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
}

/* --- Location Cards --- */
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-body {
    padding: 24px;
}

.location-body h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.location-address {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.location-phone {
    font-size: 14px;
    margin-bottom: 16px;
}

.location-phone a {
    color: var(--primary);
}

.location-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.location-contact-list li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 18px;
}

/* --- Blog --- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta i {
    margin-right: 4px;
    color: var(--accent);
}

.blog-card-body h4,
.blog-card-body h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.blog-card-body h4 a,
.blog-card-body h5 a {
    color: var(--primary);
}

.blog-card-body h4 a:hover,
.blog-card-body h5 a:hover {
    color: var(--accent);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 14px;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
}

.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.sidebar-categories li {
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14px;
}

.sidebar-categories a:hover {
    color: var(--accent);
}

.cat-count {
    background: var(--light-gray);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-post-item.compact {
    flex-direction: column;
    gap: 4px;
}

.sidebar-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    line-height: 1.4;
}

.sidebar-post-title:hover {
    color: var(--accent);
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-single-meta i {
    color: var(--accent);
    margin-right: 6px;
}

.blog-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-single-content p {
    margin-bottom: 16px;
}

.blog-tags .blog-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 50px;
    margin: 4px;
}

.blog-tags .blog-tag:hover {
    background: var(--accent);
    color: var(--white);
}

.blog-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary);
    margin-right: 8px;
    transition: var(--transition);
}

.blog-share a:hover {
    background: var(--accent);
    color: var(--white);
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonial-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin: 16px 0 20px;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Contact --- */
.contact-form-card,
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3,
.contact-info-card h3 {
    margin-bottom: 8px;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--accent);
    font-size: 18px;
}

.contact-info-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-info-list p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-list a {
    color: var(--text-muted);
}

.contact-info-list a:hover {
    color: var(--accent);
}

/* --- Generic Page --- */
.generic-page-content {
    font-size: 16px;
    line-height: 1.8;
}

.generic-page-content h2,
.generic-page-content h3 {
    margin-top: 30px;
    margin-bottom: 16px;
}

.generic-page-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.generic-page-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.generic-page-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* --- 404 Error --- */
.error-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--light-gray);
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -30px;
}

.error-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
}

.error-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.error-links a {
    color: var(--primary);
    font-weight: 500;
    padding: 4px 12px;
}

.error-links a:hover {
    color: var(--accent);
}

/* --- Pagination --- */
.custom-pagination .page-link {
    color: var(--primary);
    border-color: var(--gray-200);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    margin: 0 3px;
}

.custom-pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

.custom-pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--gray-200);
    }

    .about-experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 18px 22px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .bottom-feature-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .pricing-card.featured {
        transform: none;
    }

    .hero-swiper {
        height: 70vh;
        min-height: 450px;
    }

    .page-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 767.98px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-200);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .floating-buttons {
        right: 12px;
        bottom: 80px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .float-tooltip {
        display: none;
    }

    .quote-step-line {
        width: 30px;
    }
}

@media (max-width: 575.98px) {
    .cta-banner {
        padding: 50px 0;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }
}

/* --- Animations --- */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.float-whatsapp {
    animation: pulse 2s infinite;
}

/* --- Print --- */
@media print {
    .topbar,
    .main-navbar,
    .floating-buttons,
    .mobile-bottom-bar,
    .cta-banner {
        display: none !important;
    }
}

/* --- Statutory & JustDial About --- */
.statutory-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(8, 45, 99, 0.08);
    border: 1px solid rgba(8, 45, 99, 0.06);
    height: 100%;
}

.statutory-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.statutory-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.statutory-value {
    color: #082D63;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
}

.jd-cert-badge {
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(8, 45, 99, 0.1);
    border: 1px solid rgba(8, 45, 99, 0.08);
}

.jd-service-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(8, 45, 99, 0.07);
    border: 1px solid rgba(8, 45, 99, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jd-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(8, 45, 99, 0.12);
}

.jd-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #082D63, #0a3a7a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.jd-service-card h5 {
    color: #082D63;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.about-check-list li {
    margin-bottom: 8px;
    color: #374151;
}

