/* ========================================
   HOME HERO SECTION
======================================== */

.hero-section.home {
    background: #f2f2f2;
    padding: 30px 0;
}

.home h1, .home h2, .home h3, .home h4, .home h5 {
    background: none !important;
    padding: 0px;
}

.hero-section.home .hero-grid {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 30px;
    align-items: stretch;
}

/* ========================================
   LEFT SIDEBAR
======================================== */

.hero-section.home .cat-sidebar {
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
}

.hero-section.home .cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-section.home .cat-list li {
    border-bottom: 1px solid #ddd;
}

.hero-section.home .cat-list li:last-child {
    border-bottom: none;
}

.hero-section.home .cat-list a {
    display: block;
    padding: 8px 20px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s ease;
}

.hero-section.home .cat-list a:hover {
    color: #0a4a73;
    background: #fff;
    padding-left: 28px;
}

.hero-section.home .image-hero {
    z-index: 9;
    width: 40%;
}

/* ========================================
   CENTER BANNER
======================================== */

.hero-section.home .hero-center {
    min-width: 0;
    background: #e4f2fb;
}

.hero-section.home .hero-banner {
    position: relative;
    min-height: auto;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: flex-end;
    padding: 35px 40px;
    flex-direction: row-reverse;
}

/* Light overlay like screenshot */
.hero-section.home .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e4f2fb;
    z-index: 1;
}

.hero-section.home .hero-banner-content {
    position: relative;
    z-index: 5;
    max-width: 550px;
    width: 60%;
}

.hero-section.home .may-i-help {
    margin: 0 0 0 0;
    color: #0a4a73;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

/* ========================================
   PHONE BOX
======================================== */

.hero-section.home .banner-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 5px 24px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    margin-bottom: 0px;
}

.hero-section.home .banner-phone i {
    font-size: 30px;
    color: #0a4a73;
}

.hero-section.home .banner-phone a {
    color: #0a4a73;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.hero-section.home .banner-hours {
    margin: 10px 0 15px;
    color: #0a4a73;
    font-size: 16px;
}

.hero-section.home .banner-text h2 {
    margin: 15px 0 10px;
    color: #0a4a73;
    font-size: 26px;
    font-weight: 800;
}

.hero-section.home .banner-sub {
    margin: 0 0 20px;
    font-size: 20px;
    color: #0a4a73;
}

.hero-section.home .trust-label {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.hero-section.home .trust-stars {
    color: #ffb400;
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-section.home .payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-section.home .payment-icons img {
    height: 28px;
    width: auto;
}

/* ========================================
   EXPRESS COUNTER
======================================== */

.hero-section.home .express-card {
    height: 100%;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
}

.hero-section.home .express-header {
    background: #0a5b90;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section.home .express-form {
    padding: 20px 15px 30px;
}

.hero-section.home .form-select {
    width: 100%;
    height: 48px;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 0 15px;
    margin-bottom: 16px;
    font-size: 16px;
}

.hero-section.home .form-select:focus {
    outline: none;
    border-color: #0a4a73;
}

.hero-section.home .btn-add-cart {
    display: block;
    margin: 20px auto 0;
    border: none;
    border-radius: 30px;
    background: #7ea6c4;
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    cursor: pointer;
    transition: .3s;
}

.hero-section.home .btn-add-cart:hover {
    background: #0a4a73;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

    .hero-section.home .hero-grid {
        grid-template-columns: 280px 1fr 300px;
    }

    .hero-section.home .may-i-help {
        font-size: 40px;
    }
}

@media (max-width: 991px) {

    .hero-section.home .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-section.home .hero-banner {
        min-height: auto;
        padding: 40px 25px;
    }
}

@media (max-width: 767px) {

    .hero-section.home .hero-banner {
        display: grid;
    }

    .hero-section.home .image-hero {
        z-index: 9;
        width: 100%;
    }

    .hero-section.home .hero-banner-content {
        position: relative;
        z-index: 5;
        max-width: 550px;
        width: 100%;
    }

    .hero-section.home .may-i-help {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-section.home .banner-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-section.home .banner-text h2 {
        font-size: 22px;
    }

    .hero-section.home .banner-sub {
        font-size: 18px;
    }
}



/* ==========================================
   WHY ORDER FROM US
========================================== */

.why-section.home .support-card{
    background:#23bcc1;
    min-height:365px;
    position:relative;
    overflow:hidden;
    padding:40px;
}

.why-section.home .support-content{
    position:relative;
    z-index:2;
    max-width:55%;
}

.why-section.home .support-doctor{
    position:absolute;
    right:0;
    bottom:0;
    width:300px;
    z-index:1;
}

.why-section.home .support-doctor img{
    display:block;
    width:100%;
    height:auto;
}

.why-section.home{
    background:#efefef;
    padding:15px 0 40px;
}

.why-section.home .container-xl{
    max-width:1600px;
    width:100%;
}

.why-section.home .why-heading{
    text-align:center;
    margin-bottom:25px;
}

.why-section.home .why-heading h2{
    margin:0;
    color:#00528e;
    font-size:42px;
    font-weight:400;
    text-transform:uppercase;
}

.why-section.home .why-heading p{
    margin-top:10px;
    color:#00528e;
    font-size:22px;
}

/* MAIN LAYOUT */

.why-section.home .why-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 340px;
    gap:30px;
    align-items:start;
}

.why-section.home .why-main{
    min-width:0;
}

.why-section.home .why-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px;
    margin-bottom:35px;
}

/* LEFT CARDS */

.why-section.home .why-card{
    background:#fff;
    padding:28px;
    border:1px solid #e3e3e3;
}

.why-section.home .why-card h3{
    color:#00528e;
    font-size:22px;
    font-weight:400;
    margin-bottom:20px;
}

.why-section.home .why-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.why-section.home .why-card li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
    font-size:16px;
    color:#111;
}

