/* ===========================
   COLORS
=========================== */

:root{
    --primary:#4F8EF7;
    --primary-dark:#2f6fd9;
    --green:#53c27d;
    --dark:#1f2937;
    --gray:#6b7280;
    --light:#f8fafc;
    --white:#ffffff;
}


/* ===========================
   GOOGLE RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:fff;
    color:var(--dark);
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}





/* ===========================
   NAVBAR
=========================== */

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    width:95%;
    max-width:1500px;
    margin:0 auto;
}

.logo{
    font-size:30px;
    font-weight:800;
    font-family:'Poppins',sans-serif;
}

.logo span{
    color:var(--primary);
}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:var(--dark);
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:var(--primary);
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:var(--dark);
    cursor:pointer;
}


/*=====================================
        MOBILE MENU
======================================*/


@media(max-width:992px){
.desktop-btn{
display:none;
}

.menu-toggle{
display:block;
z-index:1001;
}

nav{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
box-shadow:0 15px 35px rgba(0,0,0,.08);
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
}

nav.active{
max-height:500px;
}

nav ul{
flex-direction:column;
gap:0;
}

nav li{
border-bottom:1px solid #eee;
}

nav a{
display:block;
padding:18px 25px;
}
}


/* ===========================
         BUTTONS
=========================== */

.btn{
    background:var(--primary);
    color:white;
    padding:14px 28px;
    border-radius:40px;
    display:inline-block;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:13px 28px;
    border-radius:40px;
    margin-left:15px;
    transition:.3s;
}

.btn-outline:hover{
    background:var(--primary);
    color:white;
}


/* ===========================
      HERO SECTION
=========================== */

.hero{
    padding:170px 0 110px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.hero h1{
    font-size:58px;
    font-family:'Poppins',sans-serif;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    color:var(--gray);
    font-size:19px;
    margin-bottom:35px;
}

.hero-image img{
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}


/*=====================================
      WHY CHOOSE LISTENSPACE
======================================*/

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid transparent;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#dbeafe;
    box-shadow:0 20px 45px rgba(79,142,247,.12);
}

.feature-card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:22px;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.feature-card p{
    color:var(--gray);
    font-size:16px;
    line-height:1.8;
}

@media(max-width:992px){
.grid-4{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.grid-4{
grid-template-columns:1fr;
}
}


/* ===========================
         RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-content{
grid-template-columns:1fr;
text-align:center;
}

.grid-3{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

.btn-outline{
margin-left:0;
margin-top:15px;
display:inline-block;
}
}


/* ===========================
      SECTION TITLE
=========================== */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:60px;
    font-family:'Poppins',sans-serif;
}


/*====================================================
                   ABOUT SECTION
====================================================*/

.about{
    background:#fff;
}

.section-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.subtitle{
    display:inline-block;
    background:#eef5ff;
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:46px;
    font-family:'Poppins',sans-serif;
    margin-bottom:20px;
}

.section-intro{
    color:var(--gray);
    font-size:18px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:90px;
}

.about-content h3{
    font-size:32px;
    margin-bottom:25px;
}

.about-content p{
    color:var(--gray);
    margin-bottom:22px;
    font-size:17px;
}

.about-note{
    margin-top:35px;
    padding:22px;
    border-left:5px solid var(--primary);
    background:#eef5ff;
    border-radius:12px;
}

/* ===========================
      PROFILE CARD
=========================== */

.profile-card{
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    border-radius:24px;
    padding:50px 40px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.35s;
}

.profile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(79,142,247,.15);
}

.profile-image{
    display:flex;
    justify-content:center;
    margin-bottom:30px;
}

.profile-image img{
    width:300px;
    height:340px;
    object-fit:fll;
    border:6px solid #fff;
    box-shadow:0 15px 35px rgba(79,142,247,.20);
    transition:.35s;
}

.profile-image img:hover{
    transform:scale(1.04);
}

.profile-card h3{
    font-size:34px;
    margin-bottom:8px;
}

.profile-card .btn{
    width:100%;
    margin-top:15px;
}

@media(max-width:768px){

    .profile-card{
        padding:40px 25px;
    }

    .profile-image img{
        width:200px;
        height:200px;
    }

    .profile-card h3{
        font-size:28px;
    }
}

.profile-info{
    display:flex;
    flex-direction:column;
    gap:22px;
    margin:40px 0;
}

.profile-info div{
    display:flex;
    align-items:center;
    gap:16px;
}

.profile-info i{
    width:24px;
    min-width:24px;
    text-align:center;
    color:var(--primary);
    font-size:18px;
}

.profile-info p{
    margin:0;
    line-height:1.8;
    font-size:17px;
}

.profile-quote{
    color:var(--gray);
    font-style:italic;
    line-height:1.8;
    margin-top:20px;
}

.profile-divider{
    width:100px;
    height:4px;
    background:var(--primary);
    border-radius:50px;
    margin:30px auto;
}

/*====================================================
                VALUE CARDS
====================================================*/

.values{
    margin-top:40px;
}

.value-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:18px;
}

.value-card p{
    color:var(--gray);
}

/*====================================================
                  PRINCIPLES
====================================================*/

.principles{
    margin-top:100px;
}

.principles-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.principle{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.3s;
}

.principle:hover{
    transform:translateY(-6px);
}

.principle i{
    color:var(--primary);
    font-size:35px;
    margin-bottom:18px;
}

.principle h3{
    margin-bottom:15px;
}

.principle p{
    color:var(--gray);
}

