

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


    body{
    font-family:'Poppins',sans-serif;
}
html{
    scroll-behavior:smooth;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:white;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}
nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:600;

    padding:12px 18px;
    border-radius:10px;

    transition:.3s;
}

nav ul li a:hover{
    background:#f1f5f9;
    color:#DC2626;
}

.call-btn{
    background:#7b2120;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
}
.appointment-btn{
    background:#DC2626;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:600;
    margin-right:10px;
    transition:.3s;
}

.appointment-btn:hover{
    background:#b91c1c;
    transform:translateY(-2px);
}


.hero{
    min-height:90vh;
    background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url("https://images.unsplash.com/photo-1486006920555-c77dcf18193c");
    background-size:cover;
    background-position:center;
    color:white;
    overflow:hidden;
}

.hero-wrapper{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-content{
    max-width:680px;
    text-align:left;
    animation:slideLeft 1s ease;
}
@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero h1 span{
    color:#DC2626;
}

.hero p{
    font-size:21px;
    margin-bottom:30px;
    max-width:620px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:45px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:16px 32px;
    border-radius:10px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.btn-primary{
    background:#DC2626;
    color:white;
}

.btn-secondary{
    background:white;
    color:#111;
}

.hero-character{
    position:relative;
    text-align:center;
}

.hero-character img{
    width:360px;
    max-width:100%;
    display:block;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.6));
    animation:float 4s ease-in-out infinite;
}
@keyframes float{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

.speech-bubble{
    background:white;
    color:#111;
    padding:16px 24px;
    border-radius:25px;
    font-weight:800;
    font-size:19px;
    margin-bottom:15px;
    display:inline-block;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.speech-bubble i{
    color:#DC2626;
    margin-right:6px;
}

.speech-bubble span{
    color:#DC2626;
    font-size:24px;
}

.quick-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.quick-info div{
    border-right:1px solid rgba(255,255,255,.3);
    padding-right:15px;
}

.quick-info div:last-child{
    border-right:none;
}

.quick-info i{
    color:#DC2626;
    font-size:28px;
    margin-bottom:10px;
}

.quick-info h4{
    font-size:17px;
    margin-bottom:5px;
}

.quick-info p{
    font-size:13px;
    margin:0;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-weight:bold;
}

.btn-primary{
    background:#DC2626;
    color: #ffffff;
}

.btn-secondary{

    background:#DC2626;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:600;
    margin-right:10px;
    transition:.3s;
}

.btn-secondary{
    background:#DC2626;
    transform:translateY(-2px);
}
.services{
    padding:100px 0;
    background:#f5f7fa;
}

.services h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.service-card{
    background:white;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    margin-bottom:15px;
}
.service-card i{
    font-size:45px;
    color:#DC2626;
    margin-bottom:20px;
}
.logo img{
    height:120px;
}

.why-us{
    padding:100px 0;
}

.why-us h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}


.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq{
    padding:100px 0;
    background:#f5f7fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#DC2626;
    font-weight:700;
    font-size:16px;
}

.section-title h2{
    font-size:42px;
    margin:10px 0 15px;
}

.section-title p{
    color:#555;
    font-size:18px;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    margin-bottom:18px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,.07);
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:22px 26px;
    font-family:'Poppins',sans-serif;
    font-size:18px;
    font-weight:700;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question i{
    color:#DC2626;
    transition:.3s;
}

.faq-answer{
    display:none;
    padding:0 26px 24px;
    color:#555;
    line-height:1.7;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}
footer{
    background:black;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    margin-bottom:15px;
}

footer p{
    margin-bottom:10px;
}
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;

    background:#25D366;
    color:white;

    padding:14px 22px;
    border-radius:50px;

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
    font-weight:600;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    transition:.3s;
}

.whatsapp-btn i{
    font-size:28px;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}
.booking-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:10000;
    padding:20px;
}

.booking-modal.active{
    display:flex;
}

.booking-box{
    background:white;
    width:100%;
    max-width:520px;
    padding:35px;
    border-radius:18px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.3);
}

.close-booking{
    position:absolute;
    top:15px;
    right:15px;
    background:#DC2626;
    color:white;
    border:none;
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
}

.booking-box h2{
    font-size:30px;
    margin-bottom:10px;
    color:#111;
}

.booking-box p{
    color:#666;
    margin-bottom:25px;
}

.booking-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.booking-form input,
.booking-form select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:'Poppins',sans-serif;
    font-size:15px;
}

.booking-form button{
    background:#DC2626;
    color:white;
    border:none;
    padding:16px;
    border-radius:10px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}
.contact{
    padding:100px 0;
    background:white;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:50px;
}

.contact-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-card{
    background:#f8fafc;
    padding:30px;
    border-radius:16px;
    text-align:center;
}

.contact-card i{
    font-size:38px;
    color:#DC2626;
    margin-bottom:15px;
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card a{
    color:#111;
    text-decoration:none;
    font-weight:600;
}

.contact-map{
    min-height:400px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* RESPONSIVE */

@media(max-width:1024px){
    header .container{
        flex-wrap:wrap;
        gap:15px;
        justify-content:center;
    }

    .logo img{
        height:90px;
    }

    nav ul{
        gap:10px;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav ul li a{
        padding:10px 14px;
        font-size:14px;
    }

    .hero-wrapper{
        gap:30px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero-character img{
        width:300px;
    }

    .service-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .quick-info{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    header{
        position:relative;
    }

    header .container{
        flex-direction:column;
        padding:6px 0;
    }

    .logo img{
        height:90px;
    }

    nav ul{
        width:100%;
        gap:8px;
    }

    nav ul li a{
        font-size:13px;
        padding:9px 11px;
    }

    .appointment-btn,
    .call-btn{
        width:100%;
        max-width:260px;
        justify-content:center;
        text-align:center;
        margin-right:0;
    }

    .hero{
        min-height:auto;
    }

    .hero-wrapper{
        min-height:auto;
        flex-direction:column;
        text-align:center;
        padding:60px 0;
    }

    .hero-content{
        text-align:center;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        margin-bottom:30px;
    }

    .btn-primary,
    .btn-secondary{
        width:230px;
        justify-content:center;
        margin-right:0;
    }

    .hero-character img{
        width:230px;
    }

    .speech-bubble{
        font-size:15px;
        padding:12px 18px;
    }

    .speech-bubble span{
        font-size:18px;
    }

    .quick-info{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .quick-info div{
        border-right:none;
        padding-right:0;
    }

    .services,
    .why-us,
    .faq,
    .contact{
        padding:60px 0;
    }

    .services h2,
    .why-us h2,
    .section-title h2{
        font-size:30px;
    }

    .service-grid,
    .why-grid,
    .contact-info{
        grid-template-columns:1fr;
    }

    .service-card,
    .why-card,
    .contact-card{
        padding:22px;
    }

    .faq-question{
        font-size:15px;
        padding:18px;
    }

    .booking-box{
        padding:28px 22px;
    }

    .booking-box h2{
        font-size:24px;
    }

    .whatsapp-btn{
        right:15px;
        bottom:15px;
        padding:12px 16px;
    }

    .whatsapp-btn span{
        display:none;
    }

    .whatsapp-btn{
        width:58px;
        height:58px;
        border-radius:50%;
        justify-content:center;
    }
}

@media(max-width:480px){
    .container{
        width:92%;
    }

    .hero h1{
        font-size:29px;
    }

    .hero-character img{
        width:200px;
    }

    .quick-info{
        grid-template-columns:1fr;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
    }

    nav ul li a{
        display:block;
        width:220px;
        text-align:center;
    }
}