/* =========================================================
   RelayRun Courier - Global Stylesheet
   Shared by all pages
========================================================= */
:root{
    --primary:#3CC8D4;
  --primary-dark:#00AFC0;
  --primary-soft:#E9FBFD;
  --dark:#111827;
  --text:#26343b;
  --muted:#64727a;
  --white:#ffffff;
  --page-bg:#f6f7f9;
  --border:#e5e7eb;

}


/* =========================================================
   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:#3CC8D4;
    color:#061722;
    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(6,23,34,.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:#3CC8D4;
}

/* =========================================================
   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:#3CC8D4;
    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 #3CC8D4;
    border-radius:10px;
    padding:10px 18px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
    font-size:14px;
}

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

.lang-btn.active{
    background:#3CC8D4;
    color:#fff;
    box-shadow:0 8px 18px rgba(60,200,212,.35);
}

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

.hero{
    background:#3CC8D4;
    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:#061722;
    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:#061722;
    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 #3CC8D4;
    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:#061722;
    line-height:1.35;
    overflow-wrap:anywhere;
}

.stat-text{
    margin-top:7px;
    font-size:14px;
    color:#52666E;
    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 #3CC8D4;
    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:#061722;
    font-size:24px;
    font-weight:700;
}

.feature-card p{
    font-size:16px;
    line-height:1.8;
    color:#52666E;
    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:#061722;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-left:5px solid #3CC8D4;
    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:#061722;
}

/* =========================================================
   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 #3CC8D4;
    min-width:0;
    overflow:hidden;
}

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

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

/* =========================================================
   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 #DCE7EA;
}

.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:#061722;
}

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

.faq-icon{
    flex-shrink:0;
    font-size:28px;
    font-weight:bold;
    color:#3CC8D4;
    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:#29414A;
}

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

.cta-section{
    background:linear-gradient(
        135deg,
        #3CC8D4,
        #00CFE8
    );
    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:#061722;
}

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

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

.site-footer{
    background:#061722;
    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:#C9D5D9;
    overflow-wrap:anywhere;
}

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

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

.footer-column a{
    color:#D9E2E5;
    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:#061722;
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    color:#AABBC1;
    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 #3CC8D4;
    outline-offset:3px;
}

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

.skip-link:focus{
    left:20px;
    top:20px;
    background:#061722;
    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:#061722;
    font-size:38px;
    line-height:1.25;
    font-weight:800;
}

.card h2{
    margin:12px 0 0;
    padding:0;
    text-align:center;
    color:#29414A;
    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:#29414A;
    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:#F4F8F9;
    border:1px solid #DCE7EA;
    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:#EAFBFD;
    border-left:4px solid #3CC8D4;
    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;
    }

}
/* =========================================
   BOOKING — WHY CHOOSE RELAYRUN
========================================= */

.info-box{
    width:100%;
    margin:32px 0 0;
    padding:30px;
    background:#f8f9fb;
    border:1px solid #DCE7EA;
    border-radius:14px;
}

.info-box > h2{
    margin:0 0 26px;
    padding:0;
    text-align:center;
    color:#061722;
    font-size:28px;
    line-height:1.3;
}

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

.feature-card{
    min-width:0;
    background:#fff;
    border:1px solid #DCE7EA;
    border-radius:12px;
    padding:24px 18px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
    transition:transform .25s ease,box-shadow .25s ease;
}

.feature-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.feature-icon{
    font-size:38px;
    line-height:1;
    margin-bottom:14px;
}

.feature-card h3{
    margin:0 0 10px;
    color:#061722;
    font-size:19px;
    line-height:1.35;
}

.feature-card p{
    margin:0;
    color:#29414A;
    font-size:15px;
    line-height:1.65;
}


/* =========================================
   WHY CHOOSE — MOBILE
========================================= */

