/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 10rem 0 3rem;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Modern Form */
.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modern-form label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.modern-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-header {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-header i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.info-header h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.location-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.schedule-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.info-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Schedule Card Special Styling */
.schedule-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.schedule-card .info-content h4 {
    color: white;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.schedule-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.schedule-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.schedule-item strong {
    font-weight: 600;
    font-size: 1rem;
}

.schedule-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
    animation: fadeInUp 1s ease;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.map-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #666;
    font-size: 1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 8rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-wrapper,
    .info-header {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-header i {
        font-size: 2.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 7rem 0 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 1.2rem;
    }
    
    .form-header i {
        font-size: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .info-header {
        padding: 1.5rem;
    }
    
    .info-header i {
        font-size: 2rem;
    }
    
    .info-header h3 {
        font-size: 1.4rem;
    }
    
    .info-card {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .schedule-item {
        padding: 0.6rem;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 400px) {
    .contact-grid {
        gap: 1.5rem;
    }
    
    .modern-form input,
    .modern-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 0.9rem;
        font-size: 1rem;
    }
}