:root{
    --primary:#5c4b73;
    --primary-dark:#433455;
    --secondary:#8b79a8;
    --lavender:#f5f1fa;
    --cream:#faf8fc;
    --soft:#f7f3fb;
    --text:#676b78;
    --heading:#1f1d25;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--heading);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

section{
    padding:7rem 0;
    position:relative;
}

h1,h2,h3,h4{
    font-family:'Red Hat Display',sans-serif;
    font-weight:600;
    letter-spacing:-1.5px;
    line-height:1.1;
}

h1{
    font-size:clamp(3rem,6vw,5.8rem);
    margin-bottom:1.5rem;
}

h2{
    font-size:clamp(2.3rem,5vw,4rem);
    margin-bottom:1.5rem;
}

h4{
    font-size:1.35rem;
    margin-bottom:.7rem;
}

p{
    color:var(--text);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--primary);
    color:white;
    padding:1rem 2rem;
    border-radius:18px;
    text-decoration:none;
    font-weight:600;
    border:none;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 40px rgba(92,75,115,.18);
}

.btn:hover{
    background:var(--primary-dark);
    transform:translateY(-3px);
}

.bg-light{
    background:linear-gradient(to bottom, #faf8fc, #f6f2fb);
}

.bg-dark{
    background:linear-gradient(135deg, #433455, #5c4b73);
    color:white;
}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,.82);
    border-bottom:1px solid rgba(92,75,115,.08);
    padding:1.2rem 0;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:2rem;
}

.logo img{
    max-height:58px;
}

.nav{
    display:flex;
    align-items:center;
    gap:2rem;
}

.nav a{
    text-decoration:none;
    color:var(--heading);
    font-weight:500;
    transition:.3s;
}

.nav a:hover,
.nav a.active{
    color:var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:0.5rem;
    z-index:1000;
}

.mobile-menu-btn span{
    display:block;
    width:25px;
    height:2px;
    background:var(--primary);
    margin:5px 0;
    transition:0.3s;
}

@media(max-width:768px){
    .mobile-menu-btn{
        display:block;
    }
    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        max-width:300px;
        height:100vh;
        background:white;
        flex-direction:column;
        justify-content:center;
        gap:2rem;
        transition:0.3s;
        box-shadow:-5px 0 30px rgba(0,0,0,0.1);
        z-index:999;
    }
    .nav.active{
        right:0;
    }
    .mobile-menu-btn.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }
    .mobile-menu-btn.active span:nth-child(2){
        opacity:0;
    }
    .mobile-menu-btn.active span:nth-child(3){
        transform:rotate(-45deg) translate(7px,-6px);
    }
}

/* HERO */
.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    padding:9rem 0 7rem;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(to right, rgba(43,28,63,.88), rgba(43,28,63,.58), rgba(43,28,63,.35));
}

.hero-content-wrap{
    position:relative;
    z-index:5;
}

.hero-content{
    max-width:760px;
    color:white;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    padding:.9rem 1.4rem;
    border-radius:40px;
    margin-bottom:2rem;
    font-size:.92rem;
    font-weight:500;
    border:1px solid rgba(255,255,255,.18);
}

.hero h1{
    color:white;
}

.hero p{
    color:rgba(255,255,255,.88);
    font-size:1.1rem;
    max-width:650px;
    margin-bottom:2.5rem;
}

.hero-buttons{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom:3rem;
}

.hero-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:1rem 2rem;
    border-radius:18px;
    text-decoration:none;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    color:white;
    font-weight:600;
}

.hero-secondary-btn:hover{
    background:rgba(255,255,255,.2);
}

/* STATS */
.stats{
    display:flex;
    gap:1rem;
    margin-top:2rem;
    flex-wrap:wrap;
}

.stat{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(10px);
    border-radius:24px;
    padding:1.5rem 2rem;
    min-width:180px;
    box-shadow:0 20px 50px rgba(92,75,115,.08);
}

.stat h2{
    color:var(--primary);
    margin:0;
    font-size:2.3rem;
}

/* CENTER TITLE */
.center-title{
    text-align:center;
    max-width:900px;
    margin:auto auto 4rem;
}

/* SERVICES */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.service-card{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-radius:34px;
    padding:2.4rem;
    border:1px solid rgba(92,75,115,.08);
    box-shadow:0 20px 50px rgba(85,65,120,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:78px;
    margin-bottom:1.3rem;
}

.service-card p{
    font-size:.95rem;
}

/* TESTIMONIALS */
.testimonials-wrapper{
    position:relative;
    max-width:1150px;
    margin:auto;
    min-height:520px;
}

.testimonial-card{
    position:absolute;
    width:560px;
    min-height:300px;
    border-radius:38px;
    overflow:hidden;
    padding:3rem;
    color:white;
    box-shadow:0 30px 70px rgba(92,75,115,.18);
}

.testimonial-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(92,75,115,.72), rgba(68,51,76,.82));
    z-index:1;
}

.testimonial-content{
    position:relative;
    z-index:2;
}

.testimonial-card:first-child{
    top:0;
    left:0;
    background:url('https://images.squarespace-cdn.com/content/v1/685446683025720b11af4eb1/a38fb91e-5b93-4023-967d-aafa75a85bbf/pexels-shkrabaanthony-7345452.jpg') center/cover;
}

.testimonial-card:last-child{
    bottom:0;
    right:0;
    background:url('https://images.squarespace-cdn.com/content/v1/685446683025720b11af4eb1/9f599564-2c7e-4add-8e75-3baccdb970c8/pexels-kampus-7551622.jpg') center/cover;
}

.testimonial-card p{
    color:white;
    font-size:1.08rem;
    line-height:1.9;
    opacity:0.95;
}

