/*==========================================
PAGE BANNER
==========================================*/

.page-banner{
    position:relative;
    padding:180px 0 120px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(27,36,51,.75);
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.banner-content h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.banner-content p{
    max-width:760px;
    margin:auto;
    line-height:1.9;
    color:rgba(255,255,255,.90);
}

.breadcrumb{
    margin-top:25px;
}

.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:var(--secondary);
}

/*==========================================
SECTION TITLE
==========================================*/

.section-title{
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    color:var(--secondary);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==========================================
CONTACT INTRODUCTION
==========================================*/

.contact-intro img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:.4s;
}

.contact-intro img:hover{
    transform:scale(1.03);
}

.contact-intro p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

/*==========================================
CONTACT INFORMATION
==========================================*/

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.contact-card .icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:32px;
    transition:.35s;
}

.contact-card:hover .icon{
    background:var(--secondary);
    color:var(--primary);
}

.contact-card h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.contact-card a{
    color:var(--secondary);
    font-weight:700;
    text-decoration:none;
}

.contact-card a:hover{
    color:var(--primary);
}

/*==========================================
CONTACT FORM
==========================================*/

.contact-form-section{
    position:relative;
}

.form-wrapper{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.form-control,
.form-select{
    height:58px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    color:#555;
    transition:all .35s ease;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--secondary);
    box-shadow:0 0 0 .2rem rgba(212,175,55,.15);
}

textarea.form-control{
    height:auto;
    min-height:180px;
    resize:none;
    padding:18px;
}

.form-wrapper .btn{
    padding:14px 34px;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    transition:all .35s ease;
}

.form-wrapper .btn:hover{
    transform:translateY(-3px);
}

/*==========================================
BUSINESS HOURS
==========================================*/

.business-hours{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.business-hours h3{
    color:var(--primary);
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.business-hours ul{
    list-style:none;
    margin:0;
    padding:0;
}

.business-hours li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid #ececec;
}

.business-hours li:last-child{
    border-bottom:none;
}

.business-hours span{
    color:#555;
    font-weight:600;
}

.business-hours strong{
    color:var(--secondary);
    font-size:15px;
}

/*==========================================
SOCIAL MEDIA
==========================================*/

.social-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.social-box h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:20px;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f5f5;
    color:var(--primary);
    text-decoration:none;
    font-size:18px;
    transition:all .35s ease;
}

.social-links a:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-5px);
}

/*==========================================
GOOGLE MAP
==========================================*/

.map-section{
    position:relative;
    overflow:hidden;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
    filter:grayscale(10%);
    transition:all .4s ease;
}

.map-section:hover iframe{
    filter:grayscale(0%);
}

/*==========================================
COMMON FORM ELEMENTS
==========================================*/

.form-control::placeholder,
textarea::placeholder{
    color:#999;
}

.form-select{
    cursor:pointer;
}

.form-control,
.form-select,
textarea{
    font-family:inherit;
}

.contact-form-section .section-title{
    margin-bottom:35px;
}

.contact-form-section .section-title p{
    margin:0;
}

/*==========================================
WHY CHOOSE US
==========================================*/

.why-contact{
    position:relative;
    overflow:hidden;
}

.why-contact img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:all .4s ease;
}

.why-contact img:hover{
    transform:scale(1.03);
}

.why-contact p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

/*==========================================
FEATURE BOXES
==========================================*/

