:root {
    --primary-dark: #0f1837;
    --brand-yellow: #fdb813;
    --brand-orange: #f26f21;
    --bg-light: #f4f6f9;
    --white: #ffffff;
    --text-dark: #222222;
    --text-grey: #666666;
    --text-muted: #9e9e9e;
    --border-color: #e2e8f0;
    --radius-lg: 12px;
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.p-25 { padding: 25px; }
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.flex-1 { flex: 1; }
.w-20 { width: 20%; min-width: 80px; }
.w-100px { width: 100px; }
.text-muted { color: var(--text-muted); }
.text-dark-blue { color: var(--primary-dark); font-weight: 600; }
.text-yellow { color: var(--brand-yellow); }

.relative { position: relative; }

/* Header Top */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--white);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-custom {
    font-size: 28px;
    color: var(--brand-orange);
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-hilaad {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo-express {
    font-size: 13px;
    font-weight: 800;
    font-style: italic;
    color: var(--brand-yellow);
}

.auth-divider {
    width: 1px;
    height: 16px;
    background-color: #ddd;
    margin: 0 15px;
}

.top-nav-link {
    font-size: 13px;
    font-weight: 600;
}

.phone-numbers {
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-right: 20px;
}

.phone-numbers p {
    margin: 0;
}

.btn-auth {
    background-color: var(--brand-yellow);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-auth:hover {
    opacity: 0.9;
}

.auth-divider-sm {
    color: rgba(0,0,0,0.2);
    margin: 0 4px;
}

/* Main Navigation */
.main-nav-bar {
    background-color: var(--primary-dark);
    border-bottom: 4px solid var(--brand-yellow);
}

.nav-flex {
    display: flex;
    align-items: stretch;
}

.nav-home-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background-color: rgba(255,255,255,0.05); /* Slight highlight */
    color: var(--white);
    font-size: 18px;
}

.nav-ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 20px;
}

.nav-ul li a {
    display: block;
    padding: 16px 20px;
    color: var(--border-color);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-ul li a:hover, .nav-ul li a span {
    color: var(--white);
}

.nav-dot {
    color: var(--brand-yellow) !important;
}

/* Split Hero Section */
.split-hero {
    position: relative;
    min-height: 520px;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 58%;
    background: url('../images/hero.png') no-repeat top center;
    background-size: cover;
    z-index: 1;
}

/* The dark blue slanted area that wraps the text */
.hero-left-bg {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 60%;
    background-color: var(--primary-dark);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    z-index: 2;
}

/* The yellow triangle wedge on the bottom-left corner */
.hero-left-bg-bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 45%;
    height: 38%;
    background-color: var(--brand-yellow);
    clip-path: polygon(0 0, 80% 100%, 0 100%);
    z-index: 3;
}

.hero-container {
    position: relative;
    padding: 50px 15px 60px;
    z-index: 5;
}

.hero-main-title {
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-quote-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 5;
}

.quote-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.quote-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.quote-input-group {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 15px;
}

.form-address-group {
    margin-bottom: 15px;
}

.form-split {
    display: flex;
}

.quote-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #444;
}

select.quote-input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 35px;
    cursor: pointer;
}

.input-readonly {
    cursor: not-allowed;
    background-color: #f2f2f2;
}

.dropdown-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #888;
    pointer-events: none;
    font-size: 12px;
}

.kg-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.quote-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.max-weight {
    font-size: 11px;
    color: #888;
}

.price-value {
    font-size: 11px;
    color: #888;
}

.price-value strong {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 800;
}

.quote-action-row {
    display: flex;
    gap: 15px;
}

.btn {
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    padding: 12px;
}

.btn-quote-solid {
    flex: 1;
    background-color: var(--brand-yellow);
    color: var(--primary-dark);
}

.btn-quote-solid:hover { opacity: 0.9; }

.btn-quote-light {
    flex: 1;
    background-color: #e6edf5;
    color: var(--primary-dark);
}

.btn-quote-light:hover { background-color: #d6dfec; }

/* Body Sections & Grid layout */
.body-sections {
    padding: 60px 15px;
}

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

/* Base Cards */
.section-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.section-title {
    font-size: 18px;
    color: var(--primary-dark);
    font-weight: 700;
}

.quote-mini-row {
    display: flex;
    gap: 10px;
}

.mini-input {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    flex: 1;
    appearance: none;
    background: #fcfcfc url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 10px center;
    background-size: 14px;
}

input.mini-input {
    background: #fcfcfc;
}

.btn-dark {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px;
}

.mini-disclaimer {
    font-size: 10px;
    color: var(--text-muted);
}

.van-image-card {
    width: 100%;
    height: 240px;
    background: url('../images/van.png') no-repeat center;
    background-size: cover;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* This places the logo subtly inside the van image (optional styling based on their HTML element) */
.van-overlay-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 24, 55, 0.85);
    padding: 15px;
    border-radius: 8px;
}

/* Right side agent card */
.agent-card {
    background-color: var(--primary-dark);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.agent-card-content {
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.agent-title {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.agent-text {
    color: #cbd5e1;
    font-size: 15px;
    max-width: 300px;
}

.btn-yellow-solid {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--brand-yellow);
    color: var(--primary-dark);
    border-radius: 4px;
    font-weight: 700;
}

/* Global Banner */
.global-banner {
    background: linear-gradient(rgba(15, 24, 55, 0.8), rgba(15, 24, 55, 0.8)), url('https://images.unsplash.com/photo-1541888049641-7a63d91ae257?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}

.global-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.global-text {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 25px;
}

/* Features block */
.features-row {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-item i {
    font-size: 22px;
}

/* Bottom Yellow Banner */
.bottom-yellow-banner {
    background-color: var(--brand-orange);
    padding: 40px 0;
}

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

.banner-headline {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.banner-sub {
    color: var(--primary-dark);
    font-size: 15px;
}

.btn-dark-text-yellow {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-dark);
    color: var(--brand-yellow);
    font-weight: 700;
    border-radius: 4px;
}

/* Modal styling from the user's code snippet */
.modal-overlay {
    display: none; /* functional overlay */
}

/* --- Services Page Styles --- */
.page-header { background: var(--primary-dark); color: white; padding: 60px 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: -30px; position: relative; z-index: 10; margin-bottom: 60px;}
.service-box { background: white; padding: 40px 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center; transition: transform 0.3s; border-bottom: 4px solid transparent; }
.service-box:hover { transform: translateY(-10px); border-bottom-color: var(--brand-orange); }
.service-icon-lg { font-size: 3.5rem; color: var(--brand-orange); margin-bottom: 20px; }
.service-box h3 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 15px; }
.service-box p { color: var(--text-muted); margin-bottom: 25px; }

.btn-warning-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--brand-yellow);
    color: var(--brand-yellow);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-warning-outline:hover {
    background-color: var(--brand-yellow);
    color: var(--primary-dark);
}
 
 