@media(max-width:768px){

    .info-box{
        margin-top:24px;
        padding:22px 14px;
        border-radius:12px;
    }

    .info-box > h2{
        font-size:24px;
        margin-bottom:20px;
    }

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

    .feature-card{
        width:100%;
        padding:21px 15px;
    }

    .feature-icon{
        font-size:34px;
    }

    .feature-card h3{
        font-size:18px;
    }

    .feature-card p{
        font-size:15px;
    }

}
/* =========================================
   BOOKING — WHY CHOOSE RELAYRUN
========================================= */

.info-box{
    width:100%;
    margin:32px 0 0;
    padding:30px;
    background:#f8f9fb;
    border:1px solid #DCE7EA;
    border-radius:14px;
}

.info-box > h2{
    margin:0 0 26px;
    padding:0;
    text-align:center;
    color:#061722;
    font-size:28px;
    line-height:1.3;
}

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

.feature-card{
    min-width:0;
    background:#fff;
    border:1px solid #DCE7EA;
    border-radius:12px;
    padding:24px 18px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.04);
    transition:transform .25s ease,box-shadow .25s ease;
}

.feature-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.feature-icon{
    font-size:38px;
    line-height:1;
    margin-bottom:14px;
}

.feature-card h3{
    margin:0 0 10px;
    color:#061722;
    font-size:19px;
    line-height:1.35;
}

.feature-card p{
    margin:0;
    color:#29414A;
    font-size:15px;
    line-height:1.65;
}


/* =========================================
   WHY CHOOSE — MOBILE
========================================= */

@media(max-width:768px){

    .info-box{
        margin-top:24px;
        padding:22px 14px;
        border-radius:12px;
    }

    .info-box > h2{
        font-size:24px;
        margin-bottom:20px;
    }

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

    .feature-card{
        width:100%;
        padding:21px 15px;
    }

    .feature-icon{
        font-size:34px;
    }

    .feature-card h3{
        font-size:18px;
    }

    .feature-card p{
        font-size:15px;
    }

}
/* =========================================
   BOOKING — SECTION TITLE
========================================= */

.booking-section-title{
    width:100%;
    margin:35px 0 22px;
    padding:0;
    text-align:left;
}

.booking-section-title h2{
    margin:0;
    padding:0;
    color:#061722;
    font-size:28px;
    line-height:1.3;
    font-weight:800;
}

.booking-section-title p{
    margin:8px 0 0;
    color:#52666E;
    font-size:16px;
    line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

    .booking-section-title{
        margin:28px 0 18px;
    }

    .booking-section-title h2{
        font-size:24px;
    }

    .booking-section-title p{
        font-size:15px;
    }

}
/* =========================================
   BOOKING — FORM SECTIONS
========================================= */

.form-section{
    width:100%;
    margin:25px 0;
    padding:25px;
    background:#fff;
    border:1px solid #DCE7EA;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.035);
}

.form-section-title{
    margin:0 0 22px;
}

.form-section-title h3{
    margin:0;
    color:#061722;
    font-size:22px;
    line-height:1.35;
    font-weight:800;
}

.form-section-title p{
    margin:6px 0 0;
    color:#52666E;
    font-size:15px;
    line-height:1.6;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    width:100%;
}

.form-group{
    min-width:0;
}

.form-group-full{
    grid-column:1 / -1;
}

