/* ============================================
   Maits Services Ltd — Modern UI
   ============================================ */

:root {
    --primary:        #1888f1;
    --primary-dark:   #0f6fd4;
    --dark:           #0f172a;
    --dark-2:         #1e293b;
    --text:           #334155;
    --text-muted:     #64748b;
    --white:          #ffffff;
    --bg-light:       #f8fafc;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
    --shadow:         0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:      0 8px 40px rgba(0,0,0,0.14);
    --radius:         12px;
    --radius-lg:      20px;
    --transition:     0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    padding-top: 72px;
}

a { text-decoration: none; }

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

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    background: var(--dark);
    padding: 14px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    z-index: 1050;
}

#mainNav.scrolled {
    background: var(--dark);
    padding: 8px 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

#mainNav .navbar-brand img {
    height: 52px;
    width: auto;
    border-radius: 8px;
}

#mainNav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88) !important;
    letter-spacing: 0.3px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(24,136,241,0.08);
}

#mainNav .btn-quote {
    background: var(--primary);
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    padding: 8px 20px !important;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

#mainNav .btn-quote:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-1px);
}

#mainNav .dropdown-menu {
    background: var(--dark-2);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 6px;
    min-width: 240px;
}

#mainNav .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 11px 18px;
    transition: all var(--transition);
}

#mainNav .dropdown-item:hover {
    background: rgba(24,136,241,0.15);
    color: var(--primary);
}

.nav-track-form {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-track-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    font-size: 0.82rem;
    border-radius: 8px;
    padding: 7px 12px;
    width: 160px;
    transition: all var(--transition);
}

.nav-track-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
    box-shadow: none;
    color: white;
    outline: none;
}

.nav-track-form .form-control::placeholder { color: rgba(255,255,255,0.5); }

.nav-track-form .btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.82rem;
    transition: all var(--transition);
}

.nav-track-form .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Translate widget */
#google_translate_element { font-size: 0.8rem; }

/* ============================================
   HERO
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(15,23,42,0.38) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-text {
    animation: fadeInUp 0.9s ease both;
}

.hero-title {
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.18;
    margin-bottom: 18px;
}

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

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 10px;
    line-height: 1.55;
}

.hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-contacts a {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.hero-contacts a:hover { color: var(--primary); }
.hero-contacts i { color: var(--primary); }

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

.hero-buttons .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 13px 30px;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 18px rgba(24,136,241,0.42);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(24,136,241,0.5);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    transform: translateY(-2px);
}

/* Hero Controls */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 20;
}

.hero-control:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.hero-control.prev { left: 22px; }
.hero-control.next { right: 22px; }

.hero-indicators {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-indicator.active {
    background: var(--primary);
    width: 28px;
}

/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
    background: var(--primary);
    padding: 16px 0;
}

.promo-bar-title {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    background: var(--bg-light);
    padding: 64px 0;
}

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

.quote-card-header {
    background: var(--dark);
    padding: 28px 36px;
}

.quote-card-header h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.quote-card-header p {
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-size: 0.9rem;
}

.quote-card-body { padding: 36px; }

.form-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; margin-bottom: 20px; }

.form-section-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title .step-num {
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24,136,241,0.1);
    outline: none;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
}

/* Transport toggle buttons */
.transport-options { display: flex; flex-wrap: wrap; gap: 10px; }

.transport-option { cursor: pointer; user-select: none; }

.transport-option input[type="radio"] { display: none; }

.transport-option .opt-label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: white;
    transition: all var(--transition);
}

.transport-option:hover .opt-label {
    border-color: var(--primary);
    color: var(--primary);
}

.transport-option input[type="radio"]:checked + .opt-label {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(24,136,241,0.32);
}

.btn-get-quote {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 13px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-get-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24,136,241,0.4);
    color: white;
}

/* Quote success/error */
#success_page {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}

#success_page h4 { color: #065f46; font-size: 1rem; margin-bottom: 4px; }
#success_page p { color: #047857; font-size: 0.875rem; margin: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: white;
    padding: 72px 0;
}

