:root{

    --primary:#7b2ff7;
    --primary-light:#f6efff;
    --dark:#111827;
}

/* ==========================
   HERO SECTION
========================== */

.contact-hero{

    padding:30px 0 80px;
    background:
    linear-gradient(
    180deg,
    #ffffff,
    #faf7ff
    );
}

.contact-title{

    font-size:45px;
    font-weight:800;
    color:#101235;
    margin-bottom:20px;
}

.contact-title span{

    color:var(--primary);
}

.contact-desc{

    font-size:20px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.contact-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-contact-primary{

    background:var(--primary);
    color:#fff;

    padding:12px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-contact-primary:hover{

    background:#6527d8;
    color:#fff;
}

.btn-contact-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:10px 28px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-contact-outline:hover{

    background:var(--primary);
    color:#fff;
}

.contact-buttons i{

    margin-right:8px;
}

.hero-image-box{

    text-align:right;
}

.hero-image-box img{

    max-width:100%;
}

/* ==========================
   CONTACT CARDS
========================== */

.contact-info-section{

    padding-bottom:0;
    background:#fbfbfb00;
    position: relative;
    top: -50px;
}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    border:1px solid #f1f1f1;

    transition:.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.03);
}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(123,47,247,.12);
}

.contact-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #7b2ff7,
    #9c5cff
    );

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;
}

.contact-card h4{

    font-size:24px;
    font-weight:500;
    color:#101235;

    margin-bottom:12px;
}

.contact-card p{

    color:#666;
    font-size:16px;
    margin-bottom:0;
    line-height:1.7;
}

/* ==========================
   CONTACT FORM SECTION
========================== */

.contact-form-section{

    background:#fff;
}

.contact-form-wrapper{

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #faf7ff
    );

    border:1px solid #eee;

    border-radius:25px;

    padding:50px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);
}

.form-title{

    font-size:45px;

    font-weight:800;

    color:#111827;

    margin-bottom:10px;
}

.form-title span{

    color:#7b2ff7;
}

.form-subtitle{

    color:#666;

    margin-bottom:30px;

    font-size:17px;
}

/* Inputs */

.custom-input{

    height:45px;

    border-radius:12px;

    border:1px solid #e6e6e6;

    padding-left:18px;

    font-size:15px;
}

.custom-input:focus{

    box-shadow:none;

    border-color:#7b2ff7;
}

.custom-textarea{

    border-radius:12px;

    border:1px solid #e6e6e6;

    padding:15px;
}

.custom-textarea:focus{

    box-shadow:none;

    border-color:#7b2ff7;
}

/* Button */

.send-btn{

    width:100%;

    height:45px;

    border:none;

    border-radius:12px;

    background:
    linear-gradient(
    90deg,
    #7b2ff7,
    #9d4dff
    );

    color:#fff;

    font-size:18px;

    font-weight:600;

    transition:.3s;
}

.send-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(123,47,247,.3);
}

/* Office Image */

.office-image-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:100%;
}

.office-image{

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;
}

.office-image-card:hover .office-image{

    transform:scale(1.05);
}

/* Overlay */

.office-overlay{

    position:absolute;

    bottom:20px;

    left:20px;
}

.office-badge{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:15px 20px;

    border-radius:15px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);
}

.office-badge i{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#f2e8ff;

    color:#7b2ff7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;
}

.office-badge h5{

    margin:0;

    font-size:18px;

    font-weight:700;
}

.office-badge span{

    color:#777;

    font-size:14px;
}

/* ==========================
   HOW CAN WE HELP YOU
========================== */

.help-section{

    background:#fff;
}

.help-title{

    font-size:45px;

    font-weight:800;

    color:#101235;

    margin-bottom:12px;
}

.help-title span{

    color:#7b2ff7;
}

.help-subtitle{

    font-size:18px;

    color:#666;
}

/* Cards */

.help-card{

    background:#fff;

    border:1px solid #ededed;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.03);
}

.help-card:hover{

    transform:translateY(-8px);

    border-color:#d8c0ff;

    box-shadow:
    0 20px 40px rgba(123,47,247,.12);
}

/* Icon */

.help-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    margin:0 auto 25px;

    background:
    linear-gradient(
    135deg,
    #f4ecff,
    #efe2ff
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#7b2ff7;

    font-size:34px;
}

/* Title */

.help-card h4{

    font-size:24px;

    font-weight:700;

    color:#101235;

    margin-bottom:15px;
}

