.contact-hero-inner {
    background-image: url(https://wortal.co/wp-content/uploads/2026/06/contactus.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    display: flex;
}

.contact-hero-content {
    width: 45%;
    align-self: center;
    display: flex;
    flex-direction: column;
    padding-left: 150px;
}

.contact-hero .section-header {
    text-align: start;
}

@media (max-width: 767px) {
    .contact-hero-inner {
        flex-direction: column;
    }

    .contact-hero-content {
        width: 90%;
        padding-left: 10px;
        margin-top: 70px;
    }
}

/* ==========================================================================
   CONTACT DETAILS CARDS SECTION
   ========================================================================== */
.contact-section {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

.contact-section-inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-card {
    background-color: #F7F7F5;
    border-radius: 16px;
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.contact-card-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.contact-card-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.contact-card-info {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

.contact-card-info a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-info a:hover {
    color: #ff4000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-cards-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 32px 18px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 16px 60px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 28px;
    }

    .contact-card-title {
        font-size: 20px;
    }

    .contact-card-info {
        font-size: 14px;
    }

    .contact-form-section {
        flex-direction: column-reverse;
    }
}

.contact-form-section {
    display: flex;
    gap: 20px;
    margin-top: 50px;

}

.left-img {
    align-content: center;
}

.left-img,
.right-form {
    padding: 15px;
}


.partner-section {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.partner-inner {
    background: #FF8A45;
    border-radius: 28px;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND SHAPES (soft circles like image) */
.partner-inner::before,
.partner-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.partner-inner::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -120px;
}

.partner-inner::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    right: -100px;
}

.partner-inner h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* BUTTONS */
.partner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-buttons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* DARK BUTTON */
.btn-dark {
    background: #1E1E1E;
    color: #fff;
}

.btn-dark:hover {
    background: #1E1E1E;
    color: #fff;
}

/* LIGHT BUTTON */
.btn-light {
    background: #fff;
    color: #FF4D00;
}

.btn-light .arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF4D00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* RESPONSIVE */
@media(max-width:767px) {
    .partner-inner {
        padding: 50px 20px;
    }

    .partner-inner h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .partner-inner p {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .partner-buttons a {
        width: fit-content;
        justify-content: center;
    }
}