* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E8014F;
    --dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --border-light: #e0e0e0;
}

/* Hero Slider Banner */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideUp 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    animation: slideUp 1s ease 0.2s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Contact Section */
.contact-wrapper {
    width: 100%;
    background: var(--bg-light);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #b30140 100%);
    padding: 3rem 0;
    color: white;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(232, 1, 79, 0.15);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-card .link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* Form Section */
.form-wrapper {
    background: linear-gradient(135deg, #f0e0e5 0%, #b30140 100%);
    padding: 3rem;
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 60px rgba(232, 1, 79, 0.2);
}

.form-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.form-wrapper .subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.input-box textarea {
    resize: vertical;
    min-height: 150px;
}

.input-box select {
    cursor: pointer;
}

.input-box select option {
    background: var(--dark);
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 5rem;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    position: absolute;
    top: 3rem;
    left: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 100;
    border: 1px solid var(--border-light);
}

.map-info h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.map-info .hours {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-gray);
}

.hours-item strong {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
    
    .main-content {
        padding: 4rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        left: 1rem;
        right: 1rem;
        max-width: none;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 50vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 3rem 1rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
}
