/* ===== HIAB Transport Services — Industrial Theme ===== */

:root {
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --navy-light: #253554;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dark: #a6882e;
    --red: #c42032;
    --red-dark: #9e1828;
    --white: #f5f5f3;
    --off-white: #e8e6e1;
    --grey-100: #d4d2cd;
    --grey-200: #a09e99;
    --grey-700: #3a3a3a;
    --grey-900: #1a1a1a;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --container: 1200px;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(0,0,0,0.18);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--grey-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy-deep);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding-top: 4px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: none;
}
.logo-h {
    color: var(--white);
    font-size: 1.15em;
    font-weight: 700;
    background: var(--navy-light);
    padding: 0 2px;
    border-radius: 2px;
}
.logo-rest {
    font-weight: 500;
    color: var(--off-white);
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    padding: 8px 18px;
    border-radius: var(--radius);
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}
.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius);
    margin-left: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--red-dark);
    color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 26px; height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== DRAWER (mobile nav) ===== */
.drawer-backdrop {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--transition);
}
.drawer-backdrop.open {
    opacity: 1;
}
.drawer {
    position: fixed;
    top: 80px; right: 0;
    width: 280px;
    height: calc(100% - 80px);
    background: var(--navy-deep);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 3px solid var(--gold);
    border-top: 1px solid var(--navy-light);
}
.drawer.open {
    transform: translateX(0);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    border-bottom: 1px solid var(--navy-light);
}
.drawer-logo {
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.3;
    color: var(--off-white);
}
.drawer-close {
    width: 36px; height: 36px;
    background: var(--navy-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}
.drawer-close svg {
    width: 20px; height: 20px;
    fill: var(--off-white);
}
.drawer-close:hover {
    background: var(--gold);
}
.drawer-close:hover svg {
    fill: var(--navy-deep);
}
.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}
.drawer-link {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--navy-light);
    transition: color var(--transition), background var(--transition);
}
.drawer-link:hover,
.drawer-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.drawer-cta {
    margin: 20px 24px 0;
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius);
    text-align: center;
    border-bottom: none;
    padding: 14px 24px;
}
.drawer-cta:hover {
    background: var(--red-dark) !important;
    color: var(--white) !important;
}
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--navy-light);
}
.drawer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    transition: color var(--transition);
}
.drawer-phone svg {
    width: 18px; height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}
