/*======================================
CONTACT INFO SECTION
======================================*/

.contact-info-section {
    padding: 100px 0;
    margin-top: 50px;
    background: var(--light-surface-color);
}

.section-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(23, 92, 221, 0.08);
    border: 1px solid rgba(23, 92, 221, 0.15);

    border-radius: 50px;

    color: var(--accent-color);

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);

    color: var(--heading-color);

    margin-bottom: 20px;

    font-weight: 700;
}

.section-header p {
    color: var(--default-color);

    line-height: 1.8;
}

/* Grid */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */

.contact-info-card {
    background: var(--surface-color);

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    border: 1px solid var(--border-color);

    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);
}

/* Icon */

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(23, 92, 221, 0.08);

    color: var(--accent-color);

    font-size: 32px;
}

.contact-info-card h3 {
    color: var(--heading-color);

    margin-bottom: 15px;

    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--default-color);

    line-height: 1.8;

    margin-bottom: 20px;
}

.contact-info-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--accent-color);

    font-weight: 600;

    text-decoration: none;

    transition: .3s;
}

.contact-info-card a:hover {
    color: var(--accent-hover);
}

/* Responsive */

@media (max-width: 991px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 576px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 70px 0;
    }

}

/*======================================
CONTACT FORM SECTION
======================================*/

.contact-form-section {
    padding: 100px 0;
    background: var(--background-color);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-content p {
    color: var(--default-color);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    color: var(--success-color);
    font-size: 18px;
}

.highlight-item span {
    color: var(--heading-color);
    font-weight: 500;
}

/* Form Card */

.contact-form-card {
    background: var(--surface-color);

    padding: 40px;

    border-radius: 24px;

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: var(--heading-color);

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border-color);

    border-radius: 12px;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 4px rgba(23,92,221,0.08);
}

.submit-btn {

    width: 100%;

    border: none;

    padding: 16px;

    border-radius: 12px;

    background: var(--accent-color);

    color: #fff;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.submit-btn:hover {

    background: var(--accent-hover);

    transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 991px) {

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 30px;
    }

}

@media (max-width: 576px) {

    .contact-form-section {
        padding: 70px 0;
    }

    .contact-form-card {
        padding: 25px;
        border-radius: 18px;
    }

}

/*======================================
SERVICE AREA SECTION
======================================*/

.service-area-section {
    padding: 15px 0;
    background: var(--light-surface-color);
}

.service-area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Area Cards */

.area-card {
    display: flex;
    gap: 20px;

    padding: 24px;

    background: var(--surface-color);

    border-radius: 20px;

    border: 1px solid var(--border-color);

    margin-bottom: 20px;

    box-shadow: var(--shadow-sm);

    transition: all .3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-card i {
    font-size: 28px;
    color: var(--accent-color);
}

.area-card h3 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.area-card p {
    color: var(--default-color);
    margin: 0;
}

/* Service Tags */

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.service-tags span {
    padding: 10px 18px;

    background: rgba(23,92,221,0.08);

    color: var(--accent-color);

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
}

/* Map */

.map-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .service-area-wrapper {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        height: 450px;
    }

}

@media (max-width: 576px) {
    .service-area-section {
        padding: 70px 0;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

.hero-features,
.feature-item{
    opacity: 1 !important;
    visibility: visible !important;
}















/* ==========================
   Custom Dropdown
========================== */

.custom-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.select-btn {
    width: 100%;
    height: 55px;
    padding: 0 18px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    transition: .3s;
}

.select-btn:hover {
    border-color: #17a34a;
}

.custom-select.active .select-btn {
    border-color: #17a34a;
}

.select-btn i {
    transition: .3s;
}

.custom-select.active .select-btn i {
    transform: rotate(180deg);
}

/* ==========================
   Main Dropdown
========================== */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    overflow: visible;
    display: none;
    z-index: 9999;
}

.custom-select.active .dropdown-menu {
    display: block;
}

/* ==========================
   Main Category
========================== */

.dropdown-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    font-size: 17px;
    cursor: pointer;
    transition: .25s;
    background: #fff;
}

.dropdown-item:hover {
    background: #16a34a;
    color: #fff;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item i {
    font-size: 18px;
}

/* ==========================
   Submenu
========================== */

.submenu{

    position:absolute;

    top:0;

    left:calc(100% + 10px);

    width:420px;

    min-width:420px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    display:none;

    max-height:70vh;

    overflow-y:auto;

    overflow-x:hidden;

    z-index:99999;

}

/* Opens to left when needed */
.submenu.open-left{

    left:auto;

    right:calc(100% + 10px);

}

.submenu{
    display:none;
}

.has-submenu.active > .submenu{
    display:block;
}
/* ==========================
   Submenu Items
========================== */
.submenu-item{

    padding:14px 20px;

    font-size:15px;

    line-height:1.5;

    color:#222;

    cursor:pointer;

    transition:.25s;

    white-space:normal;

    word-break:break-word;

}

.submenu-item:hover {

    background: #16a34a;

    color: #fff;

}

/* ==========================
   Scrollbar
========================== */

.submenu{

    scrollbar-width:thin;

    scrollbar-color:#16a34a #f3f3f3;

}

.submenu::-webkit-scrollbar{

    width:8px;

}

.submenu::-webkit-scrollbar-track{

    background:#f3f3f3;

}

.submenu::-webkit-scrollbar-thumb{

    background:#16a34a;

    border-radius:20px;

}

.submenu::-webkit-scrollbar-thumb:hover{

    background:#0d8f3f;

}

/* ==========================
   Mobile
========================== */

@media(max-width:991px){

    .submenu{

        position: static;

        width:100%;

        min-width:100%;

        max-height:250px;

        margin-top:5px;

        border-radius:0;

        box-shadow:none;

        display:none;

    }

    .has-submenu:hover>.submenu{

        display:block;

    }

}