.why-section.home .why-card li i{
    color:#83c66d;
    margin-top:3px;
}

/* BADGES */

.why-section.home .why-badges{
    display:flex;
    justify-content:space-around;
    align-items:center;
    margin-top:35px;
    gap:20px;
}

.why-section.home .why-badges img{
    max-width:130px;
    width:auto;
    height:auto;
}

/* SUPPORT CARD */

.why-section.home .why-card-center{
    padding:0;
    overflow:hidden;
}

.why-section.home .phone-number-big{
    text-align:center;
    padding:5px 15px;
    font-size:40px;
    color:#1db8bc;
    font-weight:300;
}

.why-section.home .phone-number-big a{
    color:#1db8bc;
    text-decoration:none;
}

.why-section.home .phone-number-big i{
    display:none;
}

.why-section.home .support-card{
    background:#23bcc1;
    min-height:300px;
    padding:40px;
    color:#fff;
    position:relative;
}

.why-section.home .support-card h4{
    font-size:25px;
    font-weight:300;
    margin-bottom:20px;
    color:#fff;
}

.why-section.home .support-card p{
    color:#fff;
    font-size:18px;
}

.why-section.home .support-hours strong{
    color:#fff;
    font-weight:400;
}

.why-section.home .btn-call-now{
    margin-top:20px;
    background:#fff;
    color:#23bcc1;
    border:none;
    border-radius:30px;
    padding:12px 30px;
    font-size:18px;
    cursor:pointer;
}

/* SIDEBAR */

.why-section.home .why-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.why-section.home .why-right-promo{
    padding:0;
    border:none;
    background:transparent;
}

.why-section.home .promo-gv10,
.why-section.home .promo-guarantee,
.why-section.home .promo-ssl{
    display:none;
}

.why-section.home .promo-offer{
    background:#fff;
    padding:15px;
    margin:0 0 25px;
}

.why-section.home .offer-prod-img{
    width:100%;
    display:block;
}

.why-section.home .offer-prod-name{
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.why-section.home .offer-prod-price{
    display:none;
}

.why-section.home .excl-offer-badge{
    display:none;
}

/* TRENDING */

.why-section.home .trending-section{
    margin-top:20px;
}

.why-section.home .section-title{
    color:#00528e;
    font-size:32px;
    margin-bottom:20px;
}

/* CONTENT */

.why-section.home .content-section{
    margin-top:35px;
}

.why-section.home .content-body{
    background:#fff;
    padding:30px;
    border:1px solid #e5e5e5;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .why-section.home .why-layout{
        grid-template-columns:1fr;
    }

    .why-section.home .why-sidebar{
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:991px){

    .why-section.home .why-grid{
        grid-template-columns:1fr;
    }

    .why-section.home .phone-number-big{
        font-size:34px;
    }
}

@media(max-width:767px){

    .why-section.home .why-sidebar{
        grid-template-columns:1fr;
    }

    .why-section.home .why-heading h2{
        font-size:28px;
    }

    .why-section.home .why-heading p{
        font-size:16px;
    }
}