/* Customer Support Section -----------------------------------------*/

.support-section {
    background-color: white; /* Slightly darker blueish-whitesmoke */
    padding: 60px 20px;
    text-align: center;
}

/* Container */
.support-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Titles */
.support-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1d6fbf;
}

/* Subtitle (Contact Info) */
.support-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0d5aa7;
}

.support-subtitle a {
    color: #0d5aa7;
    text-decoration: none;
    font-weight: bold;
}

.support-subtitle a:hover {
    text-decoration: underline;
}

.support-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}


.support-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 0;
}

.support-list li {
    background: #1d6fbf;
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
    padding: 14px 22px;
    margin: 10px 0;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.3s ease;
}


.support-list li:hover {
    background: #0d5aa7;
    transform: scale(1.05);
}


.support-list li::before {
    content: none !important;
    font-size: 1.4rem;
    color: white;
}

.support-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}


.support-level {
    background: rgba(0, 0, 0, 0.07);
    padding: 22px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}


.support-level:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
}


.support-level h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #1d6fbf;
}


@media (max-width: 768px) {
    .support-levels {
        grid-template-columns: 1fr;
    }
}

/* Contact Section -----------------------------------------------*/
.contact-section {
    background-color: whitesmoke;
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

/* Left Side: Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2387d1; /* Primary Blue */
}

.contact-support {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #1f75c3; /* Darker shade */
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f75c3; /* Slight contrast */
}

.contact-recaptcha {
    font-size: 0.9rem;
    margin-top: 15px;
}

.contact-recaptcha a {
    color: #1f75c3;
    text-decoration: none;
}

/* Right Side: Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(35, 135, 209, 0.05); /* Light Transparent Blue */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #1f75c3; /* Slightly darker blue */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

/* Submit Button */
.contact-btn {
    background-color: #2387d1; /* Primary Blue */
    color: white;
    padding: 12px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #1f75c3; /* Slightly darker blue */
}
/* Responsive: Stack Form and Text on Small Screens */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 30px;
    }
}