.feature-box{
    background:#fff;
    padding:30px 25px;
    border-radius:18px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.feature-box i{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    font-size:28px;
    transition:all .35s ease;
}

.feature-box:hover i{
    background:var(--secondary);
    color:var(--primary);
    transform:rotate(-8deg);
}

.feature-box h5{
    color:var(--primary);
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.feature-box p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/*==========================================
FAQ SECTION
==========================================*/

.faq-section{
    position:relative;
}

.faq-section .accordion{
    max-width:900px;
    margin:auto;
}

.faq-section .accordion-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.faq-section .accordion-button{
    background:#fff;
    color:var(--primary);
    font-size:18px;
    font-weight:700;
    padding:22px 28px;
    box-shadow:none;
    transition:all .35s ease;
}

.faq-section .accordion-button:focus{
    box-shadow:none;
}

.faq-section .accordion-button:not(.collapsed){
    background:var(--secondary);
    color:var(--primary);
}

.faq-section .accordion-button::after{
    transition:all .3s ease;
}

.faq-section .accordion-body{
    padding:24px 28px;
    color:#666;
    line-height:1.9;
    background:#fff;
}

/*==========================================
CALL TO ACTION
==========================================*/

.cta-section{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:120px 0;
    background:
        linear-gradient(rgba(27,36,51,.90), rgba(27,36,51,.90)),
        url("../images/banners/cta-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.08),
        transparent
    );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section .sub-title{
    display:inline-block;
    color:var(--secondary);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.cta-section h2{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
}

.cta-section p{
    max-width:760px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.90);
    line-height:1.9;
}

.hero-buttons .btn{
    min-width:200px;
    padding:15px 34px;
    margin:8px;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
}

.hero-buttons .btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.20);
}

/*==========================================
COMMON CARD EFFECTS
==========================================*/

.contact-card,
.feature-box,
.business-hours,
.social-box,
.form-wrapper{
    transition:all .35s ease;
}

.contact-card:hover,
.feature-box:hover,
.business-hours:hover,
.social-box:hover,
.form-wrapper:hover{
    transform:translateY(-8px);
}

img{
    transition:all .4s ease;
}

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

@media (max-width:991.98px){

    .page-banner{
        padding:140px 0 90px;
    }

    .banner-content h1{
        font-size:44px;
    }

    .section-title h2{
        font-size:36px;
    }

    .contact-intro img,
    .why-contact img{
        margin-top:40px;
    }

    .form-wrapper,
    .business-hours,
    .social-box{
        margin-bottom:30px;
    }

    .cta-section h2{
        font-size:38px;
    }

}

@media (max-width:767.98px){

    .page-banner{
        padding:120px 0 80px;
    }

    .banner-content h1{
        font-size:34px;
    }

    .banner-content p{
        font-size:16px;
    }

    .section-title h2{
        font-size:30px;
    }

    .form-wrapper{
        padding:30px;
    }

    .business-hours,
    .social-box{
        padding:30px;
    }

    .business-hours li{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .contact-card{
        padding:35px 25px;
    }

    .feature-box{
        padding:25px 20px;
    }

    .cta-section{
        padding:90px 0;
    }

    .cta-section h2{
        font-size:30px;
    }

    .hero-buttons .btn{
        width:100%;
        margin:10px 0;
    }

    .map-section iframe{
        height:350px;
    }

}

@media (max-width:575.98px){

    .banner-content h1{
        font-size:28px;
    }

    .section-title h2{
        font-size:26px;
    }

    .contact-card,
    .feature-box{
        padding:25px 20px;
    }

    .contact-card .icon,
    .feature-box i{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .business-hours,
    .social-box,
    .form-wrapper{
        padding:25px;
    }

    .faq-section .accordion-button{
        padding:18px 20px;
        font-size:16px;
    }

    .faq-section .accordion-body{
        padding:18px 20px;
    }

    .map-section iframe{
        height:280px;
    }

}

/*==========================================
HOVER EFFECTS
==========================================*/

.contact-card,
.feature-box,
.business-hours,
.social-box,
.form-wrapper{
    transition:all .35s ease;
}

.contact-card:hover,
.feature-box:hover,
.business-hours:hover,
.social-box:hover,
.form-wrapper:hover{
    transform:translateY(-10px);
}

.contact-card .icon,
.feature-box i,
.social-links a{
    transition:all .35s ease;
}

.contact-card:hover .icon,
.feature-box:hover i{
    transform:scale(1.08);
}

.social-links a:hover{
    transform:translateY(-5px) rotate(10deg);
}

img{
    transition:transform .4s ease;
}

img:hover{
    transform:scale(1.02);
}

/*==========================================
UTILITY CLASSES
==========================================*/

.rounded-20{
    border-radius:20px;
}

.shadow-soft{
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.py-120{
    padding-top:120px;
    padding-bottom:120px;
}

.bg-light{
    background:#f8f9fa;
}

.text-gold{
    color:var(--secondary);
}

.text-primary-dark{
    color:var(--primary);
}

/*==========================================
GLOBAL ELEMENTS
==========================================*/

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    display:block;
}

a{
    transition:all .3s ease;
    text-decoration:none;
}

button{
    transition:all .3s ease;
}

::selection{
    background:var(--secondary);
    color:#fff;
}

.form-control::placeholder,
textarea::placeholder{
    color:#999;
}

.form-control,
.form-select,
textarea{
    font-family:inherit;
}

/*==========================================
END OF FILE
==========================================*/
