/* ==========================================
   KEY PACKERS & MOVERS — Complete Redesign
   Inspired by Republic Packers UI
   ========================================== */

/* ---- CSS Variables ---- */
:root {
    --primary: #2b74b6;
    /* Logo Blue */
    --primary-dark: #1f578a;
    --primary-light: #5291ca;
    --secondary: #e95922;
    /* Logo Orange */
    --accent: #e95922;
    /* Logo Orange */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --dark-bg: #111111;
    --border: #e5e5e5;
    --transition: all 0.3s ease;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 6px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 18px 0;
}

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

.text-white {
    color: var(--white);
}

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

.bg-dark {
    background: var(--dark-bg);
}

.bg-primary {
    background: var(--primary);
}

.section-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 18px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 15px;
}

.underline {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 14px auto 32px;
    border-radius: 2px;
}

.underline-left {
    margin-left: 0;
}

.orange-line {
    background: var(--accent);
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 58, 15, 0.35);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-orange,
.btn-orange-solid {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-orange:hover,
.btn-orange-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
    border: none;
    display: block;
}

/* ---- Header / Top Bar ---- */
.site-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.sticky-header {
    position: fixed;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    margin-right: 20px;
    transition: var(--transition);
    font-size: 13px;
}

.top-bar a i {
    margin-right: 5px;
    color: #dde1e5;
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-right a {
    margin-right: 0;
}

.navbar {
    padding: 14px 0;
    transition: var(--transition);
}

.sticky-header .navbar {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 26px;
    font-weight: 800;
}

.logo a {
    color: var(--secondary);
}

.logo-accent {
    color: var(--primary);
}

.sticky-header .logo a {
    color: var(--secondary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    padding: 8px 14px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-radius: var(--radius);
}

.sticky-header .nav-menu>li>a {
    color: var(--secondary);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active-link {
    color: var(--primary) !important;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 210px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    list-style: none;
    padding: 8px 0;
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary) !important;
    background: var(--light-bg);
    padding-left: 26px;
}

/* CTA Button in nav */
.nav-cta .btn {
    padding: 9px 22px;
    font-size: 13px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 22px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

.sticky-header .mobile-toggle {
    color: var(--secondary);
}

/* Mobile Nav (hidden by default) */
#mobile-menu {
    display: none !important;
}

@media (max-width: 992px) {
    #mobile-menu {
        display: none !important; /* Overridden by .open below */
    }
    #mobile-menu.open {
        display: flex !important;
    }
}

/* ==================== HERO ==================== */
.hero {
    min-height: 92vh;
    background: url('hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.82) 50%, rgba(10, 10, 10, 0.45));
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--white);
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features li i {
    color: var(--accent);
    width: 18px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

/* Hero Form */
.hero-form-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-box h3 {
    font-size: 20px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 6px;
}

.hero-form-box p {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 22px;
}

.hero-form-box .form-group {
    margin-bottom: 14px;
}

.hero-form-box input,
.hero-form-box select,
.hero-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.hero-form-box input:focus,
.hero-form-box select:focus,
.hero-form-box textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 58, 15, 0.1);
}

.hero-form-box .btn {
    width: 100%;
    margin-top: 6px;
    padding: 13px;
    font-size: 15px;
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    background: var(--primary);
    color: var(--white);
    padding: 18px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.trust-item i {
    font-size: 26px;
}

.trust-item span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    opacity: 0.85;
}

.trust-item strong {
    font-size: 16px;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 4px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 58, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary);
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== ABOUT ==================== */
.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    padding-bottom: 30px;
    /* space for the floating badge */
    padding-right: 30px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image-badge strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge span {
    font-size: 13px;
    opacity: 0.9;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 15px;
}

.trust-list {
    list-style: none;
    margin-bottom: 28px;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
}

