/*=========================================================
CONTACT PAGE
=========================================================*/

/* Banner */

.contact-banner{

    position:relative;

    overflow:hidden;

    padding:170px 0 120px;

    background:linear-gradient(135deg,#0f172a,#2563eb);

    color:#fff;

}

.contact-banner h1{

    font-size:60px;

    font-weight:800;

    margin:20px 0;

    line-height:1.2;

}

.contact-banner p{

    font-size:18px;

    opacity:.92;

    line-height:1.9;

    max-width:720px;

    margin:auto;

}

.page-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 22px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:1px;

}

.breadcrumb-nav{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:12px;

    font-weight:500;

}

.breadcrumb-nav a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb-nav span{

    color:rgba(255,255,255,.85);

}

/* Floating Shapes */

.shape{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.35;

}

.shape-1{

    width:260px;

    height:260px;

    background:#38bdf8;

    top:-80px;

    right:-70px;

}

.shape-2{

    width:320px;

    height:320px;

    background:#60a5fa;

    bottom:-120px;

    left:-120px;

}

/*========================================*/

.contact-section{

    padding:110px 0;

    background:#f8fafc;

}

/* Left */

.contact-info{

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    height:100%;

}

.contact-info h2{

    font-size:42px;

    font-weight:800;

    margin:20px 0;

    color:#111827;

}

.contact-info>p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:35px;

}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:28px;

    align-items:flex-start;

}

.info-box:last-child{

    margin-bottom:0;

}

.info-box .icon{

    width:65px;

    height:65px;

    min-width:65px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563eb,#60a5fa);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    transition:.35s;

}

.info-box:hover .icon{

    transform:translateY(-6px) rotate(8deg);

}

.info-box h5{

    margin-bottom:6px;

    font-weight:700;

    color:#111827;

}

.info-box p{

    margin:0;

    color:#6b7280;

}

/*========================================*/

/* Form */

.contact-form{

    background:#fff;

    border-radius:28px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.contact-form h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:35px;

    color:#111827;

}

.contact-form .form-control,

.contact-form .form-select{

    height:58px;

    border-radius:15px;

    border:1px solid #dbe3ee;

    padding:15px 18px;

    font-size:16px;

    transition:.3s;

    box-shadow:none;

}

.contact-form textarea.form-control{

    height:auto;

    min-height:180px;

    resize:none;

}

.contact-form .form-control:focus,

.contact-form .form-select:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 .18rem rgba(37,99,235,.15);

}

.contact-form .btn{

    padding:16px 36px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.contact-form .btn:hover{

    transform:translateY(-3px);

}

/*========================================*/

@media(max-width:992px){

    .contact-banner{

        padding:150px 0 90px;

    }

    .contact-banner h1{

        font-size:46px;

    }

    .contact-info h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .contact-banner{

        padding:130px 0 70px;

    }

    .contact-banner h1{

        font-size:36px;

    }

    .contact-banner p{

        font-size:16px;

    }

    .contact-info,

    .contact-form{

        padding:30px;

    }

    .contact-form h3{

        font-size:28px;

    }

}

@media(max-width:576px){

    .contact-banner h1{

        font-size:30px;

    }

    .breadcrumb-nav{

        flex-wrap:wrap;

    }

    .info-box{

        gap:15px;

    }

    .info-box .icon{

        width:55px;

        height:55px;

        min-width:55px;

        font-size:20px;

    }

    .contact-form .btn{

        width:100%;

    }

}
/*==================================================
CONTACT CARDS
==================================================*/

.contact-cards{

    padding:90px 0;

    background:#ffffff;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 15px 45px rgba(0,0,0,.05);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(37,99,235,.12);

}

.contact-card-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:22px;

    background:linear-gradient(135deg,#2563eb,#60a5fa);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.contact-card:hover .contact-card-icon{

    transform:rotate(10deg);

}

.contact-card-icon.whatsapp{

    background:linear-gradient(135deg,#22c55e,#16a34a);

}

.contact-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.contact-card p{

    color:#6b7280;

    margin-bottom:20px;

}

.contact-card a{

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

}

@media(max-width:768px){

.contact-cards{

padding:70px 0;

}

.contact-card{

padding:30px 25px;

}

.contact-card-icon{

width:70px;

height:70px;

font-size:28px;

}

}
/*==================================================
LOCATION
==================================================*/

.location-section{

    padding:110px 0;

    background:#f8fafc;

}

.map-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    height:100%;

}

.section-title{

    padding:35px 35px 20px;

}

.section-title h3{

    font-size:30px;

    font-weight:700;

    color:#111827;

    margin-bottom:10px;

}

.section-title p{

    color:#6b7280;

    margin:0;

}

.map-wrapper iframe{

    display:block;

    border:none;

}

.hours-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    height:100%;

}

.hours-card h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:30px;

    color:#111827;

}

.hours-card ul{

    list-style:none;

    margin:0;

    padding:0;

}

.hours-card li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #edf2f7;

}

.hours-card li:last-child{

    border-bottom:none;

}

.hours-card span{

    color:#4b5563;

    font-weight:500;

}

.hours-card strong{

    color:#111827;

    font-size:15px;

}

.hours-card .btn{

    padding:15px;

    border-radius:12px;

    font-weight:600;

}

@media(max-width:992px){

    .location-section{

        padding:80px 0;

    }

    .hours-card{

        margin-top:10px;

    }

}

@media(max-width:576px){

    .section-title,

    .hours-card{

        padding:25px;

    }

    .hours-card li{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;

    }

}
/*=========================================
FAQ
=========================================*/

.contact-faq{

    padding:110px 0;

    background:#ffffff;

}

.contact-faq .accordion-item{

    border:none;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.contact-faq .accordion-button{

    padding:24px;

    font-weight:600;

    box-shadow:none;

}

.contact-faq .accordion-button:not(.collapsed){

    background:#2563eb;

    color:#fff;

}

.contact-faq .accordion-body{

    padding:24px;

    color:#6b7280;

    line-height:1.8;

}

/*=========================================
CTA
=========================================*/

.contact-cta{

    padding:100px 0;

    background:#f8fafc;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    color:#fff;

    border-radius:30px;

    text-align:center;

    padding:70px 50px;

    overflow:hidden;

    position:relative;

}

.cta-box h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    padding:15px 32px;

    border-radius:14px;

    font-weight:700;

}

@media(max-width:768px){

    .contact-faq,

    .contact-cta{

        padding:80px 0;

    }

    .cta-box{

        padding:50px 25px;

    }

    .cta-box h2{

        font-size:34px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons .btn{

        width:100%;

    }

}