/*===============================
                 QUOTE
==============================*/

.quote{
    margin-top:100px;
    text-align:center;
    background:linear-gradient(135deg,#4F8EF7,#6da8ff);
    color:white;
    padding:80px 60px;
    border-radius:25px;
}

.quote h2{
    font-family:'Poppins',sans-serif;
    font-size:34px;
    line-height:1.5;
    font-weight:600;
}

/*============================
            RESPONSIVE
============================*/

@media(max-width:992px){
.about-grid{
grid-template-columns:1fr;
}

.principles-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:36px;
}

.quote{
padding:60px 30px;
}

.quote h2{
font-size:26px;
}
}

/*==================
      STEPS
================= */

.steps{
    background:white;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.step{
    text-align:center;
}

.number{
    width:70px;
    height:70px;
    margin:auto auto 20px;
    border-radius:50%;
    background:var(--primary);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    font-weight:bold;
}

/* ==========================
       FAQ ACCORDION
========================== */

.accordion{
max-width:900px;
margin:auto;

}

.accordion-item{
background:white;
margin-bottom:20px;
border-radius:15px;
overflow:hidden;
transition:.3s;
}

.accordion-item:hover{
    box-shadow:0 15px 40px rgba(79,142,247,.10);
}

.accordion-header{
width:100%;
background:none;
border:none;
padding:22px 30px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:18px;
font-weight:600;
text-align:left;
}

.accordion-header i{
    font-size:18px;
    color:var(--primary);
    transition:transform .3s ease;
}

.accordion-item.active .accordion-header i{
    transform:rotate(180deg);
}

.accordion-content{
max-height:0;
overflow:hidden;
transition:max-height .35s ease;
}

.accordion-content p{
padding:0 30px 25px;
color:#666;
}

.accordion-item.active .accordion-content{
max-height:300px;
}

/* ==========================
       CONTACT FORM
========================== */

.contact form{
    max-width:700px;
    margin:auto;
}

.contact input,
.contact textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:inherit;
}

.contact textarea{
    resize:vertical;
}

.contact button{
    border:none;
    cursor:pointer;
}

.contact select{
width:100%;
padding:16px;
margin-bottom:20px;
border-radius:12px;
border:1px solid #ddd;
font-size:16px;
font-family:inherit;
background:white;
}

/* ==========================
       FOOTER
========================== */

footer{
    background:var(--dark);
    color:#fff;
    padding:60px 0 25px;
}

.footer-logo{
    max-width:380px;
}

.footer-logo a{
    font-size:32px;
    font-weight:700;
    color:#ffffff;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
}

.footer-logo span{
    color:var(--primary);
}

.footer-logo p{
    margin-top:18px;
    color:#cbd5e1;
    line-height:1.8;
    font-size:16px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1.8fr 1fr;
    align-items:center;
    gap:35px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:15px;
}

.footer-links a{
    color:#e2e8f0;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-center{
    text-align:center;
    align-self:end;
}

.footer-center p{
    margin:0;
    font-size:17px;
    font-weight:600;
    color:#fff;
}

.footer-center span{
    display:block;
    margin-top:8px;
    color:#cbd5e1;
    font-size:15px;
}

/*=====================================
       RESPONSIVE FOOTER
======================================*/

@media(max-width:768px){
.footer-content{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

.footer-links{
justify-content:center;
}

.footer-logo{
    max-width:100%;
}
}


/* ==========================
      RESPONSIVE
========================== */

@media(max-width:992px){

.about-content,
.steps-grid{
    grid-template-columns:1fr;
}

.section-title{
    font-size:32px;
}

}


/* ==========================
       BACK TO TOP
========================== */

#topBtn{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:var(--primary);
color:white;
font-size:20px;
cursor:pointer;
display:none;
box-shadow:0 10px 25px rgba(0,0,0,.2);
transition:.3s;
z-index:999;
}

#topBtn:hover{
transform:translateY(-5px);
background:var(--primary-dark);
}


/*=====================================
          POLICY PAGE
======================================*/

.policy{
    padding:70px 0 80px;
}

.policy .container{
    max-width:900px;
}

.policy h1{
    font-size:48px;
    margin-bottom:10px;
}

.last-updated{
    color:var(--gray);
    margin-bottom:40px;
}

.policy h2{
    margin-top:45px;
    margin-bottom:15px;
    font-size:28px;
}

.policy p{
    color:var(--gray);
    line-height:1.9;
    margin-bottom:18px;
}

.policy ul{
    margin-left:25px;
    color:var(--gray);
}

.policy li{
    margin-bottom:12px;
}

.policy hr{
    margin:40px 0;
    border:none;
    border-top:1px solid #eee;
}

/*=====================================
POLICY HEADER
======================================*/

.policy-header{
    position:sticky;
    top:0;
    background:#fff;
    border-bottom:1px solid #eee;
    z-index:1000;
}

.policy-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.policy-logo{
    font-size:32px;
    font-weight:700;
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    text-decoration:none;
}

.policy-logo span{
    color:var(--primary);
}

.back-home{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--primary);
    font-weight:600;
    transition:.3s;
    padding:10px 18px;
    border:2px solid var(--primary);
    border-radius:50px;
}

.back-home:hover{
   background:var(--primary);
   color:#fff;
}

.back-home i{
    transition:.3s;
}

.back-home:hover i{
    transform:translateX(-5px);
}

@media(max-width:768px){
    .policy-header .container{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:15px;
    }

    .policy-logo{
        font-size:28px;
    }
}