:root{
    --road-navy:#06345f;
    --road-blue:#083f78;
    --road-blue-2:#0b5a9c;
    --road-dark:#062f5c;
    --road-orange:#ff7a3d;
    --road-orange-2:#ff9b66;
    --road-sea:#8fd3df;
    --road-text:#5f7188;
    --road-muted:#7b8da3;
    --road-border:#e6edf5;
    --road-soft:#f6f9fd;
    --road-white:#ffffff;
    --road-shadow:0 18px 44px rgba(8,63,120,.09);
    --road-shadow-strong:0 26px 68px rgba(8,63,120,.18);
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    background:#edf4fb;
}

body{
    color:var(--road-text);
}

.road-page{
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(143,211,223,.24), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,122,61,.10), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#f7fbff 48%,#eef6fb 100%);
}

.road-container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

/* HERO */

.road-hero{
    position:relative;
    padding:112px 0 78px;
}

.road-hero::before{
    content:"";
    position:absolute;
    top:-190px;
    right:-150px;
    width:560px;
    height:560px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(143,211,223,.38), transparent 68%);
    pointer-events:none;
}

.road-hero::after{
    content:"";
    position:absolute;
    left:-190px;
    bottom:-150px;
    width:460px;
    height:460px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,122,61,.13), transparent 68%);
    pointer-events:none;
}

.road-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:48px;
    align-items:center;
}

.road-tag,
.section-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:0 18px;
    border-radius:999px;
    color:var(--road-orange);
    background:rgba(255,122,61,.10);
    border:1px solid rgba(255,122,61,.20);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:2.2px;
    text-transform:uppercase;
}

.road-hero-content h1{
    margin:20px 0 0;
    color:var(--road-blue);
    font-size:clamp(var(--fs-3xl),4vw,var(--fs-4xl));
    font-weight:var(--fw-bold);
    line-height:var(--lh-tight);
    letter-spacing:-.045em;
}

.road-hero-content p{
    max-width:660px;
    margin:22px 0 0;
    color:var(--road-text);
    font-size:var(--fs-base);
    font-weight:var(--fw-regular);
    line-height:var(--lh-relaxed);
}

.road-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.road-btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:0 22px;
    border-radius:999px;
    text-decoration:none;
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    transition:.28s ease;
}

.road-btn.primary{
    color:#fff;
    background:linear-gradient(135deg,var(--road-orange),var(--road-orange-2));
    box-shadow:0 16px 30px rgba(255,122,61,.24);
}

.road-btn.secondary{
    color:var(--road-blue);
    background:#fff;
    border:1px solid rgba(8,63,120,.10);
    box-shadow:0 10px 24px rgba(8,63,120,.06);
}

.road-btn:hover{
    transform:translateY(-4px);
}

.road-mini-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:34px;
    max-width:620px;
}

.road-mini-stats div{
    padding:18px;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 12px 26px rgba(8,63,120,.05);
}

.road-mini-stats strong{
    display:block;
    color:var(--road-blue);
    font-size:var(--fs-lg);
    font-weight:var(--fw-bold);
}

.road-mini-stats span{
    display:block;
    margin-top:5px;
    color:var(--road-text);
    font-size:var(--fs-xs);
    line-height:var(--lh-normal);
}

.road-hero-visual{
    position:relative;
    max-width:520px;
    margin-left:auto;
}

.road-hero-image-box{
    position:relative;
    max-width:520px;
    padding:10px;
    border-radius:28px;
    background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(255,255,255,.76));
    border:1px solid rgba(8,63,120,.10);
    box-shadow:0 20px 48px rgba(8,63,120,.14);
}

.road-hero-image-box::before{
    content:"";
    position:absolute;
    inset:28px -14px -18px 34px;
    z-index:-1;
    border-radius:28px;
    background:linear-gradient(135deg,rgba(255,122,61,.16),rgba(8,63,120,.08));
}

