@import url("variables.css");

/*==========================================================
    RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.7;

}

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==========================================================
    CONTAINER
==========================================================*/

.container{

    width:90%;
    max-width:var(--container-width);
    margin:auto;

}

section{

    padding:var(--section-padding) 0;

}

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

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;
    color:var(--primary);
    margin-bottom:10px;

}

.section-title p{

    color:#666;
    max-width:700px;
    margin:auto;

}

/*==========================================================
    BUTTONS
==========================================================*/

.btn{

    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);
    color:white;

}

.btn-primary:hover{

    background:#0b5c56;
    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid var(--primary);
    color:var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);
    color:white;

}

/*==========================================================
    CARD
==========================================================*/

.card{

    background:white;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-md);
    padding:30px;
    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

}

/*==========================================================
    HEADER
==========================================================*/

.header{

    background:var(--white);
    box-shadow:var(--shadow-sm);
    position:sticky;
    top:0;
    z-index:1000;

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;

}

.logo img{

    height:60px;

}

.logo h2{

    color:var(--primary);
    font-size:28px;

}

.nav-links{

    display:flex;
    gap:30px;

}

.nav-links a{

    color:var(--text);
    font-weight:500;
    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--primary);

}

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

.hero{

    background:var(--light);

}

.hero-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}

.hero-content{

    flex:1;

}

.hero-content h1{

    font-size:52px;
    color:var(--primary);
    margin-bottom:20px;
    line-height:1.2;

}

.hero-content p{

    font-size:18px;
    margin-bottom:30px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.hero-image{

    flex:1;
    text-align:center;

}

.hero-image img{

    width:100%;
    max-width:500px;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);

}


/*==========================================
  ABOUT SECTION
==========================================*/

.about{

    padding:100px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:3rem;

    color:#0F766E;

    margin-bottom:15px;

}

.section-title p{

    font-size:1.2rem;

    color:#555;

}

.about-container{

    display:grid;

    grid-template-columns:45% 55%;

    gap:70px;

    align-items:start;

}

.about-image img{

    width:100%;

    border-radius:24px;

    display:block;

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

}

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.about-content h3{

    font-size:3rem;

    color:#0F766E;

    margin-bottom:30px;

    line-height:1.2;

}

.about-content p{

    font-size:1.15rem;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;

    max-width:650px;

}

.about-features{

    display:grid;

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

    gap:22px;

    margin-top:20px;

}

.feature-card{

    background:#F8F8F8;

    border:1px solid #E6E6E6;

    border-radius:16px;

    padding:24px;

    font-size:1.1rem;

    font-weight:600;

    color:#222;

    transition:.3s;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}

.feature-card:hover{

    transform:translateY(-6px);

    background:#0F766E;

    color:#fff;

    border-color:#0F766E;

}

/*==========================================================
    WHY CHOOSE US
==========================================================*/

