/* Global Contact Styles */
.contact-container {
    max-width: 1200px;
    margin: 20px auto 50px;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Need Help Section */
.need-help-section {
    margin-bottom: 80px;
}

.contact-header {
    margin-top: 11rem;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.1;
}

.contact-header p {
    font-size: 1.4rem;
    color: #4a4a4a;
    max-width: 800px;
    line-height: 1.5;
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.support-card {
    flex: 1;
    min-width: 300px;
   
}

.support-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-wrapper {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.whatsapp-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: #25D366;
}

.email-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: #F79E1B;
}

.support-card h2 {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.support-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.support-card p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-details {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.contact-details strong {
    font-weight: 700;
    color: #000;
}

.whatsapp-button {
    display: inline-block;
    background-color: #00C853;
    color: white;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    background-color: #009624;
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
}

/* Let's Talk Section */
.lets-talk-section {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 -4px 100px -1px rgba(0, 0, 0, 0.315);
    justify-content: space-between;
    gap: 60px;
}

.lets-talk-bg-text {
    position: absolute;
    top: 15%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 15rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    text-transform: lowercase;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.lets-talk-section label{
    font-size: 1.7rem !important;
}

.lets-talk-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.lets-talk-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
}

.lets-talk-desc {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #ddd;
    max-width: 450px;
}

.lets-talk-form {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #eee;
}

.form-control-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 12px 0;
    color: white;
    font-size: 1.3rem;
    transition: border-color 0.3s;
}

.form-control-custom:focus {
    outline: none;
    border-bottom-color: #fff;
}

.submit-btn {
    background-color: #2E99B0;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 1.7rem;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #257a8c;
}



@media (max-width: 768px) {
    .support-options {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }

    .lets-talk-section {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .lets-talk-title {
        font-size: 3rem;
    }
    
    .lets-talk-bg-text {
        font-size: 5rem;
    }

    .footer-container {
        flex-direction: row;
        padding: 0 20px;
        gap: 40px 20px;
    }
    .footer-column {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
    }
    .brand-col {
        flex: 0 0 100%;
        padding-right: 0;
    }
}
