/* ============================================
   Ilyas Cargo Services - Professional Logistics Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #245f93;
    --primary-dark: #17212b;
    --primary-light: #4f93c4;
    --accent: #b8872f;
    --accent-soft: #f7efe2;
    --text-dark: #1f2a33;
    --text: #4b5864;
    --bg: #f7f9fb;
    --bg-light: #eef2f6;
    --bg-blue: #e8f2fa;
    --surface: #ffffff;
    --gray: #64717d;
    --gray-light: #9aa5af;
    --border: #dce3ea;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 24px rgba(23, 33, 43, 0.08);
    --shadow-lg: 0 22px 46px rgba(23, 33, 43, 0.12);
    --radius: 8px;
    --radius-lg: 10px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 800; line-height: 1.2; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.25rem; }

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #1d4e79);
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 8px 20px rgba(36, 95, 147, 0.2);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1d4e79, var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(36, 95, 147, 0.26);
}
.btn-outline {
    display: inline-block;
    border: 2px solid var(--border);
    color: var(--text-dark);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--surface);
    cursor: pointer;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- Navigation --- */
nav {
    background: rgba(255, 255, 255, 0.96);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(23, 33, 43, 0.05);
    backdrop-filter: blur(12px);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 800;
}
.nav-logo img {
    height: 125px;
    width: auto;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0;
}
.brand-text {
    font-size: 1rem;
    line-height: 1.15;
}
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}
.nav-links a {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 650;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.nav-phone {
    background: var(--primary-dark);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition);
}
.nav-phone:hover { background: var(--primary); }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Section Common --- */
.section { padding: 100px 5%; }
.section-header { text-align: left; margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    color: #835b1d;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 12px 0 0;
    font-size: 1.05rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Hero --- */
.hero {
    background:
        linear-gradient(90deg, rgba(247, 249, 251, 0.98) 0%, rgba(247, 249, 251, 0.94) 54%, rgba(232, 242, 250, 0.86) 100%),
        url('../images/welcome-section-image.jpg') center/cover no-repeat;
    padding: 84px 5% 52px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(36, 95, 147, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 95, 147, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.7), transparent 68%);
}
.hero::after {
    display: none;
}
.hero-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 58px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 690px;
    text-align: left;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 239, 226, 0.95);
    color: #835b1d;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(184, 135, 47, 0.22);
}
.hero h1 {
    margin-bottom: 20px;
    max-width: 720px;
}
.hero h1 em {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}
.hero p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 620px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero-visual {
    position: relative;
    min-height: 430px;
}
.hero-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
}
.dispatch-card {
    position: absolute;
    left: -34px;
    bottom: 30px;
    width: 240px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 227, 234, 0.95);
    border-radius: 10px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}
.dispatch-card small,
.route-pill small {
    display: block;
    color: var(--gray);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.dispatch-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.35rem;
    line-height: 1.15;
    margin: 8px 0 10px;
}
.dispatch-card span {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}
.route-pill {
    position: absolute;
    top: 28px;
    right: -18px;
    width: 210px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: var(--shadow-lg);
}
.route-pill small { color: rgba(255,255,255,0.64); }
.route-pill strong {
    display: block;
    font-size: 1rem;
    margin-top: 7px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark), #243545);
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 0;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: -22px auto 0;
    position: relative;
    z-index: 5;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border-top: 3px solid var(--accent);
}
.stat {
    text-align: left;
    padding: 26px 28px;
    background: transparent;
    border-right: 1px solid rgba(255,255,255,0.1);
    min-width: 0;
}
.stat:last-child {
    border-right: none;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}
