/* =========================================================
   RelayRun Courier - Global Stylesheet
   Shared by all pages
========================================================= */

/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
    scroll-padding-top:90px;
    scroll-behavior:smooth;
}

body{
    width:100%;
    overflow-x:hidden;
    margin:0;
    padding-top:92px;
    font-family:Arial,sans-serif;
    background:#f4f6fa;
    color:#333;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

/* =========================================================
   FIXED HEADER
========================================================= */

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:9999;
    background:rgba(17,17,17,.97);
    color:#fff;
    padding:18px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    box-shadow:0 2px 15px rgba(0,0,0,.18);
    transition:all .3s ease;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

/* =========================================================
   LOGO
========================================================= */

header h2{
    margin:0;
    font-size:1.7rem;
}

.logo a{
    text-decoration:none;
    color:#fff;
    display:inline-block;
}

.logo h2{
    margin:0;
    font-size:30px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s;
}

.logo h2:hover{
    color:#e30613;
}

/* =========================================================
   NAVIGATION
========================================================= */

nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

nav a{
    position:relative;
    padding:10px 4px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:.3s;
}

nav a:hover{
    color:#fff;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:#e30613;
    transition:.3s;
    border-radius:20px;
}

nav a:hover::after{
    width:100%;
}

nav a.active{
    color:#fff;
}

nav a.active::after{
    width:100%;
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:15px;
}

.lang-btn{
    background:#fff;
    border:2px solid #e30613;
    border-radius:10px;
    padding:10px 18px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
    font-size:14px;
}

.lang-btn:hover{
    background:#e30613;
    color:#fff;
    transform:translateY(-2px);
}

.lang-btn.active{
    background:#e30613;
    color:#fff;
    box-shadow:0 8px 18px rgba(227,6,19,.35);
}

/* =========================================================
   HERO
========================================================= */

.hero{
    background:#e30613;
    color:#fff;
    padding:70px 5%;
    text-align:center;
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.hero h1{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    max-width:900px;
    margin:auto;
    text-shadow:0 4px 12px rgba(0,0,0,.30);
}

.hero p{
    max-width:760px;
    margin:20px auto;
    font-size:20px;
    line-height:1.8;
    opacity:.98;
}

.hero-highlights{
    margin:25px auto 0;
    font-size:26px;
    font-weight:700;
    line-height:1.5;
    max-width:100%;
    overflow-wrap:anywhere;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
    width:100%;
}

.whatsapp-hero-btn{
    background:#25D366;
}

.whatsapp-hero-btn:hover{
    background:#1EBE5D;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#111;
    color:#fff;
    padding:18px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    transition:
        background-color .3s,
        color .3s,
        transform .3s,
        box-shadow .3s;
    box-shadow:0 12px 25px rgba(0,0,0,.25);
    width:auto;
    max-width:100%;
    min-width:0;
}

.btn:hover{
    background:#000;
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(0,0,0,.30);
}

/* =========================================================
   SECTIONS
========================================================= */

.section{
    background:#fff;
    margin:20px auto;
    padding:35px;
    width:min(1100px,calc(100% - 32px));
    max-width:100%;
    border-radius:12px;
    box-shadow:0 8px 18px rgba(0,0,0,.05);
    overflow:hidden;
}

.section h2{
    margin-top:0;
    font-size:1.5rem;
}

.section-intro{
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.8;
}

ul{
    padding-left:20px;
    line-height:1.9;
}

.center{
    text-align:center;
}

/* =========================================================
   STATS BAR
========================================================= */

.stats-bar{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding:25px 16px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    overflow:hidden;
}

.stat-box{
    background:#fff;
    border-radius:14px;
    padding:22px 15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.07);
    border-top:4px solid #e30613;
    min-width:0;
    overflow:hidden;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 28px rgba(0,0,0,.12);
}

.stat-number{
    font-size:38px;
    line-height:1;
    margin-bottom:10px;
}

.stat-title{
    font-size:17px;
    font-weight:700;
    color:#111;
    line-height:1.35;
    overflow-wrap:anywhere;
}

.stat-text{
    margin-top:7px;
    font-size:14px;
    color:#666;
    line-height:1.5;
    overflow-wrap:anywhere;
}

/* =========================================================
   FEATURES
========================================================= */

.features-grid{
    width:100%;
    max-width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-top:5px solid #e30613;
    transition:.35s;
    position:relative;
    overflow:hidden;
    min-width:0;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.8s;
}

.feature-card:hover::before{
    left:160%;
}

.feature-icon{
    font-size:54px;
    margin-bottom:20px;
    transition:.35s;
}

.feature-card:hover .feature-icon{
    transform:scale(1.15) rotate(5deg);
}

.feature-card h3{
    margin-bottom:15px;
    color:#111;
    font-size:24px;
    font-weight:700;
}

.feature-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/* =========================================================
   CITY LINKS
========================================================= */

.city-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:stretch;
    gap:15px;
    width:100%;
    max-width:100%;
    margin-top:25px;
}

.city-links .btn{
    flex:1;
    min-width:0;
    max-width:300px;
    text-align:center;
}

/* =========================================================
   CITY CARDS
========================================================= */

