/* ========================================
   CONTACT PAGE 2100 - ULTRA PREMIUM DESIGN
   Modern, futuristic styling for contact page
   ======================================== */

/* ===== HERO SECTION 2100 ===== */
.contact-hero-2100 {
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

.hero-bg-2100 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.breadcrumb-2100 a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-2100 a:hover {
    color: #3b82f6;
}

.breadcrumb-2100 .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb-2100 .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Content */
.hero-content-2100 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge-2100 .badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.hero-title-2100 {
    margin-bottom: 24px;
}

.hero-title-2100 .title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.1;
}

.hero-title-2100 .title-gradient {
    background: linear-gradient(135deg, #3b82f6, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-2100 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===== CONTACT SECTION 2100 ===== */
.contact-section-2100 {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid-2100 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-info-2100 {
    position: sticky;
    top: 120px;
}

.contact-info-2100 h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-info-2100 h2 span {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-2100 > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Info Cards */
.info-cards-2100 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card-2100 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.info-card-2100:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.info-card-icon-2100 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #3b82f6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card-2100:hover .info-card-icon-2100 {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    color: white;
    border-color: transparent;
    transform: rotate(-5deg) scale(1.1);
}

.info-card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.info-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-content a:hover {
    color: #60a5fa;
}

/* Social Links */
.social-section-2100 h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.social-links-2100 {
    display: flex;
    gap: 12px;
}

.social-link-2100 {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-2100:hover {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
}

/* Contact Form Side */
.contact-form-2100 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-form-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #ec4899);
}

.form-header-2100 {
    margin-bottom: 40px;
}

.form-header-2100 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header-2100 p {
    color: var(--text-secondary);
}

/* Form Styles */
.form-grid-2100 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group-2100 {
    margin-bottom: 24px;
}

.form-group-2100.full-width {
    grid-column: span 2;
}

.form-group-2100 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group-2100 label .required {
    color: #ef4444;
}

.form-group-2100 input,
.form-group-2100 select,
.form-group-2100 textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-2100 input:focus,
.form-group-2100 select:focus,
.form-group-2100 textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group-2100 input::placeholder,
.form-group-2100 textarea::placeholder {
    color: var(--text-muted);
}

.form-group-2100 textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group-2100 select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

/* Submit Button */
.submit-btn-2100 {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn-2100::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.submit-btn-2100:hover::before {
    opacity: 1;
}

.submit-btn-2100 span,
.submit-btn-2100 i {
    position: relative;
    z-index: 1;
}

/* ===== MAP SECTION 2100 ===== */
.map-section-2100 {
    padding: 0 0 100px;
    background: var(--bg-primary);
}

.map-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-wrapper-2100 {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.map-header-2100 {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-header-2100 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-header-2100 h3 i {
    color: #3b82f6;
}

.map-header-2100 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-header-2100 a:hover {
    background: #3b82f6;
    color: white;
}

.map-iframe-2100 {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-iframe-2100:hover {
    filter: grayscale(0%) contrast(1);
}

/* ===== FAQ SECTION 2100 ===== */
.faq-section-2100 {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-header-2100 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title-2100 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title-2100 span {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-2100 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-list-2100 {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-2100 {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-2100:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item-2100.active {
    border-color: #3b82f6;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.faq-question-2100 {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question-2100 span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question-2100 i {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-2100.active .faq-question-2100 i {
    background: #3b82f6;
    color: white;
    transform: rotate(180deg);
}

.faq-answer-2100 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-2100.active .faq-answer-2100 {
    max-height: 300px;
}

.faq-answer-content-2100 {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION 2100 ===== */
.contact-cta-2100 {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-2100::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container-2100 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon-2100 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #60a5fa;
}

.cta-title-2100 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-2100 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary-2100:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== LIGHT THEME SUPPORT ===== */
[data-theme="light"] .contact-hero-2100,
[data-theme="light"] .contact-cta-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
}

[data-theme="light"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-3 {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-title-2100 .title-line,
[data-theme="light"] .cta-title-2100 {
    color: #1e293b !important;
}

[data-theme="light"] .hero-description-2100,
[data-theme="light"] .cta-desc-2100 {
    color: #64748b !important;
}

[data-theme="light"] .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .contact-form-2100,
[data-theme="light"] .info-card-2100,
[data-theme="light"] .faq-item-2100,
[data-theme="light"] .map-wrapper-2100 {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .form-group-2100 input,
[data-theme="light"] .form-group-2100 select,
[data-theme="light"] .form-group-2100 textarea {
    background: #f8fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .social-link-2100 {
    background: #f8fafc;
    border-color: #e2e8f0;
}

[data-theme="light"] .cta-btn-secondary-2100 {
    border-color: #94a3b8;
    color: #1e293b;
}

[data-theme="light"] .cta-btn-secondary-2100:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #64748b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-grid-2100 {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .contact-info-2100 {
        position: static;
    }
    
    .form-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .form-group-2100.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-2100 {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .contact-form-2100 {
        padding: 30px 24px;
        border-radius: 24px;
    }
    
    .map-header-2100 {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary-2100,
    .cta-btn-secondary-2100 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container-2100,
    .section-container-2100,
    .map-container-2100,
    .cta-container-2100 {
        padding: 0 1rem;
    }
    
    .info-card-2100 {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links-2100 {
        justify-content: center;
    }
    
    .faq-question-2100 {
        padding: 20px;
    }
    
    .faq-answer-content-2100 {
        padding: 0 20px 20px;
    }
}