.form-group label{
    display:block;
    margin:0 0 7px;
    color:#222;
    font-size:15px;
    font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
    display:block;
    width:100%;
    max-width:100%;
    min-width:0;
    padding:13px 14px;
    border:1px solid #C9D7DC;
    border-radius:8px;
    background:#fff;
    color:#222;
    font-family:Arial,sans-serif;
    font-size:16px;
    line-height:1.4;
    outline:none;
    transition:border-color .2s ease,box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#3CC8D4;
    box-shadow:0 0 0 3px rgba(60,200,212,.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#7D9097;
}


/* =========================================
   FORM — MOBILE
========================================= */

@media(max-width:768px){

    .form-section{
        margin:20px 0;
        padding:20px 15px;
    }

    .form-section-title h3{
        font-size:20px;
    }

    .form-section-title p{
        font-size:14px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .form-group-full{
        grid-column:auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        font-size:16px;
        padding:12px 13px;
    }

}
/* =========================================
   BOOKING — DELIVERY FORM
========================================= */

.field-help{
    display:block;
    margin:-2px 0 8px;
    color:#647981;
    font-size:13px;
    line-height:1.5;
}

.form-group textarea{
    min-height:130px;
    resize:vertical;
}

.form-group select{
    cursor:pointer;
    appearance:auto;
}


/* =========================================
   DELIVERY FORM — MOBILE
========================================= */

@media(max-width:768px){

    .field-help{
        font-size:13px;
    }

    .form-group textarea{
        min-height:120px;
    }

}
/* =========================================================
   RELAYRUN COURIER — BOOKING PAGE FIX
   Layout only — DOES NOT change booking functionality
========================================================= */


/* =========================
   BOOKING MAIN CONTAINER
========================= */

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

.container .card{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding:35px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.07);
}


/* =========================
   BOOKING PAGE TOP TITLE
========================= */

.booking-section-title{
    width:100%;
    margin:0 0 30px;
    text-align:left;
}

.booking-section-title h2{
    margin:0 0 8px;
    color:#061722;
    font-size:30px;
    line-height:1.25;
    font-weight:800;
}

.booking-section-title p{
    margin:0;
    color:#29414A;
    font-size:17px;
    line-height:1.6;
}


/* =========================
   FORM SECTION
========================= */

.form-section{
    width:100%;
    margin:25px 0;
    padding:25px;
    background:#fff;
    border:1px solid #DCE7EA;
    border-radius:12px;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}


/* =========================
   FORM SECTION TITLE
========================= */

.form-section-title{
    width:100%;
    margin:0 0 22px;
}

.form-section-title h3{
    margin:0 0 7px;
    color:#061722;
    font-size:22px;
    line-height:1.35;
    font-weight:800;
}

.form-section-title p{
    margin:0;
    color:#52666E;
    font-size:15px;
    line-height:1.6;
}


/* =========================
   FORM GRID
========================= */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
    width:100%;
}

.form-group{
    width:100%;
    min-width:0;
}

.form-group-full{
    grid-column:1 / -1;
}


/* =========================
   LABELS
========================= */

.form-group label{
    display:block;
    width:100%;
    margin:0 0 7px;
    color:#222;
    font-size:15px;
    line-height:1.4;
    font-weight:700;
}


/* =========================
   HELP TEXT
========================= */

.field-help{
    display:block;
    margin:-1px 0 8px;
    color:#647981;
    font-size:13px;
    line-height:1.5;
}


/* =========================
   INPUTS
========================= */

.form-group input,
.form-group select,
.form-group textarea{

    display:block;

    width:100%;
    max-width:100%;
    min-width:0;

    padding:13px 14px;

    border:1px solid #C9D7DC;
    border-radius:8px;

    background:#fff;
    color:#222;

    font-family:Arial,sans-serif;
    font-size:16px;
    line-height:1.4;

    outline:none;

    box-sizing:border-box;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#3CC8D4;

    box-shadow:
        0 0 0 3px rgba(60,200,212,.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#7D9097;
}


/* =========================
   TEXTAREA
========================= */

.form-group textarea{
    min-height:130px;
    resize:vertical;
}


/* =========================
   SELECT
========================= */

.form-group select{
    cursor:pointer;
}


/* =========================
   QUOTE BOX
========================= */

#quoteBox{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    margin-top:25px;
}


/* =========================
   BOOKING PAGE BODY
========================= */

body.booking-page{
    padding-top:0;
}


/* =========================================================
   IMPORTANT:
   FIXED HEADER OFFSET
========================================================= */

html{
    scroll-padding-top:100px;
}


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

