/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    color: var(--white);
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
}
.hero-section h1{
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 0.4s ease-out forwards;
    opacity: 0;
}


/* Contact Section Styles */
.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .contact-section{
        grid-template-columns: 1fr;
    }
}
.contact-info, .appointment-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

.contact-info h2, .appointment-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.info-block {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-block i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

@media (max-width: 600px) {
    .map-container {
        margin: 10px;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-slide-in {
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

.footer{
    background-color: var(--primary-dark);
}