.testimonial-author{
    margin-top:1.5rem;
    font-weight:600;
    font-size:1.05rem;
    letter-spacing:0.3px;
}

/* TWO COLUMN */
.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.two-col img{
    border-radius:36px;
    box-shadow:0 30px 70px rgba(92,75,115,.12);
}

/* MAP */
.map-placeholder{
    background:linear-gradient(135deg, #f6f0fb, #efe6f7);
    border-radius:38px;
    height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-weight:600;
    text-align:center;
    box-shadow:0 25px 60px rgba(92,75,115,.08);
}

/* FAQ */
details{
    background:rgba(255,255,255,.08);
    border-radius:26px;
    margin-bottom:1rem;
    padding:1.2rem 1.5rem;
    backdrop-filter:blur(10px);
}

details summary{
    cursor:pointer;
    font-weight:600;
    font-size:1.05rem;
}

details p{
    color:#e4dff0;
    margin-top:1rem;
}

/* CONTACT */
.contact-wrapper{
    max-width:950px;
    margin:auto;
}

.contact-wrapper form{
    background:white;
    padding:3rem;
    border-radius:40px;
    box-shadow:0 30px 70px rgba(92,75,115,.08);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
}

.form-group{
    margin-bottom:1rem;
}

.full{
    grid-column:1/-1;
}

input,textarea,select{
    width:100%;
    padding:1rem 1.2rem;
    border-radius:18px;
    border:1px solid rgba(92,75,115,.14);
    font-family:inherit;
    background:#fbf9fd;
}

.checkbox-group{
    display:flex;
    gap:1.5rem;
    flex-wrap:wrap;
    margin-top:.8rem;
    align-items:center;
}

.checkbox-group label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-size:0.9rem;
}

/* FOOTER */
.footer{
    background:linear-gradient(to bottom, #f5effb, #eee6f7);
    padding:5rem 0 2rem;
    border-top:1px solid rgba(92,75,115,.08);
}

.footer-top{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:5rem;
    margin-bottom:4rem;
}

.footer-brand img{
    max-width:220px;
    margin-bottom:1.5rem;
}

.footer-brand p{
    max-width:480px;
}

.footer-links-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.footer-links-grid h4{
    margin-bottom:1.3rem;
    color:var(--primary);
    font-size:1.1rem;
}

.footer-links-grid a{
    display:block;
    margin-bottom:.9rem;
    text-decoration:none;
    color:var(--text);
    transition:.3s;
}

.footer-links-grid a:hover{
    color:var(--primary);
}

.footer-bottom{
    border-top:1px solid rgba(92,75,115,.1);
    padding-top:2rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
}

.footer-socials{
    display:flex;
    gap:1.2rem;
}

.footer-socials a{
    text-decoration:none;
    color:var(--primary);
    font-weight:500;
}

/* RESPONSIVE */
@media(max-width:1100px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .two-col{
        grid-template-columns:1fr;
    }
    .testimonials-wrapper{
        height:auto;
        display:flex;
        flex-direction:column;
        gap:2rem;
        position:static;
    }
    .testimonial-card{
        position:relative;
        width:100%;
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }
    .form-grid{
        grid-template-columns:1fr;
    }
    .footer-top{
        grid-template-columns:1fr;
        gap:2rem;
    }
    .footer-links-grid{
        grid-template-columns:1fr 1fr;
    }
    .hero{
        padding-top:7rem;
    }
    h1{
        font-size:2.8rem;
    }
    h2{
        font-size:2.2rem;
    }
    .stat{
        min-width:150px;
        padding:1rem 1.2rem;
    }
}

@media(max-width:600px){
    .footer-links-grid{
        grid-template-columns:1fr;
    }
    .contact-wrapper form{
        padding:2rem;
    }
}
/* About Page Hero */
.page-hero{
    position:relative;
    min-height:50vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5rem 0;
}
.hero-bg-about{
    position:absolute;
    inset:0;
    z-index:1;
}
.hero-bg-about img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-hero .hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(to right, rgba(43,28,63,.85), rgba(43,28,63,.7));
}
.page-hero .hero-content-wrap{
    position:relative;
    z-index:5;
    width:100%;
}
.page-hero .hero-content{
    max-width:800px;
    margin:0 auto;
    text-align:center;
}
.page-hero h1{
    color:white;
    margin-bottom:0.5rem;
}
.page-hero p{
    color:rgba(255,255,255,.8);
}
/* Values Grid */
.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:2rem;
    margin-top:2rem;
}
.value-card{
    text-align:center;
    background:white;
    padding:2rem;
    border-radius:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}
.value-card i{
    font-size:2.5rem;
    color:var(--primary);
    margin-bottom:1rem;
}
/* Team Grid */
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));
    gap:2rem;
    margin-top:2rem;
}
.team-card{
    background:white;
    border-radius:24px;
    padding:1.8rem;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}
.team-card:hover{
    transform:translateY(-5px);
}
.team-title{
    color:var(--primary);
    font-weight:600;
    font-size:0.85rem;
    letter-spacing:1px;
    margin-bottom:1rem;
    display:inline-block;
    background:rgba(92,75,115,.1);
    padding:0.2rem 0.8rem;
    border-radius:20px;
}
.team-card h3{
    font-size:1.4rem;
    margin-bottom:0.3rem;
}
/* Testimonials Grid */
.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:2rem;
}
.testimonial-card{
    background:white;
    border-radius:24px;
    padding:2rem;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.testimonial-card i{
    color:var(--primary);
    font-size:1.8rem;
    margin-bottom:1rem;
    opacity:0.5;
}
.testimonial-card p{
    font-style:italic;
    margin-bottom:1rem;
}
.testimonial-author{
    font-weight:700;
    color:var(--primary);
}