.section-header { text-align: center; margin-bottom: 48px; }

.section-label {
    display: inline-block;
    background: rgba(24,136,241,0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
}

.section-divider {
    width: 52px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 14px auto 0;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

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

.service-image {
    overflow: hidden;
    height: 210px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-body h3 a {
    color: var(--dark);
    transition: color var(--transition);
}

.service-body h3 a:hover { color: var(--primary); }

.service-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.72;
    flex: 1;
    margin-bottom: 18px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    align-self: flex-start;
    transition: all var(--transition);
}

.btn-service:hover {
    background: var(--primary);
    color: white;
    transform: translateX(2px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section {
    background: var(--bg-light);
    padding: 72px 0;
}

.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
}

.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(24,136,241,0.28);
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.72;
    margin: 0;
}

.why-card a { color: var(--primary); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.76);
}

.cta-banner .cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.45;
    margin-bottom: 32px;
}

.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.cta-buttons .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 13px 30px;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.cta-buttons .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(24,136,241,0.42);
}

.cta-buttons .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
}

.cta-buttons .btn-outline-light:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ============================================
   CONTACT PROMO BAR
   ============================================ */
.contact-promo {
    background: var(--primary);
    padding: 20px 0;
}

.contact-promo h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.contact-promo .btn-dark {
    background: var(--dark);
    border-color: var(--dark);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 22px;
    white-space: nowrap;
    transition: all var(--transition);
}

.contact-promo .btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }

.footer-widgets {
    padding: 64px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h4 {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

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

.footer-links a {
    color: rgba(255,255,255,0.62);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-links a:hover { color: white; padding-left: 4px; }

.footer-contact {
    font-size: 0.875rem;
    line-height: 1.85;
    font-style: normal;
    color: rgba(255,255,255,0.62);
}

.footer-contact strong { color: white; }

.footer-contact a {
    color: rgba(255,255,255,0.62);
    display: block;
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); width: 16px; }

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin: 0;
}

.social-links { display: flex; gap: 10px; }

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: all var(--transition);
}

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

/* ============================================
   INNER PAGE BANNER
   ============================================ */
.page-banner {
    background: var(--dark);
    padding: 110px 0 52px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 60%);
    opacity: 0.18;
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-wrap a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.breadcrumb-wrap a:hover { color: var(--primary); }
.breadcrumb-wrap .sep { color: rgba(255,255,255,0.3); font-size: 0.875rem; }
.breadcrumb-wrap .current { color: var(--primary); font-size: 0.875rem; font-weight: 500; }

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.page-content {
    padding: 64px 0;
}

.content-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.content-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.content-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.content-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content-card ul li {
    color: var(--text-muted);
    font-size: 0.925rem;
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.7;
}

.content-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box p { margin: 0; color: var(--text); font-size: 0.9rem; }

.highlight-stat {
    text-align: center;
    padding: 28px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.highlight-stat .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.office-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
}

.office-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.office-card .office-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(24,136,241,0.28);
}

.office-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.office-card address {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.office-card address a {
    color: var(--primary);
    display: block;
}

.office-card address a:hover { text-decoration: underline; }

.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    background: rgba(24,136,241,0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--dark);
    transition: color var(--transition);
}

.blog-card-body h3 a:hover { color: var(--primary); }

.blog-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-meta i { color: var(--primary); }

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    padding: 7px 16px;
    align-self: flex-start;
    transition: all var(--transition);
}

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

.blog-post-header {
    background: var(--dark);
    padding: 110px 0 52px;
    position: relative;
    overflow: hidden;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 60%);
    opacity: 0.18;
}

.blog-post-header .container { position: relative; z-index: 2; }

.blog-post-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.25;
    margin-bottom: 14px;
}

.blog-post-header .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
}

.blog-post-header .post-meta i { color: var(--primary); }

.blog-post-content {
    padding: 64px 0;
}

