/* ===============================
   CONTACT HERO BANNER
================================ */
.contact-hero {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.contact-hero .contact-hero__bg {
    position: absolute;
    inset: 0;
}

.contact-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero .contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.contact-hero .contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-hero .contact-hero__title {
    font-family: inherit;
    font-size: 48px;
    color: #aecd40;
    margin-bottom: 25px;
}

.contact-hero .contact-hero__subtitle,
.contact-hero .contact-hero__subtitle a {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-hero .contact-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-hero .contact-hero__button {
    background: #aecd40;
    color: #012b3e;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-hero .contact-hero__button:hover {
    background: #ffffff;
    color: #012b3e;
}

@media (max-width: 767px) {
    .contact-hero .contact-hero {
        height: auto;
    }

    .contact-hero .contact-hero__content {
        padding: 60px 20px;
    }
}

/* ===============================
   CONTACT INFO SECTION (VERTICAL)
================================ */
.contact-info-section {
    background: #ffffff;
    padding: 40px 20px;
}

.contact-info-section .contact-info-grid {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-info-section .contact-info-item {
    padding: 20px 25px;
    position: relative;
}

.contact-info-section .contact-info-icon {
    margin-bottom: 20px;
}

.contact-info-section .contact-info-icon img {
    width: 45px;
    height: auto;
}

.contact-info-section .contact-info-title {
    color: #012b3e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-info-section .contact-info-text {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-section .contact-info-text h3 {
    font-size: 15px;
}

.contact-info-section .contact-info-text a,
.contact-info-section .contact-info-text strong {
    color: #aecd40;
    font-weight: 600;
}

.contact-info-section .contact-info-text p:has(a) {
    margin-bottom: 10px !important;
}

.contact-info-section .follow-header {
    margin-top: 15px;
}

.contact-info-section .contact-social-icons {
    display: flex;
    gap: 10px;
}

.contact-info-section .contact-social-icons .social-icon {
    width: 36px;
    height: 36px;
    background-color: #aecd40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-section .contact-social-icons .icon-svg {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.contact-info-section .contact-social-icons .social-icon:hover .icon-svg {
    filter: invert(13%) sepia(31%) saturate(1264%) hue-rotate(166deg) brightness(92%) contrast(95%);
}

.contact-info-section .follow-section {
    padding: 20px 25px;
}

@media (max-width: 991px) {
    .contact-info-section {
        padding: 0px 15px;
    }

    .contact-info-section .contact-info-item {
        padding: 10px 15px;
    }
}

/* =====================================
   SEND US A MESSAGE – FINAL FORM CSS
===================================== */
#contactForm-934 {
    background: #ffffff;
    max-width: 480px;
    margin: 0 auto;
    padding: 35px 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

#contactForm-934 .heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #012b3e;
    margin-bottom: 30px;
}

#contactForm-934 .row {
    margin-left: 0;
    margin-right: 0;
}

#contactForm-934 .form-group {
    margin-bottom: 18px;
}

#contactForm-934 .form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 10px 5px;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
    color: #333333;
}

#contactForm-934 .form-control::placeholder {
    color: #b5b5b5;
    font-size: 14px;
}

.static-text p {
    color: #b5b5b5;
    font-size: 14px;
}

#contactForm-934 .form-control:focus {
    outline: none;
    border-bottom-color: #aecd40;
}

#contactForm-934 textarea {
    min-height: 90px;
    resize: none;
}

#contactForm-934 button[type="submit"] {
    background: #aecd40;
    color: #ffffff;
    border: none;
    padding: 12px 42px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: block;
    margin: 0px auto 0px;
    transition: background 0.3s ease;
    float: right;
}

#contactForm-934 button[type="submit"]:hover {
    background: #2B84B5;
}

#contactForm-934 button i {
    margin-right: 8px;
}

@media (max-width: 767px) {
    #contactForm-934 {
        padding: 30px 20px;
    }

    #contactForm-934 .heading {
        font-size: 20px;
    }
}

/* ===============================
  Map SECTION
================================ */
.frame:has(.contact-map-section) {
    padding-bottom: 0!important;
    padding-top: 0!important;
}

.contact-map-section {
    width: 100%;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 991px) {
    .frame:has(.contact-map-section) {
        padding-bottom: 0!important;
        padding-top: 15px!important;
    }
}