@media(max-width:768px){

    .container{
        width:calc(100% - 20px);
        margin:0 auto;
        padding:25px 0 45px;
    }

    .container .card{
        width:100%;
        padding:22px 16px;
        border-radius:12px;
    }

    .booking-section-title{
        margin-bottom:22px;
    }

    .booking-section-title h2{
        font-size:25px;
    }

    .booking-section-title p{
        font-size:15px;
    }

    .form-section{
        margin:20px 0;
        padding:20px 15px;
        border-radius:10px;
    }

    .form-section-title{
        margin-bottom:18px;
    }

    .form-section-title h3{
        font-size:20px;
    }

    .form-section-title p{
        font-size:14px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .form-group-full{
        grid-column:auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        width:100%;
        max-width:100%;
        font-size:16px;
    }

    .field-help{
        font-size:12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .container{
        width:calc(100% - 16px);
    }

    .container .card{
        padding:18px 12px;
    }

    .form-section{
        padding:18px 12px;
    }

    .booking-section-title h2{
        font-size:23px;
    }

}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{
    max-width:1100px;
    margin:0 auto;
    padding:40px 5%;
}

.contact-page .card{
    background:#FFFFFF;
    border:1px solid rgba(60,200,212,.18);
    border-radius:16px;
    padding:32px;
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(6,23,34,.08);
}

.contact-page .contact-hero{
    background:linear-gradient(135deg,#061722,#0d3542);
    color:#FFFFFF;
    border:none;
    text-align:center;
    padding:55px 32px;
}

.contact-page .contact-hero h1{
    color:#FFFFFF;
    font-size:clamp(2rem,5vw,3.2rem);
    margin-bottom:18px;
}

.contact-page .contact-hero p{
    color:rgba(255,255,255,.9);
    max-width:850px;
    margin:0 auto 18px;
}

.contact-page h2{
    color:#061722;
    font-size:clamp(1.6rem,3vw,2.2rem);
    margin-bottom:16px;
}

.contact-page h3{
    color:#061722;
    margin-top:26px;
    margin-bottom:10px;
}

.contact-page p{
    color:#33434a;
    margin-bottom:16px;
}

.contact-page ul{
    padding-left:22px;
    margin:16px 0;
}

.contact-page li{
    margin-bottom:10px;
    color:#33434a;
}

.contact-page hr{
    border:none;
    height:1px;
    background:rgba(6,23,34,.12);
}

.contact-page a:not(.btn){
    color:#0b8f9c;
    font-weight:600;
}

.contact-page a:not(.btn):hover{
    color:#00CFE8;
}

.contact-page .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#3CC8D4;
    color:#061722;
    padding:13px 24px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    border:2px solid #3CC8D4;
    transition:all .25s ease;
}

.contact-page .btn:hover{
    background:#00CFE8;
    border-color:#00CFE8;
    color:#061722;
    transform:translateY(-2px);
}

.contact-page .contact-hero .btn{
    margin-top:10px;
    background:#00CFE8;
    border-color:#00CFE8;
}

.contact-page .contact-hero .btn:hover{
    background:#FFFFFF;
    border-color:#FFFFFF;
    color:#061722;
}

.contact-page .contact-box{
    margin-top:18px;
    padding:20px;
    border-radius:12px;
    background:#f7fcfd;
    border:1px solid rgba(60,200,212,.25);
}

.contact-page .contact-box p{
    margin-bottom:10px;
}

.contact-page .contact-box a{
    display:block;
    width:fit-content;
    margin-top:10px;
    color:#061722;
    font-weight:700;
    text-decoration:none;
}

.contact-page .contact-box a:hover{
    color:#00CFE8;
}

.contact-page .map{
    margin-top:20px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(60,200,212,.25);
}

.contact-page iframe{
    display:block;
    width:100%;
    height:350px;
    border:0;
}

/* Contact page mobile */
@media (max-width:768px){

    .contact-page{
        padding:25px 4%;
    }

    .contact-page .card{
        padding:24px 20px;
        border-radius:14px;
    }

    .contact-page .contact-hero{
        padding:42px 20px;
    }

    .contact-page .contact-hero h1{
        font-size:2rem;
    }

    .contact-page .btn{
        width:100%;
    }

    .contact-page iframe{
        height:280px;
    }
}
/* =========================================
   BOOKING PAGE HERO
========================================= */

.booking-hero{
    min-height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.booking-hero .hero-content{
    max-width:900px;
    padding:40px 20px;
}

.booking-hero h1{
    max-width:900px;
    margin:0 auto 18px;
}

.booking-hero p{
    max-width:760px;
    margin:0 auto;
}

.booking-hero-highlights{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.booking-hero-highlights span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    color:#FFFFFF;
    font-weight:700;
}

@media (max-width:768px){

    .booking-hero{
        min-height:auto;
    }

    .booking-hero .hero-content{
        padding:55px 20px 45px;
    }

    .booking-hero-highlights{
        flex-direction:column;
        align-items:stretch;
        max-width:280px;
        margin-left:auto;
        margin-right:auto;
    }

    .booking-hero-highlights span{
        width:100%;
    }
}
/* =========================================
   BOOKING DETAILS SECTION
========================================= */

.booking-section{
    background:#FFFFFF;
    border:1px solid rgba(60,200,212,.20);
    border-radius:16px;
    padding:32px;
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(6,23,34,.07);
}

.section-heading{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:28px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(6,23,34,.10);
}

.section-step{
    flex:0 0 46px;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#3CC8D4;
    color:#061722;
    border-radius:50%;
    font-size:1.2rem;
    font-weight:800;
}

.section-heading h2{
    color:#061722;
    margin:0 0 6px;
    font-size:1.7rem;
}

.section-heading p{
    margin:0;
    color:#52636b;
}

.booking-form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.form-group label{
    color:#061722;
    font-weight:700;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    padding:14px 16px;
    border:1px solid rgba(6,23,34,.18);
    border-radius:10px;
    background:#FFFFFF;
    color:#061722;
    font-size:1rem;
    outline:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.form-group input:focus{
    border-color:#00CFE8;
    box-shadow:0 0 0 4px rgba(0,207,232,.14);
}

.form-group input::placeholder{
    color:#87969d;
}

@media (max-width:768px){

    .booking-section{
        padding:24px 18px;
        border-radius:14px;
    }

    .section-heading{
        gap:12px;
        margin-bottom:22px;
    }

    .section-step{
        flex-basis:40px;
        width:40px;
        height:40px;
    }

    .section-heading h2{
        font-size:1.4rem;
    }

    .booking-form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full-width{
        grid-column:auto;
    }
}
/* =========================================
   PICKUP ADDRESS SECTION
========================================= */

.pickup-section .form-group{
    max-width:100%;
}

.pickup-section input{
    min-height:52px;
}

.field-help{
    display:block;
    margin-top:8px;
    color:#52636b;
    font-size:.9rem;
    line-height:1.5;
}
/* =========================================
   DELIVERY ADDRESS SECTION
========================================= */

.delivery-section .form-group{
    max-width:100%;
}

.delivery-section input{
    min-height:52px;
}
/* =========================================
   PICKUP DATE AND TIME
========================================= */

.pickup-date-time-section input{
    min-height:52px;
    cursor:pointer;
}
/* =========================================
   PARCEL DETAILS
========================================= */

.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid rgba(6,23,34,.18);
    border-radius:10px;
    background:#FFFFFF;
    color:#061722;
    font-family:inherit;
    font-size:1rem;
    outline:none;
    transition:border-color .25s ease, box-shadow .25s ease;
}

.form-group select{
    min-height:52px;
    cursor:pointer;
}

.form-group textarea{
    resize:vertical;
    min-height:120px;
}

.form-group select:focus,
.form-group textarea:focus{
    border-color:#00CFE8;
    box-shadow:0 0 0 4px rgba(0,207,232,.14);
}

.form-group textarea::placeholder{
    color:#87969d;
}
/* =========================================
   DISTANCE & PRICE CALCULATOR
========================================= */

.price-calculator-section{
    text-align:center;
}

.price-calculator-section .section-heading{
    text-align:left;
}

.calculator-info{
    display:flex;
    justify-content:center;
    margin:10px 0 24px;
}

.calculator-rate{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 22px;
    background:rgba(60,200,212,.10);
    border:1px solid rgba(60,200,212,.25);
    border-radius:12px;
    text-align:left;
}

.rate-icon{
    font-size:2rem;
}

.calculator-rate div{
    display:flex;
    flex-direction:column;
}

.calculator-rate strong{
    color:#061722;
    font-size:1rem;
}

.calculator-rate span{
    color:#52636b;
    font-size:.9rem;
}

.calculate-price-btn{
    width:100%;
    max-width:480px;
    padding:16px 24px;
    background:#3CC8D4;
    color:#061722;
    border:2px solid #3CC8D4;
    border-radius:10px;
    cursor:pointer;
    font-family:inherit;
    font-size:1.05rem;
    font-weight:800;
    transition:all .25s ease;
}

.calculate-price-btn:hover{
    background:#00CFE8;
    border-color:#00CFE8;
    transform:translateY(-2px);
}

.calculation-message{
    margin-top:15px;
    font-weight:600;
    min-height:24px;
}

.price-result{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    max-width:650px;
    margin:25px auto 0;
    padding:24px;
    background:#061722;
    border-radius:14px;
}

.result-item{
    display:flex;
    flex-direction:column;
    gap:8px;
    flex:1;
}

.result-item span{
    color:rgba(255,255,255,.75);
    font-size:.9rem;
}

.result-item strong{
    color:#FFFFFF;
    font-size:1.7rem;
}

.result-divider{
    width:1px;
    height:55px;
    background:rgba(255,255,255,.20);
}

.price-note{
    max-width:700px;
    margin:18px auto 0;
    color:#6b7b82;
    font-size:.88rem;
}

@media (max-width:768px){

    .calculator-rate{
        width:100%;
        justify-content:center;
    }

    .price-result{
        flex-direction:column;
        gap:18px;
    }

    .result-divider{
        width:100%;
        height:1px;
    }

    .result-item strong{
        font-size:1.5rem;
    }
}
/* =========================================================
   PROMINENT BOOKING QUOTE
   ========================================================= */

.quote-results-prominent {
  width: 100%;
  margin: 30px 0;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(6, 23, 34, .12);
  position: relative;
  overflow: hidden;
}

/* Turquoise accent at the top */
.quote-results-prominent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--primary);
}


/* Heading */

.quote-results-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.quote-results-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  background: var(--primary-soft);
  border-radius: 14px;
  font-size: 25px;
}