.blog-post-content .prose {
    max-width: 760px;
}

.blog-post-content h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 14px;
}

.blog-post-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
}

.blog-post-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 1rem;
}

.blog-post-content ul, .blog-post-content ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.blog-post-content li {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 6px;
}

.blog-post-content .callout {
    background: rgba(24,136,241,0.07);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.blog-post-content .callout p { margin: 0; color: var(--text); }

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

.blog-sidebar .sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: var(--dark);
        padding: 16px 20px;
        border-radius: var(--radius);
        margin-top: 8px;
        box-shadow: var(--shadow-lg);
    }
    .nav-track-form .form-control { width: 130px; }
}

@media (max-width: 767px) {
    body { padding-top: 64px; }
    .hero-section { min-height: 520px; }
    .hero-title { font-size: 1.75rem; }
    .hero-contacts { flex-direction: column; gap: 8px; }
    .hero-buttons { flex-direction: column; }
    .hero-control { display: none; }
    .cta-banner { background-attachment: scroll; padding: 72px 0; }
    .contact-promo .d-flex { flex-direction: column; text-align: center; gap: 16px; }
    .footer-bottom .d-flex { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
    .quote-card-header, .quote-card-body { padding: 20px; }
    .section-title { font-size: 1.5rem; }
    .transport-options { gap: 8px; }
}

@media (max-width: 480px) {
    .hero-indicators { bottom: 16px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    background: var(--bg-light);
    padding: 72px 0;
}

.hiw-step {
    text-align: center;
    padding: 32px 20px;
}

.hiw-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(24,136,241,0.35);
}

.hiw-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.hiw-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.72;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
    padding: 72px 0;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition);
    font-family: inherit;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-question i {
    font-size: 0.78rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 320px; }

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.faq-answer a { color: var(--primary); }

/* Blog listing — stacked cards inside col-lg-8 must not stretch */
.col-lg-8 > .blog-card {
    height: auto;
    margin-bottom: 1.5rem;
}
.col-lg-8 > .blog-card:last-child { margin-bottom: 0; }
.col-lg-8 > .blog-card .blog-card-body p { flex: 0 0 auto; }

/* Footer translate widget */
.footer-translate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}
.footer-translate i { color: var(--primary); }

/* Google Translate SIMPLE widget — dark theme */
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.goog-te-gadget-simple span,
.goog-te-gadget-simple .goog-te-menu-value span {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.78rem !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
}
.goog-te-gadget-simple img { display: none !important; }
.goog-logo-link, .goog-te-gadget > span:not(.goog-te-gadget-simple) { display: none !important; }


/* ── Blog extras ─────────────────────────────────────────── */
.blog-date { font-size: .85rem; color: var(--text-muted); }
.blog-card-title { font-size: 1.2rem; margin: 12px 0 8px; font-weight: 700; color: var(--dark); }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.blog-read-more:hover { gap: 10px; color: var(--primary-dark); }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid #f1f5f9; padding: 8px 0; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { color: var(--text); text-decoration: none; font-size: .9rem; }
.sidebar-links a:hover { color: var(--primary); }

/* ============================================
   BLOG POST PAGE (single)
   ============================================ */
.blog-post-hero {
    position: relative;
    height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.52) 55%, rgba(15,23,42,0.18) 100%);
}
.blog-hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
    width: 100%;
}
.blog-hero-inner .blog-tag {
    background: rgba(24,136,241,0.22);
    color: white;
    border: 1px solid rgba(24,136,241,0.45);
    margin-bottom: 16px;
}
.blog-hero-inner h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.22;
    margin: 0 0 20px;
    max-width: 740px;
}
.blog-post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
}
.blog-post-meta-bar span { display: flex; align-items: center; gap: 7px; }
.blog-post-meta-bar i { color: var(--primary); font-size: 0.78rem; }