.city-card{
    display:block;
    background:#fff;
    padding:32px;
    border-radius:18px;
    text-decoration:none;
    color:#333;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-left:5px solid #e30613;
    transition:.35s;
    position:relative;
    overflow:hidden;
    min-width:0;
}

.city-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 40px rgba(0,0,0,.15);
}

.city-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.8s;
}

.city-card:hover::before{
    left:160%;
}

.city-icon{
    font-size:52px;
    margin-bottom:20px;
    transition:.35s;
}

.city-card:hover .city-icon{
    transform:scale(1.15);
}

.city-card h3{
    margin-bottom:15px;
    font-size:26px;
    font-weight:700;
    color:#111;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    width:100%;
    max-width:100%;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-top:4px solid #e30613;
    min-width:0;
    overflow:hidden;
}

.review-stars{
    color:#e30613;
    font-size:24px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.verified-review{
    margin-top:10px;
    font-size:14px;
    color:#666;
}

/* =========================================================
   FAQ
========================================================= */

.faq-container{
    max-width:900px;
    margin:30px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    border:1px solid #eee;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    color:#111;
}

.faq-question:hover{
    background:#fafafa;
}

.faq-icon{
    flex-shrink:0;
    font-size:28px;
    font-weight:bold;
    color:#e30613;
    transition:.35s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
    max-height:500px;
    padding-bottom:10px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer p{
    padding:0 24px 24px;
    margin:0;
    line-height:1.9;
    font-size:16px;
    color:#555;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section{
    background:linear-gradient(
        135deg,
        #e30613,
        #b50010
    );
    color:#fff;
    text-align:center;
    border-radius:20px;
    padding:70px 30px;
    margin:70px auto;
    width:min(1100px,calc(100% - 32px));
    max-width:100%;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    overflow:hidden;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    opacity:.95;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    width:100%;
    margin-top:40px;
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1EBE5D;
}

.phone-btn{
    background:#111;
}

.phone-btn:hover{
    background:#000;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    background:#111;
    color:#fff;
    margin-top:80px;
    padding:60px 5% 25px;
    width:100%;
    overflow:hidden;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

.footer-column{
    min-width:0;
}

.footer-column h3{
    margin-bottom:20px;
    font-size:22px;
    color:#fff;
}

.footer-column p{
    line-height:1.8;
    color:#ccc;
    overflow-wrap:anywhere;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li{
    margin-bottom:12px;
}

.footer-column a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
    overflow-wrap:anywhere;
}

.footer-column a:hover{
    color:#fff;
    padding-left:6px;
}

.site-footer hr{
    border:none;
    height:1px;
    background:#333;
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    color:#bbb;
    font-size:15px;
}

/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-links a{
    font-size:24px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-4px);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float{
    position:fixed;
    bottom:18px;
    right:18px;
    background:#25D366;
    color:#fff;
    font-size:28px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

/* =========================================================
   MEDIA
========================================================= */

img,
iframe,
video{
    max-width:100%;
    height:auto;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus{
    outline:3px solid #e30613;
    outline-offset:3px;
}

.skip-link{
    position:absolute;
    left:-9999px;
    top:auto;
}

.skip-link:focus{
    left:20px;
    top:20px;
    background:#111;
    color:#fff;
    padding:15px;
    z-index:99999;
}

/* =========================================================
   HERO ANIMATION
========================================================= */

.hero h1,
.hero p,
.hero .btn{
    animation:fadeUp .8s ease both;
}

.hero p{
    animation-delay:.15s;
}

.hero .btn{
    animation-delay:.30s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    body{
        padding-top:112px;
    }

    /* HEADER */

    header{
        position:fixed;
        top:0;
        left:0;
        right:0;
        width:100%;
        min-height:0;
        padding:8px 12px 9px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:6px;
        flex-wrap:nowrap;
        z-index:9999;
        box-shadow:0 2px 12px rgba(0,0,0,.25);
    }

    /* LOGO */

    .logo{
        width:100%;
        text-align:center;
    }

    .logo h2{
        margin:0;
        font-size:21px;
        line-height:1.2;
        letter-spacing:.2px;
        white-space:nowrap;
    }

    /* NAVIGATION */

    nav{
        width:100%;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:center;
        gap:12px;
        margin:0;
        flex-wrap:nowrap;
    }

    nav a{
        font-size:13px;
        line-height:1;
        padding:5px 2px;
        white-space:nowrap;
    }

    /* LANGUAGE */

    .language-switcher{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:5px;
        margin:0;
        width:auto;
    }

    .lang-btn{
        width:auto;
        min-width:0;
        padding:5px 9px;
        border-radius:7px;
        font-size:11px;
        line-height:1.2;
    }

    /* HERO */

    .hero{
        width:100%;
        max-width:100%;
        padding:55px 18px;
        overflow:hidden;
    }

    .hero h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero p{
        font-size:17px;
        line-height:1.7;
    }

    .hero-highlights{
        font-size:18px;
        line-height:1.7;
        margin-top:20px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:14px;
        margin-top:28px;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:320px;
        min-width:0;
    }

    /* BUTTONS */

    .btn{
        width:100%;
        max-width:320px;
        min-width:0;
    }

    /* SECTIONS */

    .section{
        width:calc(100% - 20px);
        max-width:100%;
        margin:10px auto;
        padding:24px 18px;
    }

    /* STATS */

    .stats-bar{
        width:100%;
        padding:18px 10px;
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .stat-box{
        padding:18px 10px;
        border-radius:12px;
    }

    .stat-number{
        font-size:32px;
    }

    .stat-title{
        font-size:15px;
    }

    .stat-text{
        font-size:13px;
        line-height:1.4;
    }

    /* FEATURES */

    .features-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    /* REVIEWS */

    .reviews-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    /* CITY LINKS */

    .city-links{
        width:100%;
        flex-direction:column;
        align-items:center;
    }

    .city-links .btn{
        width:100%;
        max-width:320px;
        min-width:0;
    }

    /* CTA */

    .cta-section{
        width:calc(100% - 20px);
        margin:40px auto;
        padding:50px 20px;
    }

    .cta-section h2{
        font-size:32px;
    }

    .cta-section p{
        font-size:18px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .cta-buttons .btn{
        width:100%;
        max-width:320px;
    }

    /* FAQ */

    .faq-question{
        padding:20px;
        font-size:16px;
    }

    .faq-answer p{
        padding:0 20px 20px;
        font-size:15px;
    }

    /* FOOTER */

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-column a:hover{
        padding-left:0;
    }

    .social-links{
        justify-content:center;
    }

    /* WHATSAPP */

    .whatsapp-float{
        width:55px;
        height:55px;
        right:14px;
        bottom:14px;
        font-size:25px;
    }

    /* MEDIA */

    img,
    iframe,
    video{
        max-width:100%;
        height:auto;
    }
}

/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media(max-width:380px){

    body{
        padding-top:110px;
    }

    header{
        padding-left:8px;
        padding-right:8px;
    }

    .logo h2{
        font-size:19px;
    }

    nav{
        gap:8px;
    }

    nav a{
        font-size:12px;
    }

    .lang-btn{
        padding:4px 7px;
        font-size:10px;
    }

    .hero{
        padding:45px 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-highlights{
        font-size:16px;
    }

    .stats-bar{
        grid-template-columns:1fr;
    }

    .stat-box{
        padding:18px 15px;
    }

    .section{
        width:calc(100% - 16px);
        padding:22px 15px;
    }

    .cta-section{
        width:calc(100% - 16px);
        padding:45px 15px;
    }
}

/* =========================================
   BOOKING PAGE FOUNDATION
========================================= */

body{
    overflow-x:hidden;
}

/* Space below the fixed RelayRun header */
body:has(.container){
    padding-top:100px;
}

.container{
    width:min(1100px, calc(100% - 32px));
    margin:30px auto 50px;
    padding:0;
}

.card{
    width:100%;
    background:#fff;
    padding:40px;
    border-radius:14px;
    box-shadow:0 8px 22px rgba(0,0,0,.07);
    overflow:hidden;
}

.card h1{
    margin:0;
    padding:0;
    text-align:center;
    color:#111;
    font-size:38px;
    line-height:1.25;
    font-weight:800;
}

.card h2{
    margin:12px 0 0;
    padding:0;
    text-align:center;
    color:#444;
    font-size:22px;
    line-height:1.4;
    font-weight:400;
}

.card > p{
    max-width:850px;
    margin:18px auto 0;
    padding:0;
    text-align:center;
    color:#444;
    font-size:17px;
    line-height:1.7;
}

.booking-trust{
    display:flex;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
    gap:12px;
    width:100%;
    margin:30px auto 20px;
}

.booking-badge{
    flex:1 1 200px;
    max-width:240px;
    padding:13px 16px;
    background:#f4f6fa;
    border:1px solid #e1e4e8;
    border-radius:10px;
    text-align:center;
    font-weight:700;
    font-size:15px;
    line-height:1.4;
}

.booking-alert{
    width:100%;
    max-width:850px;
    margin:20px auto 0;
    padding:14px 18px;
    background:#fff5f5;
    border-left:4px solid #e30613;
    border-radius:8px;
    text-align:center;
}

.booking-alert p{
    margin:0;
    padding:0;
    font-weight:700;
    line-height:1.5;
}


/* =========================================
   BOOKING PAGE — MOBILE
========================================= */

@media(max-width:768px){

    body:has(.container){
        padding-top:112px;
    }

    .container{
        width:calc(100% - 20px);
        margin:16px auto 35px;
    }

    .card{
        padding:26px 18px;
        border-radius:12px;
    }

    .card h1{
        font-size:29px;
        line-height:1.25;
    }

    .card h2{
        font-size:19px;
        line-height:1.45;
    }

    .card > p{
        font-size:16px;
        line-height:1.65;
    }

    .booking-trust{
        flex-direction:column;
        gap:10px;
        margin-top:24px;
    }

    .booking-badge{
        width:100%;
        max-width:none;
        flex:0 0 auto;
        padding:11px 14px;
    }

    .booking-alert{
        margin-top:18px;
        padding:13px 14px;
    }

}