.drawer-phone:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15,26,46,0.95) 0%, rgba(26,39,68,0.8) 50%, rgba(15,26,46,0.92) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, var(--gold) 40px, var(--gold) 41px);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
}
.hero-badge svg {
    width: 16px; height: 16px;
    fill: var(--gold);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight {
    color: var(--gold);
    display: block;
}
.hero-text {
    font-size: 19px;
    line-height: 1.7;
    color: var(--grey-100);
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
}

/* Diagonal stripe decoration */
.hero-stripe {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.hero-stripe::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(201, 168, 76, 0.06) 18px,
        rgba(201, 168, 76, 0.06) 20px
    );
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 32, 50, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
}
.section-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: var(--grey-200);
    max-width: 560px;
    line-height: 1.6;
}
.section-dark {
    background: var(--navy-deep);
    color: var(--white);
}
.section-dark .section-title {
    color: var(--white);
}
.section-dark .section-label {
    color: var(--gold);
}
.section-grey {
    background: var(--off-white);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 56px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--grey-100);
    border-top: 4px solid var(--gold);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--red);
}
.service-card-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card-icon svg {
    width: 28px; height: 28px;
    fill: var(--gold);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    color: var(--grey-200);
    line-height: 1.7;
}
.service-card .card-stripe {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover .card-stripe {
    transform: scaleX(1);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 48px 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item p {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-100);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(201, 168, 76, 0.04) 30px,
        rgba(201, 168, 76, 0.04) 32px
    );
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-section .section-title {
    color: var(--white);
}
.cta-section .section-subtitle {
    color: var(--grey-100);
    margin: 0 auto 36px;
}
.cta-phones {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.cta-phone-name {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}
.cta-phone-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}
.cta-phone-number:hover {
    color: var(--gold-light);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 48px;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 12px,
        rgba(201, 168, 76, 0.08) 12px,
        rgba(201, 168, 76, 0.08) 14px
    );
}
.about-image-placeholder svg {
    width: 100px; height: 100px;
    fill: var(--gold);
    opacity: 0.3;
    z-index: 1;
}
.about-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
}
.about-text p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
}
.about-feature-check {
    width: 24px; height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-check svg {
    width: 14px; height: 14px;
    fill: var(--navy-deep);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
}
.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg {
    width: 20px; height: 20px;
    fill: var(--gold);
}
.contact-detail-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text span {
    font-size: 16px;
    color: var(--off-white);
    transition: color var(--transition);
}
.contact-detail-text a:hover {
    color: var(--gold-light);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
}
.form-group label .required {
    color: var(--red);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 16px;
    padding: 14px 18px;
    border: 2px solid var(--grey-100);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    color: var(--grey-900);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== FLASH MESSAGES ===== */
.flash-container {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
}
.flash {
    padding: 16px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    animation: fadeInDown 0.4s ease both;
}
.flash-success {
    background: #1a5c2a;
    color: #d4edda;
    border: 1px solid #28a745;
}
.flash-error {
    background: #5c1a1a;
    color: #f8d7da;
    border: 1px solid #dc3545;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--navy-deep);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 20px,
        rgba(201, 168, 76, 0.03) 20px,
        rgba(201, 168, 76, 0.03) 22px
    );
}
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 12px;
}
.page-header p {
    font-size: 18px;
    color: var(--grey-100);
    max-width: 520px;
}
.page-header .breadcrumb {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.page-header .breadcrumb a {
    color: var(--grey-200);
    transition: color var(--transition);
}
.page-header .breadcrumb a:hover {
    color: var(--gold);
}

/* ===== SERVICES PAGE ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--grey-100);
}
.service-detail:last-child {
    border-bottom: none;
}
.service-detail:nth-child(even) {
    direction: rtl;
}
.service-detail:nth-child(even) > * {
    direction: ltr;
}
.service-detail-icon-lg {
    width: 80px; height: 80px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-detail-icon-lg svg {
    width: 40px; height: 40px;
    fill: var(--gold);
}
.service-detail h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 16px;
}
.service-detail p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.75;
    margin-bottom: 12px;
}
.service-detail-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent, transparent 16px,
        rgba(201, 168, 76, 0.06) 16px,
        rgba(201, 168, 76, 0.06) 18px
    );
}

/* ===== ABOUT PAGE ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.value-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--navy-light);
    border-radius: var(--radius);
    border-bottom: 3px solid var(--gold);
}
.value-card-icon {
    width: 64px; height: 64px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.value-card-icon svg {
    width: 28px; height: 28px;
    fill: var(--gold);
}
.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 15px;
    color: var(--grey-100);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-deep);
    color: var(--off-white);
    padding-top: 0;
}
.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 15px;
    color: var(--grey-200);
    margin-bottom: 24px;
    max-width: 300px;
    line-height: 1.6;
}
.footer-heading {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 15px;
    color: var(--grey-200);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-contact-list li {
    margin-bottom: 14px;
}
.footer-contact-list strong {
    color: var(--off-white);
    font-size: 14px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 40px; height: 40px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-white);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
.footer-bottom {
    border-top: 1px solid var(--navy-light);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: var(--grey-200);
}

/* ===== HOW IT WORKS ===== */
.how-section { padding-bottom: 120px; }
.how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 64px;
}
.how-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border-top: 4px solid var(--gold);
    text-align: center;
    position: relative;
}
.how-step-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    letter-spacing: -2px;
    pointer-events: none;
    user-select: none;
}
.how-step-icon {
    width: 68px; height: 68px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.how-step-icon svg {
    width: 30px; height: 30px;
    fill: var(--gold);
}
.how-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}
.how-step p {
    font-size: 15px;
    color: var(--grey-200);
    line-height: 1.7;
}
.how-step-connector {
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    width: 40px;
    margin-top: -40px;
    opacity: 0.5;
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
}
.float-call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(196, 32, 50, 0.5);
    transition: all var(--transition);
}
.float-call-btn svg {
    width: 20px; height: 20px;
    fill: currentColor;
}
.float-call-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(196, 32, 50, 0.6);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .how-step-connector {
        display: none;
    }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy-deep);
    border-top: 3px solid var(--gold);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottom-nav-inner {
    display: flex;
    height: 100%;
}
.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--grey-200);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 4px;
    border-right: 1px solid var(--navy-light);
}
.mobile-nav-item:last-child { border-right: none; }
.mobile-nav-item svg {
    width: 22px; height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--gold);
}
.mobile-nav-item.mobile-nav-cta {
    background: var(--red);
    color: var(--white);
}
.mobile-nav-item.mobile-nav-cta:hover {
    background: var(--red-dark);
    color: var(--white);
}

@media (max-width: 768px) {
    .float-call { display: none; }
    .nav-toggle { display: none; }
    .main-nav { display: none; }
    .drawer-backdrop { display: none; }
    .drawer { display: none; }
    .mobile-bottom-nav { display: block; }
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    .hero { min-height: 80vh; }
    .hero-stripe { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    section { padding: 72px 0; }
}
