@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');


/* ===== Hero Section ===== */
.hero-section {
    background: url("./image/Hero_Section.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.hero-section>div>div {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.hero-section h1 {
    max-width: 700px;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-section p {
    color: #525252;
    max-width: 813px;
    margin: 0 auto;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    text-align: center;

}

/* ===== Main Contact Section ===== */
.main-contact-section {
    padding: 80px 0;
    background: #fff;

}

.main-contact-section>.container {
    background: #F6F6F6;
    border-radius: 19.1px;
    box-shadow: 0px 0px 9px 0px #00000040;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.contact-container>div{
    max-height: 800px;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 25px;
    border-radius: 12px;

}

.form-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 100%;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.contact-form {
    width: 100%;
}

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

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    font-size:12px;
    line-height: 19px;
}

.checkbox-item a {
    color: var(--primary-color);
    /* text-decoration: none; */
}

.checkbox-item a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #1976d2;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #1565c0;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    min-height: 500px;
}
.image-container::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 40px 30px 30px;
}

.overlay-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.team-label {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

/* ===== Contact Info Section ===== */
.contact-info-section {
    margin: 40px 0;

}

.contact-info-text {
    font-size: 16px;
    color: #666;
}

.phone-contact {
    font-size: 16px;
    color: #666;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.phone-hours {
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

/* ===== Team Directory ===== */
.team-directory-section {
    background: #081F37;
    padding: 80px 0;
    color: white;
}

.team-directory-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: #FFFFFF1A;
    text-align: center;
    padding: 30px 20px;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: white;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.contact-card a:hover {
    color: #a8d4ea;
    text-decoration: underline;
}

.privacy-notice {
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
}


/* ===== Alert Styles ===== */
.alert {
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 14px;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

/* ===== Loading Spinner ===== */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff40;
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1217px) {
    .contact-container>div{
        max-height: 100%;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 32px;
        text-align: left;
    }

    .hero-section p {
        font-size: 16px;
        text-align: left;

    }

    .main-contact-section {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-container {
        order: 1;
    }

    .image-container {
        order: 2;
        min-height: 300px;
    }

    .team-directory-section {
        padding: 60px 0;
    }

    .team-directory-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }


}

@media (max-width: 480px) {

    .hero-section h1 {
        font-size: 28px;
    }

    .form-container h2 {
        font-size: 24px;
    }

    .team-directory-section h2 {
        font-size: 24px;
    }

    .footer-info-left h2 {
        font-size: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}