:root {
    --primary: #0A1FB8;
    --primary-dark: #070E6B;
    --primary-light: #E8ECFF;
    --accent: #FF6B35;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(10,31,184,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CONTACT HERO */
.contact-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(10, 31, 184, 0.8) 100%
    );
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(232, 236, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 31, 184, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 31, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10,31,184,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,31,184,0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

/* CONTACT INFO */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.info-subtitle {
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 15px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item p {
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL LINKS */
.social-links {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* MAP SECTION */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-wrapper {
        position: static;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}