.why-choose{

    background:var(--light);

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.why-grid .card{

    text-align:center;

}

.why-grid h3{

    color:var(--primary);
    margin-bottom:15px;
    font-size:24px;

}

.why-grid p{

    color:var(--text);

}

/*==========================================================
    SERVICES
==========================================================*/

.services{

    background:var(--white);

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.service-card{

    position:relative;
    text-align:center;

}

.service-card h3{

    color:var(--primary);
    margin-bottom:20px;

}

.price{

    margin:20px 0;

}

.currency{

    font-size:26px;
    color:var(--accent);
    vertical-align:top;

}

.amount{

    font-size:48px;
    font-weight:700;
    color:var(--primary);

}

.service-card p{

    margin-bottom:25px;

}

.service-features{

    text-align:left;
    margin:25px 0;

}

.service-features li{

    margin:12px 0;

}

.popular{

    border:3px solid var(--secondary);
    transform:scale(1.04);

}

.popular-badge{

    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);

    background:var(--accent);

    color:white;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.service-card:hover{

    transform:translateY(-10px);

}

.popular:hover{

    transform:translateY(-10px) scale(1.04);

}

/*==========================================================
    CLIENT SUCCESS STORIES
==========================================================*/

.transformations{

    background:#f8fffc;

}

.transform-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.transform-card{

    text-align:center;

}

.transform-card img{

    width:100%;

    border-radius:15px;

    margin-bottom:20px;

    box-shadow:var(--shadow-md);

}

.transform-card h3{

    color:var(--primary);

    margin-bottom:10px;

}

.stars{

    color:#FFC107;

    font-size:24px;

    margin-bottom:15px;

}

.transform-card p{

    font-style:italic;

    line-height:1.8;

}

.transform-card:hover{

    transform:translateY(-10px);

}

/*==========================================================
    STATISTICS
==========================================================*/

.stats{

    background:var(--primary);

    padding:60px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:white;

    text-align:center;

    padding:35px 20px;

    border-radius:15px;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h2{

    font-size:48px;

    color:var(--primary);

    margin-bottom:10px;

    font-weight:700;

}

.stat-card p{

    color:#555;

    font-size:18px;

    font-weight:500;

}
/*==========================================================
    FAQ
==========================================================*/

.faq{

    background:var(--light);

}

.faq-container{

    max-width:900px;
    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    background:white;

    border-radius:12px;

    box-shadow:var(--shadow-sm);

    padding:20px;

}

.faq-item summary{

    cursor:pointer;

    font-size:20px;

    font-weight:600;

    color:var(--primary);

}

.faq-item p{

    margin-top:15px;

    line-height:1.8;

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

.contact{

    background:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.contact-card{

    background:var(--light);

    padding:35px;

    border-radius:15px;

    box-shadow:var(--shadow-sm);

}

.contact-card h3{

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card p{

    margin-bottom:12px;

}

.social-links{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.social-links a{

    color:var(--primary);

    font-weight:600;

}

.social-links a:hover{

    color:var(--secondary);

}

/*==========================================================
    SOCIAL ICONS
==========================================================*/

.social-icons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:20px;

    flex-wrap:wrap;

}

.social-icons img{

    width:50px;

    height:50px;

    object-fit:cover;

    border-radius:50%;

    padding:8px;

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.social-icons img:hover{

    transform:translateY(-6px) scale(1.1);

    box-shadow:var(--shadow-md);

}

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

.footer{

    background:#0f172a;

    color:white;

    padding:60px 0 20px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-column h3{

    margin-bottom:20px;

    color:var(--secondary);

}

.footer-column p{

    margin-bottom:12px;

    color:#d1d5db;

}

.footer-column ul{

    padding:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#d1d5db;

}

.footer-column a:hover{

    color:white;

}

.footer hr{

    margin:40px 0 20px;

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    color:#9ca3af;

}

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

/*--------------------------
    Laptop
---------------------------*/

@media (max-width:1200px){

    .container{

        width:95%;

    }

}

/*--------------------------
    Tablet
---------------------------*/

@media (max-width:992px){

    .hero-container,
    .about-container{

        flex-direction:column;

        text-align:center;

    }

    .hero-image,
    .about-image{

        margin-top:40px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .stats-grid{

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

    }

    .services-grid,
    .why-grid,
    .transform-grid,
    .contact-grid{

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

    }

    .footer-container{

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

    }

}

/*--------------------------
    Mobile
---------------------------*/

@media (max-width:768px){

    .navbar{

        flex-direction:column;

        height:auto;

        padding:20px 0;

    }

    .nav-links{

        flex-direction:column;

        gap:15px;

        margin-top:20px;

    }

    .hero-content h1{

        font-size:38px;

    }

    .section-title h2{

        font-size:32px;

    }

    .stats-grid{

        grid-template-columns:1fr 1fr;

    }

    .why-grid,
    .services-grid,
    .transform-grid,
    .contact-grid,
    .footer-container{

        grid-template-columns:1fr;

    }

    .about-highlights{

        justify-content:center;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn{

        width:250px;

        text-align:center;

    }

}

/*--------------------------
    Small Mobile
---------------------------*/

@media (max-width:480px){

    section{

        padding:70px 0;

    }

    .hero-content h1{

        font-size:30px;

    }

    .hero-content p{

        font-size:16px;

    }

    .section-title h2{

        font-size:28px;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card h2{

        font-size:38px;

    }

    .amount{

        font-size:36px;

    }

    .popular{

        transform:none;

    }

    .popular:hover{

        transform:translateY(-8px);

    }

    .social-icons img{

        width:42px;

        height:42px;

    }

}
/*==========================================================
    JAVASCRIPT EFFECTS
==========================================================*/

header.sticky{

    position:fixed;

    top:0;

    width:100%;

    z-index:999;

    box-shadow:var(--shadow-md);

    animation:slideDown .4s;

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}

.nav-links a.active{

    color:var(--secondary);

}

#scrollTop{

    position:fixed;

    bottom:30px;

    right:30px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    font-size:22px;

}

#scrollTop.show{

    opacity:1;

    visibility:visible;

}

#scrollTop:hover{

    background:var(--secondary);

}

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.logo{
    text-decoration:none;
    font-size:2.2rem;
    font-weight:800;
    letter-spacing:-1px;
    color:#0F766E;
    transition:0.3s ease;
}

.logo span{
    color:#F59E0B;
}

.logo:hover{
    transform:scale(1.02);
}

.hero-content h1{

    font-size:4rem;

    line-height:1.15;

    font-weight:800;

    color:#1F2937;

}

.hero-content h1 span{

    color:#0F766E;

}

.hero-content p{

    max-width:650px;

    margin:25px 0;

    font-size:1.2rem;

    line-height:1.8;

    color:#4B5563;

}

.hero-badge{

    display:inline-block;

    background:#D8F3EE;

    color:#0F766E;

    padding:12px 28px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:25px;

}
/*==========================================
  FLOATING WHATSAPP
==========================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    z-index:9999;

    transition:.3s ease;

    text-decoration:none;

}

.whatsapp-btn:hover{

    transform:scale(1.12);

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

}

.whatsapp-btn img{

    width:36px;

    height:36px;

    object-fit:contain;

}