/* Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-top: 80px;
    box-sizing: border-box;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 22, 28, 0.85) 0%, rgba(249, 168, 37, 0.75) 100%);
    z-index: 1;
}

.contact-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-text-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.contact-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.contact-hero .hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Info Section */
.contact-quick-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-info-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.quick-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 22, 28, 0.15);
    border-color: var(--primary-color);
}

.quick-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.quick-info-card:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-icon svg {
    width: 28px;
    height: 28px;
}

.quick-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.quick-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-quick-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 350px;
    }
    
    .contact-hero .hero-title {
        font-size: 42px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info-card {
        padding: 24px 20px;
    }
    
    .quick-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-title {
        font-size: 32px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .contact-quick-section {
        padding: 30px 0;
        margin-top: -20px;
    }
}

/* Dark Mode */
[data-theme="dark"] .contact-quick-section {
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
}

[data-theme="dark"] .quick-info-card {
    background: #1e1e1e;
    border-color: #2d2d2d;
}

[data-theme="dark"] .quick-info-card:hover {
    border-color: var(--primary-color);
}

[data-theme="dark"] .quick-content h3 {
    color: #fff;
}
