@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    font-family:'Poppins', sans-serif;
}

:root{
    --navy:#07111f;
    --navy-2:#0b1628;
    --ash:#dfe3ea;
    --ash-2:#e8ecf1;
    --pink:#ff4f6d;
    --blue:#1f7dd1;
    --text:#07111f;
    --muted:#334155;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--ash);
    color:var(--text);
    overflow-x:hidden;
}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:18px 45px;
    display:flex;
    justify-content:center;
    pointer-events:none;
}

.header-container{
    width:100%;
    max-width:1800px;
    height:105px;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:28px;
    padding:0 38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 10px 35px rgba(0,0,0,0.18);
    pointer-events:auto;
}

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:220px;
    display:block;
}

.navbar{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:42px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:#111827;
    font-size:17px;
    font-weight:500;
    transition:0.3s ease;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--pink);
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    height:58px;
    padding:0 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff5c7a,#ff3d68);
    color:white;
    font-weight:600;
    white-space:nowrap;
    transition:0.3s ease;
}

.header-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,79,109,0.3);
}

/* DROPDOWN */

.dropdown{
    padding:38px 0;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%) translateY(12px);
    width:290px;
    padding:18px;
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;

    width:100%;

    text-align:center;

    padding:14px 10px;

    font-size:16px;
}

.dropdown-menu a{
    display:block;
    padding:13px 16px;
    color:var(--navy) !important;
    font-size:15px;
    font-weight:600;
    border-radius:14px;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:linear-gradient(135deg,var(--pink),var(--blue));
    color:white !important;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
    width:45px;
    height:45px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:10001;
}

.menu-toggle span{
    width:28px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(90deg,var(--pink),var(--blue));
    transition:0.35s ease;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

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

.about-hero{
    min-height:82vh;
    padding:190px 8% 120px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(7,17,31,0.78),rgba(7,17,31,0.86)),
    url('../images/Team.jpg') center/cover no-repeat;
}

.about-hero-content{
    max-width:940px;
}

.about-hero span,
.about-story span,
.values-heading span,
.about-cta span{
    color:var(--pink);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.about-hero h1{
    color:white;
    font-size:76px;
    line-height:1.08;
    margin:24px 0;
    font-weight:800;
}

.about-hero p{
    color:#d0d0d0;
    font-size:22px;
    line-height:1.8;
    max-width:850px;
}

/* =========================
STORY
========================= */

.about-story{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    background:var(--ash);
}

.story-content h2{
    font-size:58px;
    line-height:1.15;
    margin:20px 0;
    color:var(--navy);
}

.story-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:24px;
}

.primary-btn{
    display:inline-block;
    margin-top:20px;
    background:linear-gradient(135deg,#ff5c7a,#ff3d68);
    color:white;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s ease;
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,79,109,0.3);
}

.story-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    display:block;
}

/* =========================
MISSION
========================= */

.mission-section{
    padding:110px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    background:linear-gradient(135deg,var(--navy),var(--navy-2),#14101a);
}

.mission-card{
    padding:40px;
    border-radius:28px;
    background:linear-gradient(145deg,rgba(255,255,255,0.1),rgba(255,255,255,0.035));
    border:1px solid rgba(255,255,255,0.08);
    transition:0.35s ease;
}

.mission-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,79,109,0.35);
}

.mission-card i{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--pink),var(--blue));
    color:white;
    font-size:28px;
    margin-bottom:28px;
}

.mission-card h3{
    color:white;
    font-size:28px;
    margin-bottom:15px;
}

.mission-card p{
    color:#d0d0d0;
    line-height:1.8;
}

/* =========================
VALUES
========================= */

.values-section{
    padding:120px 8%;
    background:var(--ash-2);
}

.values-heading{
    max-width:850px;
    margin-bottom:60px;
}

.values-heading h2{
    font-size:58px;
    line-height:1.15;
    margin-top:18px;
    color:var(--navy);
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.value-box{
    padding:35px;
    border-radius:26px;
    background:white;
    border:1px solid rgba(0,0,0,0.08);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.value-box:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(255,79,109,0.14);
}

.value-box h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--navy);
}

.value-box p{
    color:var(--muted);
    line-height:1.8;
}

/* =========================
STATS
========================= */

.about-stats{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:var(--navy);
    color:white;
}

