.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 6rem;
    padding: 4rem 1.5rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.find-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.find-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.find-location-btn:hover .arrow-icon {
    transform: translateX(5px);
}


.contact-header h1 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #636e72;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 2rem 1rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }
}

/* Animation for form submission */
@keyframes submitSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.submit-success {
    animation: submitSuccess 0.3s ease;
}

/* Add these styles to your existing contact.css */

.success-animation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark-circle {
    width: 24px;
    height: 24px;
    position: relative;
    animation: circle-fill 0.4s ease-in;
}

.checkmark {
    width: 12px;
    height: 22px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(45deg);
    position: absolute;
    top: -2px;
    left: 6px;
    animation: checkmark-draw 0.4s ease-in forwards;
    opacity: 0;
}

@keyframes circle-fill {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmark-draw {
    0% { opacity: 0; height: 0; }
    100% { opacity: 1; height: 22px; }
}

.submit-btn.success {
    background: #2ecc71;
    transform: scale(1.05);
}

/* Optional confetti animation */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #f0f;
    animation: confetti-fall 1s ease-in-out forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(720deg); }
}