.blog-bc-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 11px 0;
}
.blog-single-section {
    background: var(--bg-light);
    padding: 56px 0 72px;
}
.blog-article-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.blog-article-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}
.blog-article-card h2:first-child { margin-top: 0; }
.blog-article-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
}
.blog-article-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.88;
    margin-bottom: 18px;
}
.blog-article-card ul, .blog-article-card ol {
    padding-left: 22px;
    margin-bottom: 18px;
}
.blog-article-card li { color: var(--text); line-height: 1.8; margin-bottom: 7px; }
.blog-article-card a { color: var(--primary); }
.blog-article-card a:hover { text-decoration: underline; }
.blog-article-card .info-box {
    background: rgba(24,136,241,0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.blog-article-card .info-box p,
.blog-article-card .info-box strong { margin: 0; font-size: 0.95rem; color: var(--dark); }

.blog-post-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.post-tag:hover { background: var(--primary); border-color: var(--primary); color: white; }
.blog-share { display: flex; align-items: center; gap: 10px; }
.blog-share span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.share-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all var(--transition);
    text-decoration: none;
}
.share-btn.tw:hover  { background:#1da1f2; border-color:#1da1f2; color:white; }
.share-btn.fb:hover  { background:#1877f2; border-color:#1877f2; color:white; }
.share-btn.wa:hover  { background:#25d366; border-color:#25d366; color:white; }
.share-btn.li:hover  { background:#0a66c2; border-color:#0a66c2; color:white; }

.blog-sidebar-sticky { position: sticky; top: 88px; }
.sidebar-toc {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.sidebar-toc h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { border-bottom: 1px solid var(--bg-light); padding: 7px 0; }
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
    color: var(--text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: color var(--transition);
}
.toc-list a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}
.toc-list a:hover { color: var(--primary); }

.blog-bottom-cta {
    background: var(--dark);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.blog-bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 58%);
    opacity: 0.13;
}
.blog-bottom-cta .cta-inner { position: relative; z-index: 2; text-align: center; }
.blog-bottom-cta h3 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: white; margin-bottom: 12px; }
.blog-bottom-cta p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 32px; }

@media (max-width: 767px) {
    .blog-post-hero { height: 330px; }
    .blog-article-card { padding: 26px 20px; }
    .blog-hero-inner h1 { font-size: 1.45rem; }
    .blog-hero-inner { padding-bottom: 32px; }
}

/* ============================================
   CONTACT PAGE REDESIGN
   ============================================ */
.contact-quick-bar {
    background: var(--primary);
    padding: 18px 0;
}
.contact-quick-bar .cq-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.cq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.88rem;
}
.cq-item .cq-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.cq-item a { color: white; font-weight: 600; }
.cq-item a:hover { opacity: 0.85; }

.contact-main-section { background: var(--bg-light); padding: 64px 0 80px; }

.contact-info-panel {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-info-panel h3 { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 8px; }
.contact-info-panel > p { color: rgba(255,255,255,0.58); font-size: 0.9rem; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 22px; flex: 1; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.cmethod-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(24,136,241,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.cmethod-body { flex: 1; }
.cmethod-body strong {
    display: block;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 4px;
    font-weight: 600;
}
.cmethod-body a, .cmethod-body span {
    color: white;
    font-size: 0.9rem;
    display: block;
    line-height: 1.6;
}
.cmethod-body a:hover { color: var(--primary); }
.contact-panel-social { display: flex; gap: 10px; margin-top: 28px; }
.contact-panel-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.contact-panel-social a:hover { background: var(--primary); color: white; }
.contact-map { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0; }
.contact-map iframe { width: 100%; height: 200px; border: none; display: block; }

.contact-form-enhanced {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-form-enhanced h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-form-enhanced > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.office-card { position: relative; overflow: hidden; }
.office-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.office-card:hover::after { transform: scaleX(1); }
.office-flag { font-size: 2rem; margin-bottom: 14px; line-height: 1; }

@media (max-width: 767px) {
    .contact-info-panel { padding: 28px 22px; }
    .contact-form-enhanced { padding: 28px 22px; }
    .cq-wrap { gap: 12px; }
}