.quote-results-heading h3 {
  margin: 0;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.2;
}

.quote-results-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}


/* Main results */

.quote-results-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}


/* Price */

.quote-price-highlight {
  min-height: 155px;
  padding: 24px;
  background: var(--primary);
  border-radius: 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 22px rgba(60, 200, 212, .28);
}

.quote-price-highlight .quote-result-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.quote-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  margin: 7px 0;
}

.quote-price-value .currency {
  font-size: 30px;
  font-weight: 800;
  margin-right: 3px;
}

.quote-price-value #price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
}

.quote-price-note {
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
}


/* Distance & time */

.quote-results-main > .quote-result {
  min-height: 155px;
  padding: 22px;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-results-main > .quote-result .quote-result-icon {
  font-size: 23px;
  margin-bottom: 8px;
}

.quote-results-main > .quote-result .quote-result-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.quote-results-main > .quote-result strong {
  color: var(--dark);
  font-size: 27px;
  font-weight: 900;
}


/* Status */

.quote-status {
  min-height: 20px;
  margin-top: 18px;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}


/* Mobile */

@media (max-width: 768px) {

  .quote-results-prominent {
    padding: 22px 18px;
    margin: 24px 0;
  }

  .quote-results-heading h3 {
    font-size: 21px;
  }

  .quote-results-main {
    grid-template-columns: 1fr;
  }

  .quote-price-highlight {
    min-height: 145px;
  }

  .quote-price-value #price {
    font-size: 48px;
  }

  .quote-results-main > .quote-result {
    min-height: 120px;
  }

}