/* contact.css - Same as before */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Red Hat Display", sans-serif;
 
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F1F25;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -100px;
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.banner-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding-bottom: 60px;
}

/* Form Section */
.contact-form-section {
    margin-bottom: 40px;
}

.form-wrapper {
    background: whitesmoke;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #E5E9F0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0B1E3A;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: #1F1F25;
}

.form-group .required {
    color: #FF4D4F;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #E5E9F0;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: black;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0066FF;
    color: white;
    border: none;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.btn-primary:hover {
    background: #0052CC;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    display: none;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Messages */
.form-messages {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    text-align: center;
}

.form-messages.success {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: #A5D6A7;
}

.form-messages.error {
    background: #FFEBEE;
    color: #C62828;
    border-color: #FFCDD2;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-wrapper {
    border: 1px solid #E5E9F0;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Info Cards Section */
.info-cards-section {
    margin-bottom: 40px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #E5E9F0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #0066FF;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #F0F7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0066FF;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    background: #0066FF;
    color: white;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0B1E3A;
    margin-bottom: 15px;
}

.card-content p {
    color: #5A687B;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.card-content .hours {
    font-size: 0.9rem;
    color: #8895A7;
}

.card-content a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
}

.card-content a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
        min-height: 400px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 0.6rem;
    }

    .main-content {
        margin-top: -50px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .btn-primary {
        width: 100%;
    }
}


.contact-card {
    
    color: #fff;
    
}



/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icons */
.contact-item i {
    font-size: 20px;
    color: #38bdf8;
    min-width: 25px;
}

/* Divider */
.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Text */
.contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}