.road-hero-image-box img{
    width:100%;
    max-height:390px;
    height:auto;
    display:block;
    object-fit:contain;
    border-radius:20px;
}

/* COMMON */

.road-section{
    position:relative;
    padding:76px 0;
}

.road-section.white{
    background:#fff;
}

.section-head{
    max-width:780px;
    margin-bottom:38px;
}

.section-head.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.section-head h2{
    margin:16px 0 0;
    color:var(--road-blue);
    font-size:clamp(var(--fs-2xl),3vw,var(--fs-3xl));
    font-weight:var(--fw-bold);
    line-height:1.16;
    letter-spacing:-.035em;
}

.section-head p{
    margin:16px 0 0;
    color:var(--road-text);
    font-size:var(--fs-base);
    font-weight:var(--fw-regular);
    line-height:var(--lh-relaxed);
}

/* TRANSPORT TYPE IMAGE */

.road-type-image-area{
    max-width:940px;
    margin:0 auto 34px;
}

.road-type-image-box{
    position:relative;
    overflow:hidden;
    padding:12px;
    border-radius:30px;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(143,211,223,.20), transparent 32%),
        linear-gradient(145deg,rgba(255,255,255,.98),rgba(246,251,255,.94));
    border:1px solid rgba(8,63,120,.08);
    box-shadow:var(--road-shadow);
}

.road-type-image-box::before{
    content:"";
    position:absolute;
    left:22px;
    top:22px;
    right:22px;
    bottom:22px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.42);
    pointer-events:none;
    z-index:2;
}

.road-type-image-box img{
    width:100%;
    height:360px;
    display:block;
    object-fit:cover;
    border-radius:22px;
}

/* TYPE CARDS */

.road-type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.road-type-card{
    position:relative;
    padding:30px;
    border-radius:26px;
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 16px 38px rgba(8,63,120,.07);
    overflow:hidden;
    transition:.28s ease;
}

.road-type-card::after{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(143,211,223,.18), transparent 70%);
    pointer-events:none;
}

.road-type-card.featured{
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.23), transparent 35%),
        linear-gradient(135deg,var(--road-blue),var(--road-blue-2));
}

.road-type-card:hover{
    transform:translateY(-6px);
}

.road-type-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    border-radius:19px;
    color:var(--road-orange);
    background:rgba(255,122,61,.11);
    font-size:var(--fs-lg);
}

.road-type-card.featured .road-type-icon{
    color:#fff;
    background:rgba(255,255,255,.16);
}

.road-type-card h3{
    margin:0;
    color:var(--road-blue);
    font-size:var(--fs-xl);
    font-weight:var(--fw-semibold);
}

.road-type-card span{
    display:block;
    margin-top:8px;
    color:var(--road-orange);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.road-type-card p{
    margin:14px 0 0;
    color:var(--road-text);
    font-size:var(--fs-sm);
    line-height:var(--lh-relaxed);
}

.road-type-card.featured h3,
.road-type-card.featured span,
.road-type-card.featured p{
    color:#fff;
}

.road-type-card.featured p{
    color:rgba(255,255,255,.82);
}

/* SERVICE AREAS */

.road-service-section{
    background:
        radial-gradient(circle at top right, rgba(143,211,223,.14), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255,122,61,.07), transparent 28%),
        #fff;
}

.road-service-grid{
    display:grid;
    gap:28px;
}

.road-service-card{
    position:relative;
    overflow:hidden;
    padding:32px;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    box-shadow:var(--road-shadow);
}

.road-service-card::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(143,211,223,.22), transparent 68%);
    pointer-events:none;
}

.road-service-card::after{
    content:"";
    position:absolute;
    left:-90px;
    bottom:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,122,61,.10), transparent 68%);
    pointer-events:none;
}

.road-service-card-head{
    position:relative;
    z-index:2;
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:18px;
}

