.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.contact-tiles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-tile {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-tile:hover {
    transform: translateY(-5px);
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info i {
    font-size: 24px;
    color: #007bff;
    margin-top: 5px;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-details p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .contact-tiles {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info i {
        margin-bottom: 15px;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 50px 0;
}

.contact-details {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-method a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-color);
    margin-top: 5px;
    font-size: 0.9rem;
}

.contact-form {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

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

.contact-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-method {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 50px 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-method i {
        margin-right: 0;
        margin-bottom: 10px;
    }
} 