/* -------------------------------------------------------------
 * Weto Logistics - Custom CSS Stylesheet
 * Primary: Navy (#0b1e36), Secondary: Gold/Orange (#ff9900)
 * ------------------------------------------------------------- */

/* --- CSS Variables & Custom Properties --- */
:root {
    --primary-color: #0b1e36;
    --primary-light: #183358;
    --primary-dark: #050d18;
    --secondary-color: #ff9900;
    --secondary-light: #ffa626;
    --secondary-dark: #d47f00;
    --accent-color: #f59e0b;
    --accent-light: #fef3c7;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    /* Shadow effects */
    --shadow-sm: 0 1px 3px rgba(11, 30, 54, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 30, 54, 0.05), 0 4px 6px -2px rgba(11, 30, 54, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(11, 30, 54, 0.08), 0 10px 10px -5px rgba(11, 30, 54, 0.03);
    --shadow-xl: 0 25px 50px -12px rgba(11, 30, 54, 0.15);
    --shadow-glow: 0 0 15px rgba(255, 153, 0, 0.4);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding: 80px 0;
}

.section-bg-white {
    background-color: var(--bg-white);
}

.section-bg-dark {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.section-bg-dark h2, .section-bg-dark h3 {
    color: var(--bg-white);
}

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

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

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

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

.bg-gold {
    background-color: var(--secondary-color) !important;
}

.bg-navy {
    background-color: var(--primary-color) !important;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.text-muted { color: var(--text-muted); }

/* --- Section Header Utility --- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    background-color: rgba(255, 153, 0, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    position: relative;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-bg-dark .section-desc {
    color: #cbd5e1;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

.btn-navy:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 30, 54, 0.2);
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-navy-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-navy-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.btn-white-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.top-bar-left span i {
    color: var(--secondary-color);
    margin-right: 6px;
}

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

.top-bar-link {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    color: var(--secondary-color);
}

.top-bar-link i {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.social-links a {
    color: #94a3b8;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* --- Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(11, 30, 54, 0.15);
}

.logo-icon i {
    color: var(--secondary-color);
    font-size: 1.35rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

/* --- Mobile Drawer Menu --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close {
    background: transparent;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px 20px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.drawer-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
}

.drawer-link i {
    font-size: 1.1rem;
    width: 24px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
    background-color: rgba(255, 153, 0, 0.1);
    color: var(--secondary-color);
}

.drawer-link:hover i, .drawer-link.active i {
    color: var(--secondary-color);
}

.drawer-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px;
}

.drawer-contact-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 30, 54, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background-color: var(--primary-color);
    padding: 100px 0 160px 0;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(255, 153, 0, 0.12) 0%, transparent 50%),
                linear-gradient(135deg, rgba(11, 30, 54, 0.98) 30%, rgba(24, 51, 88, 0.9) 100%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-shape .shape-fill {
    fill: var(--bg-light);
}

.hero-container-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.hero-subtitle::before {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-family: var(--font-secondary);
}

.hero-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 540px;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(255, 153, 0, 0.2);
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Floating Badges in Hero */
.badge-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.badge-1 {
    bottom: 25px;
    left: -20px;
}

.badge-2 {
    top: 25px;
    right: -10px;
}

.badge-floating i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 153, 0, 0.15);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-floating div p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1;
}

.badge-floating div h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1;
}

/* --- Floating quick action track card --- */
.quick-track-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    margin-bottom: 40px;
}

.quick-track-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px 40px;
    border: 1px solid var(--border-color);
}

.quick-track-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.track-tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.track-tab-btn.active {
    color: var(--primary-color);
}

.track-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width var(--transition-fast);
    border-radius: var(--radius-full);
}

.track-tab-btn.active::after {
    width: 100%;
}

.track-tab-content {
    display: none;
}

.track-tab-content.active {
    display: block;
}

.quick-track-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
}

.input-group-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-icon i {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-track {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    font-size: 1rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.input-track:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(11, 30, 54, 0.08);
}

/* Quick Quote Form */
.quick-quote-form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr 1fr;
    gap: 15px;
    align-items: center;
}

.select-quote {
    width: 100%;
    padding: 16px 20px 16px 45px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    font-size: 0.95rem;
    color: var(--primary-color);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all var(--transition-normal);
}

.select-quote:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(11, 30, 54, 0.08);
}

/* Dynamic Track Result Output */
.track-result-output {
    margin-top: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    display: none;
}

.track-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.track-status-pill {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-in-transit {
    background-color: rgba(255, 153, 0, 0.15);
    color: var(--secondary-dark);
}

.status-delivered {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.track-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.track-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 4px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 66%;
    height: 4px;
    background-color: var(--secondary-color);
    z-index: 2;
    transition: width 1s ease-in-out;
}

.timeline-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-align: center;
}

.step-node {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: bold;
    transition: all var(--transition-normal);
}

.timeline-step.completed .step-node {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

.timeline-step.active .step-node {
    border-color: var(--secondary-color);
    background-color: var(--bg-white);
    color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
    color: var(--text-muted);
}

.timeline-step.completed .step-label,
.timeline-step.active .step-label {
    color: var(--primary-color);
}

.step-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
    background-color: var(--secondary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(11, 30, 54, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

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

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

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform var(--transition-fast);
}

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

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* --- About Preview Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--bg-white);
    width: 85%;
}

.about-img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--bg-white);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    font-family: var(--font-secondary);
    text-align: center;
}

.about-experience-badge h4 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.about-experience-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0 40px 0;
}

.about-feat-item {
    display: flex;
    gap: 12px;
}

.about-feat-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 4px;
}

.about-feat-item h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.about-feat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Counter / Stats Section --- */
.stats-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0;
    position: relative;
}

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

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    padding: 10px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    font-weight: 600;
}

/* --- How It Works Section --- */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.workflow-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.workflow-step {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 153, 0, 0.15);
    color: var(--secondary-dark);
    font-weight: 700;
    font-family: var(--font-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.workflow-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(11, 30, 54, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 20px auto;
    transition: all var(--transition-normal);
}

.workflow-card:hover .workflow-icon {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.workflow-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.workflow-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::after {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 153, 0, 0.12);
    font-size: 3rem;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

.user-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Call To Action Section --- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 153, 0, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text {
    max-width: 650px;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.cta-desc {
    color: #cbd5e1;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

/* --- Footer Section --- */
.footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 0 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--secondary-color);
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact p i {
    margin-top: 4px;
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-secondary);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-newsletter-form {
    display: flex;
}

.footer-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--bg-white);
    padding: 12px 16px;
    font-size: 0.85rem;
}

.footer-input::placeholder {
    color: #64748b;
}

.footer-input:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0 20px;
}

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

.social-circle {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--transition-fast);
}

.social-circle:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    background-color: #030810;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #94a3b8;
}

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

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* --- Back To Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
}

/* --- Form Fields & Validation Styles --- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(11, 30, 54, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-container-grid {
        grid-template-columns: 1fr;
    }
    .hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
    .badge-floating {
        display: none; /* Hide floating badges on tablet/mobile for space */
    }
    .quick-track-container {
        margin-top: -50px;
    }
    .quick-quote-form {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .main-header {
        height: 70px;
    }
    .nav-menu, .hide-mobile {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .hero-section {
        padding: 60px 0 100px 0;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .quick-track-card {
        padding: 20px;
    }
    .quick-track-form {
        grid-template-columns: 1fr;
    }
    .quick-quote-form {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* --- Responsive Grid Utilities --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-layout-sidebar {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.grid-layout-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.grid-form-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.grid-form-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .grid-layout-sidebar,
    .grid-layout-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-form-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-form-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