.about-stats div{
    padding:20px 40px;
    border-right:1px solid rgba(255,255,255,0.15);
}

.about-stats div:last-child{
    border-right:none;
}

.about-stats h2{
    font-size:56px;
    color:var(--pink);
}

.about-stats p{
    margin-top:10px;
    color:#d0d0d0;
}

/* =========================
CTA
========================= */

.about-cta{
    padding:120px 8%;
    text-align:center;
    background:var(--ash);
}

.about-cta h2{
    max-width:900px;
    margin:20px auto;
    font-size:58px;
    line-height:1.15;
    color:var(--navy);
}

.about-cta p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:35px;
}

.about-cta a{
    display:inline-block;
    background:var(--pink);
    color:white;
    padding:18px 36px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s ease;
}

.about-cta a:hover{
    background:var(--blue);
    transform:translateY(-4px);
}

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

.premium-footer{
    background:linear-gradient(180deg,#050505,#09142a,#0c1f3d);
    padding-top:90px;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap:60px;
}

.footer-about img{
    width:250px;
    margin-bottom:25px;
}

.footer-about p,
.footer-links a,
.footer-contact p,
.footer-bottom p,
.footer-bottom a{
    color:#d0d0d0;
}

.footer-about p{
    line-height:1.8;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h3,
.footer-contact h3{
    color:white;
    font-size:26px;
    margin-bottom:25px;
}

.footer-links a{
    margin-bottom:14px;
    transition:0.3s ease;
}

.footer-links a:hover,
.footer-bottom a:hover{
    color:var(--pink);
}

.footer-contact p{
    margin-bottom:16px;
    line-height:1.7;
}

.footer-contact i{
    color:var(--pink);
    margin-right:10px;
}

.footer-bottom{
    margin-top:70px;
    padding:25px 8%;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom div{
    display:flex;
    gap:20px;
}

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

@media(max-width:991px){

    .header{
        padding:20px;
    }

    .header-container{
        height:105px;
        padding:0 25px;
    }

    .logo img{
        width:170px;
    }

    .header-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

    .navbar{
        position:absolute;
        top:125px;
        left:20px;
        right:20px;
        display:none;
        flex-direction:column;
        background:rgba(0,0,0,0.94);
        backdrop-filter:blur(15px);
        -webkit-backdrop-filter:blur(15px);
        border-radius:28px;
        padding:34px 24px;
        border:1px solid rgba(255,255,255,0.08);
        box-shadow:0 18px 45px rgba(0,0,0,0.45);
    }

    .navbar.active{
        display:flex;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        gap:24px;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        color:white;
        font-size:18px;
        font-weight:700;
    }

    .dropdown{
        padding:0;
    }

    .dropdown-menu{
    position:relative;

    left:0;
    top:15px;

    transform:none;

    width:100%;

    max-width:100%;

    margin:0 auto;

    padding:18px 12px;

    border-radius:22px;

    display:none;

    background:#f4f4f4;

    overflow:hidden;
}

    .dropdown.active .dropdown-menu{
    display:block;
}

    .dropdown-menu a{
        color:var(--navy) !important;
        font-size:15px;
        white-space:normal;
    }

    .about-story,
    .mission-section,
    .values-grid,
    .about-stats,
    .footer-container{
        grid-template-columns:1fr;
    }

    .about-story{
        gap:50px;
    }

    .about-hero h1{
        font-size:54px;
    }

    .about-hero p{
        font-size:20px;
    }

    .story-content h2,
    .values-heading h2,
    .about-cta h2{
        font-size:44px;
    }

    .about-stats div{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.15);
    }

    .about-stats div:last-child{
        border-bottom:none;
    }

}

@media(max-width:600px){

    .header{
        padding:20px;
    }

    .header-container{
        height:100px;
        padding:0 24px;
    }

    .logo img{
        width:165px;
    }

    .about-hero{
        min-height:auto;
        padding:170px 20px 90px;
    }

    .about-hero h1{
        font-size:42px;
    }

    .about-hero p{
        font-size:18px;
    }

    .about-story,
    .mission-section,
    .values-section,
    .about-cta{
        padding:90px 20px;
    }

    .story-content h2,
    .values-heading h2,
    .about-cta h2{
        font-size:36px;
    }

    .mission-card,
    .value-box{
        padding:30px;
    }

    .about-stats{
        padding:60px 20px;
    }

    .about-stats h2{
        font-size:44px;
    }

    .footer-container{
        text-align:center;
    }

    .footer-bottom{
        justify-content:center;
        text-align:center;
    }

    .footer-bottom div{
        justify-content:center;
        flex-wrap:wrap;
    }
}

@media(max-width:991px){

    .dropdown{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .dropdown-menu{
        position:static !important;

        left:auto !important;
        top:auto !important;
        transform:none !important;

        width:90% !important;
        max-width:360px !important;

        margin:18px auto 0 !important;
        padding:18px 10px !important;

        display:none;

        opacity:1 !important;
        visibility:visible !important;
        pointer-events:auto !important;

        background:#f4f4f4;
        border-radius:20px;
    }

    .dropdown.active .dropdown-menu{
        display:block !important;
    }

    .dropdown-menu li,
    .dropdown-menu li a{
        width:100%;
        text-align:center;
    }
}

/* FAQ */

.faq-section{
    padding:120px 8%;
    background:#07111f;
    color:white;
}

.faq-heading{
    text-align:center;
    margin-bottom:70px;
}

.faq-heading span{
    color:#ff4f6d;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.faq-heading h2{
    font-size:58px;
    margin-top:15px;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:70px;
    align-items:start;
}

.faq-item{
    margin-bottom:18px;
    border-radius:16px;
    overflow:hidden;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
}

.faq-question{
    width:100%;
    padding:22px 26px;
    background:#0b1220;
    border:none;
    color:white;
    font-size:18px;
    font-weight:700;
    text-align:left;
    cursor:pointer;

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

.faq-question i{
    color:#ff4f6d;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:
    max-height 0.4s ease,
    padding 0.4s ease;

    padding:0 28px;
}

.faq-answer p{
    padding:25px 26px;
    color:#d0d0d0;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 28px 28px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

/* FORM */

.faq-form-box{
    padding:40px;
    border-radius:28px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.09),
        rgba(255,255,255,0.035)
    );

    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(14px);
}

.faq-form-box h3{
    font-size:30px;
    margin-bottom:25px;
    color:#ff4f6d;
}

.faq-form-box input{
    width:100%;
    padding:15px 18px;
    margin-bottom:14px;

    border-radius:12px;
    border:1px solid rgba(255,255,255,0.12);

    background:rgba(255,255,255,0.08);
    color:white;
    outline:none;
}

.faq-form-box input::placeholder{
    color:#bbbbbb;
}

.faq-form-box h4{
    font-size:22px;
    margin:22px 0 18px;
}

.faq-service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px 40px;
    margin-bottom:30px;
}

.faq-service-grid label{
    display:flex;
    align-items:center;
    gap:12px;

    color:#d0d0d0;
    font-size:16px;
    font-weight:500;

    cursor:pointer;
}

.faq-service-grid input[type="checkbox"]{
    width:18px;
    height:18px;

    accent-color:#ff4f6d;

    cursor:pointer;
}

.faq-form-box button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#ff4f6d,#1f7dd1);
    color:white;

    font-weight:800;
    cursor:pointer;
}

@media(max-width:991px){
    .faq-wrapper{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .faq-section{
        padding:90px 20px;
    }

    .faq-heading h2{
        font-size:38px;
    }

    .faq-service-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
FAQ CLICK FIX OVERRIDES
========================= */

.faq-question{
    position:relative;
    z-index:2;
    pointer-events:auto;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer{
    max-height:320px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

/* MOBILE DROPDOWN FINAL ALIGNMENT */
@media(max-width:991px){
    .dropdown-menu{
        position:static !important;
        left:auto !important;
        top:auto !important;
        transform:none !important;
        width:90% !important;
        max-width:360px !important;
        margin:18px auto 0 !important;
    }

    .dropdown.active .dropdown-menu{
        display:block !important;
    }
}

.faq-answer{
    display:none !important;
}

.faq-item.open .faq-answer{
    display:block !important;
}

.faq-item.open .faq-question i{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0 !important;
    height:0 !important;
    overflow:hidden !important;
    padding:0 28px !important;
    display:block !important;
}

.faq-item.open .faq-answer{
    max-height:300px !important;
    height:auto !important;
    padding:25px 28px !important;
}

.faq-item.open .faq-answer p{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
}
