/* ===================================
   Contacts Pages
   =================================== */

.contacts-hero {
    min-height: 60vh;
    padding: 140px 0 60px;
    position: relative;
}

.contacts-hero .hero-content {
    max-width: 900px;
}

.contacts-hero .hero-badge {
    margin-bottom: 20px;
    opacity: 1;
    animation: none;
    position: static;
    transform: none;
    display: inline-flex;
}

.contacts-hero h1 {
    opacity: 1;
    animation: none;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.contacts-hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-hero p {
    opacity: 1;
    animation: none;
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    color: var(--text-secondary);
}

.contacts-hero .breadcrumb {
    margin-bottom: 32px;
    opacity: 1;
    animation: none;
    transform: none;
}

/* Contacts Section */
.contacts-section {
    padding: 80px 0 180px;
    position: relative;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 61, 61, 0.08);
    border-radius: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-card:hover {
    border-color: rgba(255, 61, 61, 0.2);
    background: rgba(255, 61, 61, 0.03);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 61, 61, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 16px 18px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 61, 61, 0.08);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 61, 61, 0.3);
    background: rgba(255, 61, 61, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* Map Section */
.map-section {
    padding: 0 0 180px;
    position: relative;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 61, 61, 0.1);
}

.map-placeholder {
    height: 500px;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}

.map-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--accent);
}

.map-placeholder span {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 120px 0 60px;
    }
    
    .contacts-hero h1 {
        font-size: 36px;
    }
    
    .contacts-hero p {
        font-size: 16px;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 640px) {
    .contacts-hero {
        padding: 80px 0 50px;
    }
    
    .contacts-hero h1 {
        font-size: 28px;
    }
    
    .contacts-section {
        padding: 60px 0 100px;
    }
    
    .map-section {
        padding: 0 0 100px;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-placeholder span {
        font-size: 14px;
    }
    
    .contact-cards {
        gap: 12px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-label,
    .contact-value {
        text-align: center;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Checkbox consent styles */
.checkbox-label {
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label span a {
    text-decoration: underline;
    transition: color 0.2s;
}

.checkbox-label span a:hover {
    color: var(--accent-warm);
}