/* Text */

.help-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    font-size:15px;
}

/* ==========================
   FAQ SECTION
========================== */

.contact-faq-section{

    background:#faf7ff;
}

.faq-main-title{

    font-size:45px;

    font-weight:800;

    color:#101235;
}

.faq-main-title span{

    color:#7b2ff7;
}

.faq-main-desc{

    font-size:18px;

    color:#666;

    margin-top:15px;
}

/* Accordion */

.custom-faq .accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.custom-faq .accordion-button{

    background:#fff;

    padding:24px 28px;

    font-size:18px;

    font-weight:600;

    color:#101235;

    box-shadow:none !important;
}

/* Active */

.custom-faq .accordion-button:not(.collapsed){

    background:#fff;

    color:#7b2ff7;
}

/* Remove Bootstrap Icon */

.custom-faq .accordion-button::after{

    display:none;
}

/* Custom Plus */

.custom-faq .accordion-button::before{

    content:"+";

    margin-right:10px;

    font-size:28px;

    font-weight:700;

    color:#7b2ff7;
}

/* Minus */

.custom-faq .accordion-button:not(.collapsed)::before{

    content:"−";
}

/* Body */

.custom-faq .accordion-body{

    padding:0 28px 28px;

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* ==========================
   GOOGLE MAP SECTION
========================== */

.map-section{

    background:#ffffff;
}

.map-title{

    font-size:45px;

    font-weight:800;

    color:#101235;
}

.map-title span{

    color:#7b2ff7;
}

.map-desc{

    font-size:18px;

    color:#666;

    margin-top:15px;
}

/* Map */

.map-wrapper{

    overflow:hidden;

    border-radius:24px;

    border:1px solid #ececec;

    box-shadow:
    0 20px 40px rgba(0,0,0,.05);
}

.map-wrapper iframe{

    width:100%;

    height:550px;

    border:none;

    display:block;
}

/* ==========================
   CTA BANNER
========================== */

.contact-cta-section{

    background:#fff;
}

.cta-wrapper{

    background:
    linear-gradient(
    135deg,
    #7b2ff7 0%,
    #8d3cff 50%,
    #a855f7 100%
    );

    /* border-radius:32px; */

    padding:70px 60px;

    position:relative;

    overflow:hidden;
}

/* Decorative Circles */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(255,255,255,.08);

    border-radius:50%;

    top:-180px;
    right:-120px;
}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,255,255,.06);

    border-radius:50%;

    bottom:-120px;
    left:-80px;
}

/* Badge */

.cta-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.15);

    color:#fff;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}

/* Title */

.cta-title{

    color:#fff;

    font-size:40px;

    font-weight:800;

    margin-bottom:20px;
}

/* Description */

.cta-description{

    color:
    rgba(255,255,255,.9);

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin-bottom:0;
}

/* Buttons */

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.cta-btn-white{

    background:#fff;

    color:#7b2ff7;

    text-align:center;

    text-decoration:none;

    padding:10px 25px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-white:hover{

    background:#f5f5f5;

    color:#7b2ff7;
}

.cta-btn-outline{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    text-align:center;

    text-decoration:none;

    padding:10px 25px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.cta-btn-outline:hover{

    background:#fff;

    color:#7b2ff7;
}

.contact-hero .contact-banner-img{
    max-width: 700px;
    width: 100%;
}

@media(max-width:576px){
    .contact-hero{
        text-align: center;
    }
    .contact-buttons{
        justify-content: center;
    }
    .contact-title{
        font-size: 40px;
    }
    .contact-card{
        padding: 20px 25px;
    }
    .contact-card h4{
        font-size: 20px;
    }
    .contact-form-section{
        padding-top: 0 !important;
    }
    .form-title{
        font-size: 35px;
    }
    .contact-form-wrapper{
        padding: 20px;
    }
    .office-image{
        height: 315px;
    }
    .help-title{
        font-size: 35px;
    }
    .help-section{
        padding-top: 0 !important;
    }
    .help-card{
        padding: 15px 10px;
    }
    .help-card h4{
        font-size: 22px;
    }
    .help-icon{
        height: 70px;
        width: 70px;
    }
    .faq-main-title{
        font-size: 30px;
    }
    .map-title{
        font-size: 35px;
    }
    .cta-title{
        font-size: 35px;
    }
    .cta-wrapper{
        padding: 40px 15px;
    }
    .map-wrapper iframe{
        height: 350px;
    }
}