.stat-label {
    color: rgba(255,255,255,0.66);
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    box-shadow: 0 1px 0 rgba(23, 33, 43, 0.03);
}
.service-card:hover {
    background: #fff;
    border-color: rgba(36, 95, 147, 0.22);
    border-top-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-blue);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
}
.service-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}
.service-card.featured-service {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}
.service-card.featured-service h3,
.service-card.featured-service p {
    color: #fff;
}
.service-card.featured-service .service-icon {
    background: rgba(255,255,255,0.14);
}
.service-lanes,
.proof-strip,
.join-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lane-card,
.proof-item,
.join-highlight {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    border-left: 3px solid var(--accent);
}
.lane-card strong,
.proof-item strong,
.join-highlight strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}
.lane-card span,
.proof-item span,
.join-highlight span {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
}
.approach-board {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}
.approach-copy {
    position: sticky;
    top: 104px;
    background: linear-gradient(155deg, var(--primary-dark), #243545);
    color: #fff;
    border-radius: 10px;
    padding: 34px;
}
.approach-copy h2 {
    color: #fff;
    margin-bottom: 14px;
}
.approach-copy p {
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.step {
    text-align: left;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1rem;
}
.testimonial-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta {
    padding: 100px 5%;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(23, 33, 43, 0.96), rgba(36, 95, 147, 0.9)),
        url('../images/welcome-section-image.jpg') center/cover no-repeat;
    border-radius: 10px;
    margin: 0 5% 60px;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 100% 28px;
}
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p {
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
    background:
        linear-gradient(135deg, rgba(23, 33, 43, 0.96), rgba(36, 95, 147, 0.9)),
        url('../images/welcome-section-image.jpg') center/cover no-repeat;
    padding: 80px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 46px 46px;
}
.page-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.page-kicker {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: #f1c977;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.page-hero-grid {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.page-hero-grid span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 12px 14px;
    color: rgba(255,255,255,0.84);
    font-size: 0.82rem;
    font-weight: 700;
}

/* --- About Content --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-content.story-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: stretch;
}
.story-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.image-frame {
    position: relative;
    min-height: 430px;
}
.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 10px;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lg);
}
.story-note {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 260px;
    background: linear-gradient(155deg, var(--primary-dark), #243545);
    color: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}
.story-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.story-note span {
    color: rgba(255,255,255,0.7);
    font-size: 0.84rem;
}
.about-values {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-blue);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.value-item h4 { margin-bottom: 4px; font-size: 1rem; }
.value-item p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.about-image-placeholder {
    background: linear-gradient(135deg, var(--bg-blue), #f5ead8);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* --- Forms --- */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.join-layout,
.contact-grid.refined {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}
.join-panel,
.contact-panel {
    background: linear-gradient(155deg, var(--primary-dark), #243545);
    color: #fff;
    border-radius: 10px;
    padding: 34px;
    position: sticky;
    top: 104px;
    overflow: hidden;
}
.join-panel::before,
.contact-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 100% 30px;
    pointer-events: none;
}
.join-panel > *,
.contact-panel > * {
    position: relative;
    z-index: 1;
}
.join-panel h2,
.contact-panel h2 {
    color: #fff;
    margin-bottom: 14px;
}
.join-panel p,
.contact-panel p {
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
}
.panel-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}
.panel-list span {
    display: block;
    padding: 12px 14px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.86);
    font-size: 0.88rem;
    font-weight: 700;
}
.form-container.wide-form {
    max-width: none;
    margin: 0;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group label .required { color: #ef4444; }
.form-group .helper-text {
    color: var(--gray-light);
    font-size: 0.8rem;
    margin-top: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #f8fafc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(36, 95, 147, 0.14);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Role Toggle */
.role-toggle {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}
.role-toggle button {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
}
.role-toggle button.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(36, 95, 147, 0.24);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.checkbox-group label:hover {
    border-color: var(--primary);
}
.checkbox-group input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Contact Info Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-cards {
    display: grid;
    gap: 20px;
}
.contact-info-cards.compact {
    margin-top: 26px;
}
.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-info-card .icon {
    width: 48px;
    height: 48px;
    background: var(--bg-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-panel .contact-info-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}
.contact-panel .contact-info-card h4 {
    color: #fff;
}
.contact-panel .contact-info-card p,
.contact-panel .contact-info-card a {
    color: rgba(255,255,255,0.76);
}
.contact-panel .contact-info-card .icon {
    background: rgba(255,255,255,0.12);
}

/* --- Rates --- */
.rates-content {
    max-width: 800px;
    margin: 0 auto;
}
.rate-highlight {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.rate-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.rate-number small { font-size: 2rem; }
.rate-highlight h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; }
.rate-highlight p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.benefit-card {
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.benefit-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
}
.benefit-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* --- Footer --- */
footer {
    background: #111820;
    padding: 40px 5% 20px;
    color: #94a3b8;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-brand .nav-logo {
    margin-bottom: 12px;
    display: inline-flex;
    color: #fff;
}
.footer-brand .brand-mark {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.footer-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
footer h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 700;
}
footer ul li { margin-bottom: 10px; font-size: 0.85rem; }
footer ul li a {
    color: #94a3b8;
    font-size: 0.85rem;
    transition: color var(--transition);
    white-space: nowrap;
}
footer ul li a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid,
    .testimonial-grid,
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured-service {
        grid-column: span 2;
    }
    .approach-board,
    .join-layout,
    .contact-grid.refined {
        grid-template-columns: 1fr;
    }
    .approach-copy,
    .join-panel,
    .contact-panel {
        position: static;
    }
    .hero-shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .hero-content {
        max-width: 760px;
    }
    .hero-visual {
        max-width: 680px;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
    }
    .stat:nth-child(2) {
        border-right: none;
    }
    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .about-content.story-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .section { padding: 60px 5%; }

    .nav-links, .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    .brand-text {
        max-width: 130px;
        font-size: 0.9rem;
    }

    /* Mobile Menu */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 5%;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .nav-links.mobile-open a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        display: block;
    }
    .nav-links.mobile-open a:last-child { border-bottom: none; }
    .nav-phone.mobile-open {
        display: inline-block;
        position: absolute;
        top: 22px;
        right: 60px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero { padding: 54px 5% 46px; }
    .hero-content { text-align: left; }
    .hero-visual { min-height: auto; }
    .hero-visual img {
        height: 320px;
        border-width: 6px;
    }
    .dispatch-card,
    .route-pill {
        position: static;
        width: 100%;
        margin-top: 12px;
    }
    .hero-btns { flex-direction: column; align-items: center; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        text-align: center;
    }
    .stats-bar { padding: 0; }
    .stat { min-width: 140px; padding: 18px 20px; }
    .stat-number { font-size: 1.8rem; }

    .services-grid,
    .testimonial-grid,
    .steps-grid { grid-template-columns: 1fr; }
    .service-card.featured-service {
        grid-column: span 1;
    }
    .service-lanes,
    .proof-strip,
    .join-highlights,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }
    .story-card,
    .join-panel,
    .contact-panel,
    .approach-copy {
        padding: 26px;
    }
    .image-frame,
    .image-frame img {
        min-height: 300px;
    }
    .story-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .cta { margin: 0 3% 40px; padding: 60px 5%; border-radius: 16px; }
    .page-hero { padding: 50px 5% 40px; }
    .page-hero h1 { font-size: 2rem; }

    .form-container { padding: 24px; }
    .role-toggle { flex-direction: column; }
}

@media (max-width: 480px) {
    .brand-text { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .hero-visual img { height: 240px; }
    .stat { min-width: 100%; }
    .stats-bar {
        grid-template-columns: 1fr;
        align-items: center;
        border-radius: 0;
        margin-top: 0;
    }
    .stat,
    .stat:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat:last-child { border-bottom: none; }
}
