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

.shipping-hero{

    display:flex;

    justify-content:center;

    align-items:center;

    background:#2c3f68;

    color:#fff;

    padding:140px 20px 120px;

    text-align:center;

}

.shipping-hero .hero-content{

    width:100%;

    max-width:900px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.shipping-hero .hero-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:var(--theme-primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.shipping-hero h1{

    text-align:center;

    font-size:64px;

    font-weight:800;

    margin-bottom:25px;

}

.shipping-hero p{

    max-width:720px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.85);

}

@media(max-width:768px){

.shipping-hero{

    padding:100px 20px 80px;

}

.shipping-hero h1{

    font-size:42px;

}

.shipping-hero p{

    font-size:18px;

}

}

/*======================================
 DELIVERY COVERAGE
======================================*/

.shipping-coverage{

    padding:120px 20px;

    background:#ffffff;

}

.coverage-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.coverage-card{

    background:#fff;

    border-radius:20px;

    padding:50px 35px;

    text-align:center;

    border:2px solid transparent;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.coverage-card:hover{

    transform:translateY(-8px);

    border-color:var(--theme-primary);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.coverage-icon{

    font-size:48px;

    margin-bottom:25px;

}

.coverage-card h3{

    color:#24375f;

    font-size:28px;

    margin-bottom:18px;

}

.coverage-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:768px){

.coverage-grid{

    grid-template-columns:1fr;

}

}

.shipping-timeline{

    background:#f8f9fc;

    padding:120px 20px;

}

.timeline{

    max-width:900px;

    margin:70px auto 0;

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    left:24px;

    top:0;

    bottom:0;

    width:3px;

    background:var(--theme-primary);

}

.timeline-item{

    display:flex;

    gap:35px;

    margin-bottom:60px;

    position:relative;

}

.timeline-dot{

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--theme-primary);

    flex-shrink:0;

    border:8px solid #fff;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.timeline-content{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    flex:1;

}

.timeline-content h3{

    color:#24375f;

    margin-bottom:8px;

}

.timeline-content span{

    color:var(--theme-primary);

    font-weight:700;

}

.timeline-content p{

    margin-top:15px;

    color:#666;

    line-height:1.8;

}

.timeline-content{

    transition:.3s;

}

.timeline-content:hover{

    transform:translateX(8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

/* ========================================
   SHIPPING NOTES
======================================== */

.shipping-notes{

    padding:120px 0;

    background:#f7f9fc;

}

.notes-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.note-card{

    background:#fff;

    border-radius:20px;

    padding:50px 35px;

    text-align:center;

    min-height:280px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    border:2px solid transparent;

}

.note-card:hover{

    transform:translateY(-8px);

    border-color:var(--theme-primary);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.note-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#edf3ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

}

.note-card h3{

    font-size:28px;

    font-weight:700;

}

.note-card p{

    color:#666;

    line-height:1.8;

}

@media (max-width:768px){

    .notes-grid{

        grid-template-columns:1fr;

    }

}

.section-badge{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(59,130,246,.1);

    color:var(--theme-primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title{

    display:flex !important;

    flex-direction:column !important;

    align-items:center !important;

    text-align:center !important;

}

.section-title .section-badge{

    display:inline-block !important;

}

.section-title h2{

    display:block !important;

    width:100%;

    margin-top:12px;

}