/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.4) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-hero h1 {
    font-family: var(--font-heading, 'Darker Grotesque', sans-serif);
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 24px 0 16px;
    line-height: 1.2;
}

.contact-hero h1 .gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #3B82F6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 16px;
    color: var(--color-gray-700, #374151);
    line-height: 1.6;
}

.contact-info-value a {
    color: var(--color-primary, #3B82F6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value a:hover {
    color: var(--color-accent, #8B5CF6);
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-intro {
    max-width: 500px;
}

.contact-form-intro h2 {
    font-family: var(--font-heading, 'Darker Grotesque', sans-serif);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-secondary, #0F172A);
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-form-intro p {
    font-size: 18px;
    color: var(--color-gray-600, #4B5563);
    line-height: 1.8;
    margin: 0;
}

.contact-form-intro-visual {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-form-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    position: relative;
}

.contact-form-bubble.question {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact-form-bubble.check {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.contact-form-bubble::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: bubblePulse 2s infinite;
    opacity: 0.5;
}

@keyframes bubblePulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700, #374151);
}

.form-label .required {
    color: #ef4444;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-body, 'Poppins', sans-serif);
    color: var(--color-secondary, #0F172A);
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary, #3B82F6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-captcha-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-gray-600, #4B5563);
}

.form-captcha-info a {
    color: var(--color-primary, #3B82F6);
    text-decoration: none;
}

.form-captcha-info a:hover {
    text-decoration: underline;
}

.form-submit {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body, 'Poppins', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

/* Map Section */
.contact-map-section {
    padding: 0;
    background: white;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-intro {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero-desc {
        font-size: 16px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .contact-info-card {
        padding: 32px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .contact-form-intro h2 {
        font-size: 28px;
    }
    
    .contact-form-intro-visual {
        margin-top: 32px;
    }
    
    .contact-form-bubble {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-map-wrapper {
        height: 400px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

    .breadcrumb a:hover {
        color: white;
    }

.breadcrumb .current {
    color: #3B82F6;
}