/* Custom Styles */
:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --light-blue: #dbeafe;
    --cyan: #22d3ee;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #ecfeff 100%);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form-container {
    padding-right: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-primary:disabled {
    background-color: var(--gray-300);
    border-color: var(--gray-300);
    transform: scale(1);
    box-shadow: none;
    cursor: not-allowed;
}

/* Contact Information */
.contact-info-container {
    padding-left: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 0.50rem;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.contact-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-content {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-link:hover {
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.social-link.linkedin:hover {
    background-color: #0a66c2;
}

.social-link.instagram:hover {
    background-color: #e4405f;
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

/* Office Hours */
.office-hours {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    border-radius: 1rem;
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: var(--gray-700);
}

.hour-item .day {
    font-weight: 500;
}

/* Map Section */
.map-section {
    background-color: var(--gray-200);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-btn:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.3);
}

/* Animations */
.contact-form-container,
.contact-info-container {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 1s ease;
}

.contact-info-container {
    transform: translateX(20px);
}

.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-container {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-info-container {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-content {
        font-size: 0.9rem;
    }
}