/* Contact Hero Section */
.contact-hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Map Section */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-overlay-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    z-index: 10;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* .contact-info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
} */

.contact-info-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #59c8a52a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
    background-color: #59c8a52a;
    transform: rotateY(180deg);
}

.contact-info-card:hover .icon-wrapper i {
    color: #059669;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #059669;
    transform: rotateY(180deg);
}

.contact-info-card .icon-wrapper i {
    font-size: 1.75rem;
    color: #059669;
    transition: all 0.3s ease;
}

/* Contact Form Styles */
.form-input {
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background-color: white;
}

.form-input::placeholder {
    color: #94a3b8;
}

.submit-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    height: 100%;
}

/* Business Hours Styles */
.business-hours li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.business-hours li:last-child {
    border-bottom: none;
}

/* Map Container */
.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 300px;
    }

    .map-section {
        height: 400px !important;
    }

    .map-overlay-card {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem;
        max-width: none;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-card .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .contact-info-card .icon-wrapper i {
        font-size: 1.5rem;
    }
}


/* Form Validation Styles */
/* .form-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
} */

/* .form-error-message {
    color: #ef4444;
    font-size: 0.7rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}

.form-error-message::before {
    content: '⚠️';
    margin-right: 0.3rem;
    font-size: .6rem;
} */

/* Success Message Styles */
.success-message {
    background-color: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State Styles */
.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: 50%;
    margin: -0.75rem 0 0 -0.75rem;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 0.6s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Section Title Styles */
/* .section-subtitle {
    display: inline-block;
    color: #e64700;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e64700;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}  */