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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0d0d0d;
    color: white;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;

    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #222;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #8b5cf6;
}

.cta-btn {
    background: #8b5cf6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
}

.cta-btn:hover {
    background: #7c3aed;
    color: white !important;
}

/* HERO */

.hero {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: rgba(139,92,246,0.15);
    border: 1px solid #8b5cf6;
    color: #c4b5fd;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 15px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 24px;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139,92,246,0.35);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139,92,246,0.5);
}

.hero-button:hover {
    background: #7c3aed;
}

/* STATS */

.stats {
    max-width: 1000px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

.stat-box {
    flex: 1;
    background: #151515;
    border: 1px solid #242424;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
}

.stat-box h2 {
    font-size: 48px;
    color: #8b5cf6;
    margin-bottom: 12px;
}

.stat-box p {
    color: #b3b3b3;
    font-size: 18px;
}

/* SERVICES */

.services{
    max-width:1200px;
    margin:140px auto;
    padding:0 20px;
    text-align:center;
}

.services h2{
    font-size:56px;
    margin-bottom:20px;
}

.services-subtitle{
    color:#b3b3b3;
    font-size:22px;
    max-width:700px;
    margin:0 auto 70px;
    line-height:1.6;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#151515;
    border:1px solid #242424;
    border-radius:18px;
    padding:40px 30px;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
            overflow: hidden;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
    letter-spacing: -0.5px;
}

.service-card p{
    color:#b3b3b3;
    line-height:1.7;
}

/* PROCESS */

.process{
    max-width:1200px;
    margin:160px auto;
    padding:0 20px;
    text-align:center;
}

.process h2{
    font-size:48px;
    margin-bottom:20px;
}

.process-subtitle{
    color:#b3b3b3;
    font-size:22px;
    max-width:700px;
    margin:0 auto 70px;
    line-height:1.6;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-card{
    background:#151515;
    border:1px solid #242424;
    border-radius:18px;
    padding:45px 35px;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.number{
    width:60px;
    height:60px;
    margin:0 auto 30px;

    border-radius:50%;
    background:#8b5cf6;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;
    font-weight:bold;
}

.process-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.process-card p{
    color:#b3b3b3;
    line-height:1.7;
}

/* WHY */

.why{
    max-width:1200px;
    margin:170px auto;
    padding:0 20px;
    text-align:center;
}

.why h2{
    font-size:48px;
    margin-bottom:20px;
}

.why-subtitle{
    max-width:700px;
    margin:0 auto 70px;
    color:#b3b3b3;
    font-size:22px;
    line-height:1.6;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#151515;
    border:1px solid #242424;
    border-radius:18px;
    padding:45px;
    text-align:left;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.why-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.why-card p{
    color:#b3b3b3;
    line-height:1.7;
}

/* CTA */

.cta-section{
    max-width:900px;
    margin:140px auto;
    text-align:center;
    padding:0 20px;
}

.cta-section h2{
    font-size:52px;
    margin-bottom:25px;
}

.cta-section p{
    color:#b3b3b3;
    font-size:22px;
    line-height:1.7;
    margin-bottom:50px;
}

.cta-large{
    display:inline-block;
    background:#8b5cf6;
    color:white;
    text-decoration:none;
    padding:22px 48px;
    border-radius:14px;
    font-size:22px;
    font-weight:bold;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.cta-large:hover{
    background:#7c3aed;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(139,92,246,.35);
}

/* FOOTER */

footer{
    margin-top:140px;
    padding:70px 20px;
    border-top:1px solid #242424;
    text-align:center;
}

footer h3{
    font-size:34px;
    margin-bottom:20px;
}

footer p{
    color:#b3b3b3;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.7;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:35px;
    margin-bottom:40px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    color:#8b5cf6;
}

.copyright{
    color:#666;
    font-size:15px;
}

/* ABOUT HERO */

.about-hero{
    max-width:1000px;
    margin:120px auto;
    padding:0 20px;
    text-align:center;
}

.about-hero h1{
    font-size:64px;
    margin:35px 0;
    line-height:1.2;
}

.about-text{
    max-width:850px;
    margin:0 auto;
    color:#b3b3b3;
    font-size:24px;
    line-height:1.7;
}

.founders {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
    text-align: center;
}

.founders h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.founders p {
    font-size: 21px;
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* MISSION */

.mission{
    max-width:900px;
    margin:140px auto;
    text-align:center;
    padding:0 20px;
}

.mission h2{
    font-size:48px;
    margin-bottom:30px;
}

.mission p{
    color:#b3b3b3;
    font-size:22px;
    line-height:1.8;
}



/* VALUES */

.values{
    max-width:1200px;
    margin:140px auto;
    padding:0 20px;
    text-align:center;
}

.values h2{
    font-size:48px;
    margin-bottom:70px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.value-card{
    background:#151515;
    border:1px solid #242424;
    border-radius:18px;
    padding:45px 35px;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.value-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
}

.value-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.value-card p{
    color:#b3b3b3;
    line-height:1.7;
}

.active{
    color:#8b5cf6 !important;
    font-weight:bold;
}

.scrolled {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #242424;
    transition: all 0.3s ease;
}

/* MOBILE */

@media (max-width: 768px) {

    .navbar{
        padding:20px;
    }

    .nav-links{
    gap:12px;
}

.nav-links a{
    font-size:15px;
}

.cta-btn{
    padding:10px 16px;
    font-size:14px;
}

    .logo{
        font-size:18px;
    }

    .hero h1{
    font-size:42px;
    line-height:1.15;
}

    .hero-text{
        font-size:20px;
    }

    .stats,
    .service-grid,
    .process-grid,
    .why-grid,
    .value-grid{
        grid-template-columns:1fr;
    }

}

/* FAQ */

.faq{
    max-width:1000px;
    margin:140px auto;
    padding:0 20px;
}

.faq h2{
    text-align:center;
    font-size:48px;
    margin-bottom:70px;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#151515;
    border:1px solid #242424;
    border-radius:18px;
    padding:35px;
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.faq-item:hover{
    border-color:#8b5cf6;
    transform:translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.faq-item h3{
    font-size:24px;
    margin-bottom:15px;
}

.faq-item p{
    color:#b3b3b3;
    line-height:1.8;
    font-size:18px;
}

/* BOOKING */

.booking{
    max-width:800px;
    margin:120px auto;
    padding:0 20px;
}

.booking-content{
    background:#151515;
    border:1px solid #242424;
    border-radius:20px;
    padding:60px;
}

.booking h1{
    text-align:center;
    font-size:52px;
    margin-bottom:20px;
}

.booking p{
    text-align:center;
    color:#b3b3b3;
    font-size:20px;
    line-height:1.7;
    margin-bottom:50px;
}

.booking-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.booking-form input,
.booking-form textarea{

    background:#0d0d0d;
    border:1px solid #2d2d2d;
    color:white;

    padding:18px;

    border-radius:12px;

    font-size:17px;

    outline:none;

    transition:.3s;

}

.booking-form input:focus,
.booking-form textarea:focus{

    border-color:#8b5cf6;

}

.booking-form button{

    background:#8b5cf6;

    color:white;

    border:none;

    padding:20px;

    border-radius:12px;

    font-size:18px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.booking-form button:hover{

    background:#7c3aed;

    transform:translateY(-3px);

}