/* Contact Hero Section */
.contact-hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.contact-hero p {
    font-size: var(--text-xl);
    color: var(--text-light);
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-color);
}

.contact-form-wrapper h2 {
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-base);
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gold-color);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Contact Info */
.contact-info-wrapper {
    background: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-color);
}

.contact-info h2 {
    font-size: var(--text-2xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.info-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    color: var(--text-light);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.info-content h3 {
    font-size: var(--text-lg);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-content p,
.info-content address {
    font-size: var(--text-base);
    color: var(--text-color);
    line-height: 1.6;
}

.info-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Modern Footer */
.modern-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    max-width: 300px;
}

/* .footer-logo {
    height: 40px;
    margin-bottom: var(--spacing-md);
} */

.footer-tagline {
    font-size: var(--text-lg);
    opacity: 0.9;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-links-col ul,
.footer-contact-col ul {
    list-style: none;
}

.footer-links-col ul li,
.footer-contact-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links-col ul li a,
.footer-contact-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-links-col ul li a:hover,
.footer-contact-col ul li a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-legal-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: auto;
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: var(--text-4xl);
    }
    
    .contact-hero p {
        font-size: var(--text-lg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .contact-hero p {
        font-size: var(--text-base);
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: var(--spacing-xl);
    }
    
    .info-item {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
}

/* Contact Form Styles */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-color);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gold-color);
    border-radius: 4px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:invalid:focus,
.form-group select:invalid:focus,
.form-group textarea:invalid:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

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

.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Notification Styles */
.notification {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form button {
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gold-color) !important;
}

body, p, li, span, a, label, input, select, textarea, .section-title p, .contact-info-wrapper p, .contact-info-wrapper a, .contact-form label, .contact-form input, .contact-form textarea, .contact-form select {
    color: var(--text-light) !important;
} 