.road-service-icon{
    width:58px;
    height:58px;
    flex:0 0 58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    color:#fff;
    background:linear-gradient(135deg,var(--road-blue),var(--road-blue-2));
    box-shadow:0 16px 32px rgba(8,63,120,.16);
}

.road-service-card.international .road-service-icon{
    background:linear-gradient(135deg,var(--road-orange),var(--road-orange-2));
    box-shadow:0 16px 32px rgba(255,122,61,.20);
}

.road-service-card-head span{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 14px;
    border-radius:999px;
    color:var(--road-orange);
    background:rgba(255,122,61,.10);
    border:1px solid rgba(255,122,61,.18);
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.road-service-card-head h3{
    margin:12px 0 0;
    color:var(--road-blue);
    font-size:clamp(var(--fs-xl),2.2vw,var(--fs-2xl));
    font-weight:var(--fw-bold);
    line-height:1.2;
    letter-spacing:-.025em;
}

.road-service-desc{
    position:relative;
    z-index:2;
    max-width:980px;
    margin:0 0 24px;
    color:var(--road-text);
    font-size:var(--fs-base);
    line-height:var(--lh-relaxed);
}

/* DOMESTIC LIST */

.domestic-region-list{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.domestic-region-box{
    padding:22px;
    border-radius:22px;
    background:
        linear-gradient(145deg,rgba(246,249,253,.96),rgba(255,255,255,.98));
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 12px 26px rgba(8,63,120,.05);
}

.domestic-region-box h4{
    margin:0 0 14px;
    color:var(--road-blue);
    font-size:var(--fs-base);
    font-weight:var(--fw-semibold);
}

.domestic-city-tags{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.domestic-city-tags span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 13px;
    border-radius:999px;
    color:var(--road-blue);
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    font-size:var(--fs-sm);
    font-weight:var(--fw-medium);
    box-shadow:0 8px 18px rgba(8,63,120,.04);
}

.road-service-note{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:22px;
    padding:18px 20px;
    border-radius:20px;
    color:#fff;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.22), transparent 34%),
        linear-gradient(135deg,var(--road-blue),var(--road-blue-2));
    box-shadow:0 18px 38px rgba(8,63,120,.15);
}

.road-service-note i{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    color:#fff;
    background:rgba(255,255,255,.14);
}

.road-service-note span{
    color:rgba(255,255,255,.90);
    font-size:var(--fs-sm);
    line-height:var(--lh-normal);
}

/* COUNTRY TABLE */

.country-table-wrap{
    position:relative;
    z-index:2;
    overflow:hidden;
    border-radius:24px;
    border:1px solid rgba(8,63,120,.10);
    box-shadow:0 16px 34px rgba(8,63,120,.07);
    background:#fff;
}

.country-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
}

.country-table thead th{
    padding:18px 20px;
    color:#fff;
    background:linear-gradient(135deg,var(--road-blue),var(--road-blue-2));
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    text-align:left;
    letter-spacing:.4px;
}

.country-table thead th:first-child{
    width:28%;
}

.country-table tbody td{
    padding:20px;
    vertical-align:top;
    border-bottom:1px solid rgba(8,63,120,.08);
    background:#fff;
}

.country-table tbody tr:nth-child(even) td{
    background:rgba(246,249,253,.72);
}

.country-table tbody tr:last-child td{
    border-bottom:0;
}

.country-table td strong{
    display:block;
    color:var(--road-blue);
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    line-height:var(--lh-normal);
}

.flag-list{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.flag-list span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:34px;
    padding:0 13px;
    border-radius:999px;
    color:var(--road-blue);
    background:#fff;
    border:1px solid rgba(8,63,120,.08);
    font-size:var(--fs-sm);
    font-weight:var(--fw-medium);
    box-shadow:0 8px 18px rgba(8,63,120,.04);
}

.flag-list span img{
    width:20px;
    height:14px;
    flex:0 0 20px;
    display:inline-block;
    object-fit:cover;
    border-radius:3px;
    box-shadow:0 2px 6px rgba(8,63,120,.12);
}

.flag-list span i{
    color:var(--road-orange);
    font-size:13px;
}

/* FINAL CTA */

.road-final-section{
    padding:76px 0 84px;
}

.road-final-box{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:36px;
    align-items:center;
    padding:34px;
    border-radius:34px;
    color:#fff;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.24), transparent 30%),
        radial-gradient(circle at bottom left, rgba(143,211,223,.16), transparent 32%),
        linear-gradient(135deg,var(--road-blue),var(--road-blue-2));
    box-shadow:var(--road-shadow-strong);
    overflow:hidden;
}

.road-final-image{
    padding:12px;
    border-radius:28px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
}

.road-final-image img{
    width:100%;
    max-height:330px;
    height:auto;
    display:block;
    object-fit:contain;
    border-radius:20px;
}

.road-final-content span{
    display:inline-block;
    margin-bottom:10px;
    color:#ffb089;
    font-size:var(--fs-xs);
    font-weight:var(--fw-semibold);
    letter-spacing:2px;
    text-transform:uppercase;
}

.road-final-content h2{
    margin:0;
    color:#fff;
    font-size:var(--fs-3xl);
    font-weight:var(--fw-bold);
    line-height:1.18;
    letter-spacing:-.035em;
}

.road-final-content p{
    max-width:690px;
    margin:12px 0 0;
    color:rgba(255,255,255,.82);
    font-size:var(--fs-base);
    line-height:var(--lh-relaxed);
}

.road-final-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    margin-top:24px;
    padding:14px 22px;
    border-radius:999px;
    color:var(--road-blue);
    background:#fff;
    text-decoration:none;
    font-size:var(--fs-sm);
    font-weight:var(--fw-semibold);
    transition:.28s ease;
}

