/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/contact/contactbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.contact-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .contact-hero {
        padding: 120px 0;
        min-height: 400px;
    }

    .contact-hero-title {
        font-size: 56px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .contact-hero {
        padding: 100px 0;
        min-height: 350px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero {
        padding: 80px 0;
        min-height: 300px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 14px;
    }
}

/* Connect With Our Team Section */
.connect-team-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.connect-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #F5F3F1;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.connect-team-left {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.contact-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connect-team-right {
    padding: 40px 50px 40px 40px;
}

.connect-team-title {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.connect-team-description {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-input,
.form-textarea {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #FF6B35;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-request {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: #FF6B35;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-request:hover {
    background: #ff7a33;
}

/* Responsive for Connect Team Section */
@media screen and (max-width: 968px) {
    .connect-team-section {
        padding: 60px 0;
    }

    .connect-team-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .connect-team-left {
        order: 2;
        padding: 40px;
    }

    .connect-team-right {
        order: 1;
        padding: 40px;
    }

    .connect-team-title {
        font-size: 32px;
    }

    .connect-team-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 640px) {
    .connect-team-section {
        padding: 40px 0;
    }

    .connect-team-left {
        padding: 30px;
    }

    .connect-team-right {
        padding: 30px;
    }

    .connect-team-title {
        font-size: 28px;
    }

    .connect-team-description {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
}

@media screen and (max-width: 480px) {
    .connect-team-left {
        padding: 20px;
    }

    .connect-team-right {
        padding: 20px;
    }

    .connect-team-title {
        font-size: 24px;
    }
}

/* Partnership & Affiliate Section */
.partnership-section {
    padding: 20px 0 60px 0;
    background: #FFFFFF;
}

.partnership-section .container {
    max-width: 1400px;
    padding: 0 40px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.partnership-box {
    padding: 60px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
}

.partner-box {
    background: #E4F0EC;
}

.email-box {
    background: #E4E7F0;
}

.partnership-title {
    font-family: 'Cairo', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.partnership-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

.contact-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.btn-partnership-orange {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background: #FF6B35;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-partnership-orange:hover {
    background: #ff7a33;
}

/* Responsive for Partnership Section */
@media screen and (max-width: 968px) {
    .partnership-section {
        padding: 50px 0;
    }

    .partnership-section .container {
        padding: 0 40px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partnership-box {
        padding: 32px;
    }

    .partnership-title {
        font-size: 22px;
    }

    .partnership-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    .partnership-section {
        padding: 40px 0;
    }

    .partnership-section .container {
        padding: 0 20px;
    }

    .partnership-box {
        padding: 28px;
    }

    .partnership-title {
        font-size: 20px;
    }

    .btn-partnership {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .partnership-box {
        padding: 24px;
    }

    .partnership-title {
        font-size: 18px;
    }
}
