



/*==================================================
01. GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


/*==================================================
02. CSS VARIABLES
==================================================*/

:root{

    --primary:#0057FF;
    --primary-dark:#0046CF;

    --secondary:#FF7A00;
    --secondary-dark:#E96B00;

    --success:#16A34A;
    --danger:#DC2626;

    --dark:#0F172A;
    --dark-light:#334155;

    --text:#475569;

    --white:#FFFFFF;

    --body:#F8FAFC;

    --border:#E2E8F0;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);

    --shadow-md:0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --radius:12px;

    --radius-lg:20px;

    --transition:.35s ease;

}


/*==================================================
03. RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--body);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font-family:inherit;

    outline:none;

}


/*==================================================
04. TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:60px;

}

h2{

    font-size:46px;

}

h3{

    font-size:30px;

}

p{

    font-size:16px;

}


/*==================================================
05. CONTAINER
==================================================*/

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 20px;

}


/*==================================================
06. COMMON SECTION
==================================================*/

section{

    padding:100px 0;

    position:relative;

}

.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.section-title h2{

    margin:15px 0;

}

.section-title p{

    color:var(--text);

}


/*==================================================
07. BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;
   

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
08. FLEX UTILITIES
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.flex-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.flex-column{

    display:flex;

    flex-direction:column;

}


/*==================================================
09. SPACING UTILITIES
==================================================*/

.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}

.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

.pt-60{padding-top:60px;}
.pb-60{padding-bottom:60px;}


/*==================================================
10. SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#EEF2F7;

}


/*==================================================
END OF FOUNDATION
==================================================*/


/*==================================================
11. HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

}


/*==================================================
12. TOP BAR
==================================================*/

.topbar{

    background:var(--primary);

    color:var(--white);

    height:42px;

    display:flex;

    align-items:center;

}

.topbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:100%;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-left span,
.top-right span{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    font-weight:500;

}

.topbar i{

    color:#FFD54A;

    font-size:14px;

}


/*==================================================
13. NAVBAR
==================================================*/

.navbar{

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:all .35s ease;

}

.navbar.sticky{

    background:#ffffff;

    box-shadow:var(--shadow-md);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:82px;

}


/*==================================================
14. LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:58px;

    width:auto;

}


/*==================================================
15. NAVIGATION MENU
==================================================*/

.menu{

    display:flex;

    align-items:center;

    gap:40px;

}

.menu li{

    position:relative;

}

.menu li a{

    color:var(--dark);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.menu li a:hover{

    color:var(--primary);

}


/*==================================================
16. MENU HOVER EFFECT
==================================================*/

.menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.menu li a:hover::after,

.menu li a.active::after{

    width:100%;

}

.menu li a.active{

    color:var(--primary);

}


/*==================================================
17. MOBILE MENU BUTTON
==================================================*/

.menu-toggle{

    width:42px;

    height:42px;

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    cursor:pointer;

}

.menu-toggle span{

    width:26px;

    height:3px;

    margin:3px 0;

    border-radius:10px;

    background:var(--dark);

    transition:var(--transition);

}


/*==================================================
18. HAMBURGER ANIMATION
==================================================*/

.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);

}

/*==================================================
19. HEADER SPACER
==================================================*/

.header-space{

    height:60px;

}

/*====================================
        CONTACT HERO
====================================*/

.contact-hero{

    min-height:500px;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(
        rgba(56,43,152,.78),
        rgba(56,43,152,.78)
    ),
    url("../images/contact/contact-hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.contact-hero-content{

    max-width:850px;

    margin:auto;

}

.contact-hero h1{

    font-size:58px;

    margin:20px 0;

}

.contact-hero p{

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;

}

/*====================================
        CONTACT SECTION
====================================*/

.contact-section{

    padding:100px 0;

    background:#F8F9FD;

}

.contact-wrapper{

    display:flex;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;

}

.contact-info{

    flex:1;

    min-width:320px;

}

.contact-info h2{

    font-size:40px;

    margin-bottom:20px;

}

.contact-info>p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.info-card{

    display:flex;

    gap:18px;

    align-items:flex-start;

    background:#fff;

    padding:20px;

    margin-bottom:20px;

    border-radius:15px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.info-card i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#382B98;

    color:#fff;

    border-radius:50%;

    font-size:20px;

}

.contact-form{

    flex:1;

    min-width:320px;

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-group{

    margin-bottom:20px;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#382B98;

}

/*====================================
        MAP & BUSINESS HOURS
====================================*/

.map-hours{

    padding:100px 0;

    background:#ffffff;

}

.map-hours-wrapper{

    display:flex;

    gap:40px;

    justify-content:space-between;

    flex-wrap:wrap;

}

.map-box{

    flex:2;

    min-width:350px;

}

.map-box iframe{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.hours-box{

    flex:1;

    min-width:320px;

    background:#F8F9FD;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.hours-box h2{

    margin:15px 0 30px;

    font-size:34px;

}

.hours-box ul{

    list-style:none;

    padding:0;

    margin:0;

}

.hours-box li{

    display:flex;

    justify-content:space-between;

    padding:16px 0;

    border-bottom:1px solid #E5E5E5;

    font-weight:500;

}

.closed{

    color:#E53935;

    font-weight:700;

}

/*====================================
CONTACT FAQ
====================================*/

/* .contact-faq{

    padding:100px 0;

    background:#F8F9FD;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:22px 30px;

    border:none;

    background:#fff;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:600;

}

/* .faq-answer{

    display:none;

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

} */

 .faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    padding:0 30px;

}

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 30px 25px;

} */

/*====================================
CONTACT CTA
====================================*/

.contact-cta{

    padding:100px 0;

    background:linear-gradient(rgba(56,43,152,.92),rgba(56,43,152,.92));

    text-align:center;

    color:#fff;

}

.contact-cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.contact-cta p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.9;

}