.trust-list li i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    background: var(--secondary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(139, 58, 15, 0.3);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.stat-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* Legacy stat-item support */
.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.stat-item h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ==================== PROCESS ==================== */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 18px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.step-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.step p {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== LOCATIONS ==================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.location-link {
    background: var(--white);
    padding: 12px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.location-link i {
    color: var(--primary);
    font-size: 12px;
}

.location-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.location-link:hover i {
    color: var(--white);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ==================== LOCATION PAGES FIX ==================== */
.location-section-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .location-section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

border-left: 4px solid var(--primary);
transition: var(--transition);
}

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

.stars {
    color: #f0a500;
    margin-bottom: 14px;
    font-size: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.reviewer h4 {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 2px;
}

.reviewer span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Legacy testimonial-slider */
.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider .testimonial-card {
    min-width: 320px;
}

/* ==================== FAQ ==================== */
.faq-section {}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: var(--white);
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    user-select: none;
}

.faq-question .faq-icon {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question {
    color: var(--primary);
    background: rgba(139, 58, 15, 0.04);
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    background: var(--white);
}

.faq-item.open .faq-answer {
    display: block;
}

/* Simple FAQ for Location Pages (non-accordion) */
.faq-item>strong,
.faq-item>p {
    display: block;
    padding: 0 24px;
}

.faq-item>strong {
    padding-top: 18px;
    margin-bottom: 6px;
    color: var(--secondary);
    font-size: 15px;
}

.faq-item>p {
    padding-bottom: 18px;
    margin-bottom: 0;
}

/* ==================== CONTACT ==================== */
.contact-flex {
    display: flex;
    gap: 50px;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.contact-info-box>p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item .info-item-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--secondary);
}

.info-item .info-item-text p,
.info-item .info-item-text a {
    color: var(--text-light);
    font-size: 14px;
}

.info-item .info-item-text a:hover {
    color: var(--primary);
}

/* legacy icon support */
.info-item>i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form-box {
    flex: 1.2;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.form-row input {
    flex: 1;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 58, 15, 0.1);
}

/* ==================== INNER PAGE HERO ==================== */
.inner-hero {
    background: var(--secondary);
    /* top-bar (38px) + navbar (52px) = 90px; add extra 50px breathing room */
    padding: 140px 0 65px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.png') no-repeat center/cover;
    /* opacity: 0.5; */
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    color: var(--white) !important;
    font-size: 42px;
    margin-bottom: 14px;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin-bottom: 18px;
}

.inner-hero .section-label {
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    letter-spacing: 2.5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 10px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col a i {
    font-size: 12px;
    color: var(--primary);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    display: block;
}

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

.social-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-footer a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary) !important;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.social-footer a:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--primary);
}

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

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    color: var(--white);
}

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 14px;
    text-align: center;
    z-index: 999;
}

.mobile-call-btn a {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

/* ==================== ANIMATIONS ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-form-box {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 38px;
    }

    .about-flex,
    .contact-flex {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

    .about-image-badge {
        right: 0;
        bottom: 0;
    }

    /* Mobile Menu Styles moved here */
    #mobile-menu {
        display: none;
        flex-direction: column;
        background: var(--white);
        padding: 10px 20px 20px;
        box-shadow: var(--shadow-lg);
        border-top: 3px solid var(--primary);
    }

    #mobile-menu.open {
        display: flex;
    }

    #mobile-menu a {
        padding: 10px 0;
        color: var(--secondary);
        font-weight: 600;
        font-size: 14px;
        border-bottom: 1px solid var(--border);
        text-transform: uppercase;
    }

    #mobile-menu a:hover {
        color: var(--primary);
    }

    /* ===== Mobile Services Dropdown ===== */
    .mob-services-wrap {
        width: 100%;
    }
    .mob-services-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid var(--border);
        color: var(--secondary);
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 10px 0;
        cursor: pointer;
        text-align: left;
    }
    .mob-services-toggle:hover {
        color: var(--primary);
    }
    .mob-chevron {
        font-size: 11px;
        color: var(--primary);
        transition: transform 0.3s ease;
    }
    .mob-chevron.open {
        transform: rotate(180deg);
    }
    .mob-services-dropdown {
        display: none;
        flex-direction: column;
        background: #f5f5f5;
        border-left: 3px solid var(--primary);
        overflow: hidden;
        margin-bottom: 4px;
    }
    .mob-services-dropdown.open {
        display: flex;
    }
    .mob-services-dropdown a {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding: 10px 16px !important;
        color: var(--secondary) !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        border-bottom: 1px solid var(--border) !important;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }
    .mob-services-dropdown a:last-child {
        border-bottom: none !important;
    }
    .mob-services-dropdown a i {
        width: 18px;
        text-align: center;
        color: var(--primary);
        font-size: 13px;
        flex-shrink: 0;
    }
    .mob-services-dropdown a:hover {
        background: #e8f0fb;
        color: var(--primary) !important;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    .site-header {
        position: absolute;
        background: rgba(0, 0, 0, 0.85);
    }

    .sticky-header {
        background: var(--white);
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-form-box {
        padding: 24px 20px;
    }

    .mobile-call-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .whatsapp-btn {
        bottom: 70px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .inner-hero {
        padding: 110px 0 50px;
    }

    .inner-hero h1 {
        font-size: 28px;
    }

    .about-flex {
        gap: 30px;
    }

    .about-image {
        padding-bottom: 0;
        padding-right: 0;
    }

    .about-image-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        gap: 12px;
        align-items: center;
        border-radius: var(--radius);
    }

    .about-image-badge strong {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        padding: 0 20px;
    }

    body {
        padding-bottom: 58px;
    }

    /* prevent mobile-call-btn from covering content */
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-group {
        flex-direction: column;
    }
}


.palava-item {
    display: flex !important;   /* force flex */
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
}

.palava-item i {
    font-size: 18px;
    color: #007bff;
    min-width: 20px; /* keeps icon aligned */
    margin-top: 4px;
}

.palava-item div {
    display: flex;
    flex-direction: column;
}

.palava-item strong {
    font-size: 16px;
    display: block;
}

.palava-item span {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .feature-item {
        text-align: center;
    }

    .feature-item i {
        display: block;
        margin: 0 auto 10px;
        font-size: 28px; /* optional for better look */
    }
}