.road-final-content a:hover{
    transform:translateY(-4px);
    color:#fff;
    background:var(--road-orange);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .road-hero-grid,
    .road-final-box{
        grid-template-columns:1fr;
    }

    .road-hero-visual{
        max-width:620px;
        margin:0 auto;
    }

    .road-hero-image-box{
        max-width:620px;
    }

    .road-type-grid{
        grid-template-columns:1fr;
    }

    .domestic-region-list{
        grid-template-columns:1fr;
    }
}

@media(max-width:760px){
    .road-container{
        width:min(100% - 28px,1180px);
    }

    .road-hero{
        padding:96px 0 58px;
    }

    .road-hero-grid{
        gap:34px;
    }

    .road-mini-stats{
        grid-template-columns:1fr;
    }

    .road-hero-image-box,
    .road-final-image{
        padding:8px;
        border-radius:22px;
    }

    .road-hero-image-box img,
    .road-final-image img{
        border-radius:16px;
    }

    .road-section{
        padding:60px 0;
    }

    .road-type-image-box{
        padding:8px;
        border-radius:22px;
    }

    .road-type-image-box img{
        height:230px;
        border-radius:16px;
    }

    .road-final-box{
        padding:22px;
        border-radius:24px;
    }

    .road-service-card{
        padding:22px;
        border-radius:24px;
    }

    .road-service-card-head{
        flex-direction:column;
    }

    .country-table-wrap{
        overflow-x:auto;
    }

    .country-table{
        min-width:720px;
    }

    .country-table thead th,
    .country-table tbody td{
        padding:16px;
    }

    .road-service-note{
        align-items:flex-start;
    }

    .road-final-section{
        padding:60px 0;
    }

    .road-final-content h2{
        font-size:var(--fs-2xl);
    }
}

@media(max-width:520px){
    .road-actions{
        flex-direction:column;
    }

    .road-btn{
        width:100%;
    }

    .road-mini-stats div,
    .road-type-card{
        padding:18px;
    }

    .road-final-content a{
        width:100%;
    }
}