@import url('common.css');

/* Modern IT Style - Dark Theme with Neon Accents */

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0a0e27;
    color: #e0e7ff;
}

main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 3px);
    background-size: 50px 50px, 50px 50px, 200px 200px, 150px 150px, 300px 300px;
    animation: gridMove 20s linear infinite;
    z-index: -2;
    opacity: 0.3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

section {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Contact Intro Section */
.contact-intro-section {
    padding: 120px 0 80px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
}

@keyframes lineExpand {
    0%, 100% { width: 80px; opacity: 0.6; }
    50% { width: 120px; opacity: 1; }
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e0e7ff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #e0e7ff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(15, 23, 42, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.submit-button:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* Address Section */
.address-section {
    background: rgba(10, 14, 39, 0.8);
}

.address-content {
    max-width: 600px;
    margin: 0 auto;
}

.address-card,
.phone-card,
.hours-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.address-card:hover,
.phone-card:hover,
.hours-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3);
}

.address-card h3,
.phone-card h3,
.hours-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.address-card p,
.phone-card p,
.hours-card p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.hours-card strong {
    color: #e0e7ff;
}

/* Map Section */
.map-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container {
    width: 100%;
    height: 400px;
    background: rgba(15, 23, 42, 0.5);
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-fallback {
    display: none;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Phone Section */
.phone-section {
    background: rgba(10, 14, 39, 0.8);
}

.phone-content {
    max-width: 600px;
    margin: 0 auto;
}

.phone-card a {
    color: #60a5fa;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-card a:hover {
    color: #a78bfa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* Hours Section */
.hours-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Support Section */
.support-section {
    background: rgba(10, 14, 39, 0.8);
}

.support-grid,
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card,
.region-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover,
.region-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3);
}

.support-card h3,
.region-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.support-card p,
.region-card p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.support-card a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-card a:hover {
    color: #a78bfa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* Regions Section */
.regions-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.regions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(226, 232, 240, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body::before,
    body::after {
        animation-duration: 25s;
        opacity: 0.2;
    }

    .intro-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .section-title::after {
        width: 60px;
    }

    .support-grid,
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container,
    .map-iframe {
        height: 300px;
    }

    .map-fallback {
        display: block;
    }

    .map-container {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

