/* ===========================
   AL MEHAR LIFE CARE
   STYLE.CSS - PART 1
=========================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
        HEADER
=========================== */

.header{
    width:100%;
    position:sticky;
    top:0;
    z-index:999;
    background:#111111;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:60px;
}

.navbar ul{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar ul li a{
    color:#ffffff;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#d4af37;
}

/* Button */

.btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(212,175,55,.35);
/* ===========================
        HERO SECTION
=========================== */

.hero{
    background:linear-gradient(180deg,#111,#0b0b0b);
    padding:80px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-text h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin:20px 0;
}

.subtitle{
    font-size:22px;
    color:#d9d9d9;
    margin-bottom:20px;
}

.badge{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
}

.rating{
    color:#FFD700;
    font-size:20px;
    margin:20px 0;
}

.rating span{
    color:#ffffff;
    margin-left:10px;
    font-size:18px;
}

.price-box{
    margin:25px 0;
}

.price-box h2{
    color:#FFD700;
    font-size:55px;
    font-weight:800;
}

.price-box del{
    color:#999;
    font-size:28px;
    margin-left:12px;
}

.price-box p{
    color:#58d458;
    font-size:18px;
    margin-top:8px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

/* Hero Image */

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.temp-banner{
    width:100%;
    max-width:520px;
    height:500px;
    background:linear-gradient(135deg,#d4af37,#f3cf60);
    border-radius:25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.temp-banner h2{
    font-size:52px;
    font-weight:800;
    color:#000;
}

.temp-banner p{
    margin-top:15px;
    color:#222;
    font-size:22px;
    font-weight:600;
/* ===========================
      TRUST SECTION
=========================== */

.trust{
    padding:70px 0;
    background:#111;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{
    background:#181818;
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.trust-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.18);
}

.trust-card img{
    width:70px;
    margin:0 auto 20px;
}

.trust-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#d4af37;
}

.trust-card p{
    color:#cfcfcf;
    font-size:15px;
}

/* ===========================
        SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#d4af37;
    margin-bottom:15px;
}

.section-title p{
    color:#ccc;
    max-width:700px;
    margin:auto;
}

/* ===========================
        ANIMATION
=========================== */

.hero-text{
    animation:fadeLeft .8s ease;
}

.hero-image{
    animation:fadeRight .8s ease;
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:991px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text h1{
        font-size:42px;
    }

    .subtitle{
        font-size:18px;
    }

    .price-box h2{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .temp-banner{
        margin-top:40px;
        height:380px;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .navbar ul{
        gap:18px;
    }

}

@media(max-width:576px){

    .header .container{
        flex-direction:column;
        gap:15px;
    }

    .navbar ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:60px 0;
    }

    .hero-text h1{
        font-size:34px;
    }

    .price-box h2{
        font-size:36px;
    }

    .temp-banner{
        height:300px;
    }

    .temp-banner h2{
        font-size:34px;
    }

    .temp-banner p{
        font-size:18px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }
/* ===========================
        BENEFITS SECTION
=========================== */

.benefits{
    padding:80px 0;
    background:#0b0b0b;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.benefit-card{
    background:#161616;
    padding:30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(212,175,55,.18);
}

.benefit-card img{
    width:70px;
    margin:0 auto 20px;
}

.benefit-card h3{
    color:#d4af37;
    margin-bottom:15px;
    font-size:22px;
}

.benefit-card p{
    color:#d0d0d0;
}

/* ===========================
        REVIEWS
=========================== */

.reviews{
    padding:80px 0;
    background:#111;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.review-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.review-card h4{
    color:#FFD700;
    margin-bottom:10px;
}

.review-card p{
    color:#ddd;
    margin-top:15px;
}

/* ===========================
        FAQ
=========================== */

.faq{
    padding:80px 0;
}

.faq-item{
    background:#181818;
    border-radius:15px;
    padding:20px;
    margin-bottom:20px;
}

.faq-item h3{
    color:#d4af37;
    margin-bottom:10px;
}

.faq-item p{
    color:#d5d5d5;
}

/* ===========================
        FOOTER
=========================== */

.footer{
    background:#080808;
    padding:60px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer p,
.footer a{
    color:#cccccc;
    line-height:1.8;
    transition:.3s;
}

.footer a:hover{
    color:#d4af37;
}

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#999;
}

/* ===========================
        UTILITIES
=========================== */

.text-center{
    text-align:center;
}

.mt-40{
    margin-top:40px;
}

.mb-40{
    margin-bottom:40px;
}

.gold{
    color:#d4af37;
}
/* ===========================
        TOP BAR
=========================== */

.top-bar{
    background:#d4af37;
    color:#000;
    text-align:center;
    padding:10px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
}
/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

.header{
    background:#111;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:55px;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:white;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#d4af37;
}

.btn{
    background:#d4af37;
    color:#000;
    padding:12px 26px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
/* HERO */

.hero{
    background:linear-gradient(180deg,#111,#0b0b0b);
    padding:80px 0;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-text{
    width:100%;
}

.hero-image{
    width:100%;
}

.temp-banner{
    width:100%;
    height:500px;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.temp-banner h2{
    font-size:55px;
    color:#000;
    font-weight:800;
}

.temp-banner p{
    font-size:22px;
    color:#111;
}
