/* ============================================
   EHON Energy Tech - Contact Us Page Styles
   Modern, Techy, Eye-catching Design
   ============================================ */

/* ============================================
   Contact Hero Section
   ============================================ */
.contact-hero {
    position: relative;
    min-height: 85vh;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Quick Contact Buttons */
.hero-quick-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.quick-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.quick-contact-btn:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(237, 28, 36, 0.25);
}

.quick-contact-btn:hover::before {
    opacity: 0.1;
}

.qc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(42, 54, 144, 0.15) 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.qc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.qc-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.qc-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.qc-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   Contact Hero Visual - Animated Connection Graphic
   ============================================ */
.contact-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.connection-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cg-center {
    position: relative;
    z-index: 5;
}

.cg-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

.cg-core {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(237, 28, 36, 0.5);
    animation: coreFloat 4s ease-in-out infinite;
}

@keyframes coreFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cg-core svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

/* Orbit Rings */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 1;
    stroke-dasharray: 8 8;
    animation: rotateRing 60s linear infinite;
}

.orbit-ring:nth-child(2) {
    stroke: rgba(237, 28, 36, 0.2);
    animation-direction: reverse;
    animation-duration: 45s;
}

.orbit-ring:nth-child(3) {
    stroke: rgba(42, 54, 144, 0.2);
    animation-duration: 75s;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbiting Icons */
.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate 15s linear infinite;
}

.orbit-1 { animation-duration: 12s; }
.orbit-2 { animation-duration: 18s; animation-direction: reverse; }
.orbit-3 { animation-duration: 15s; }
.orbit-4 { animation-duration: 20s; animation-direction: reverse; }

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: counterRotate 15s linear infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.orbit-1 .orbit-icon {
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 12s;
}

.orbit-2 .orbit-icon {
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 18s;
    animation-direction: reverse;
}

.orbit-3 .orbit-icon {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 15s;
}

.orbit-4 .orbit-icon {
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 20s;
    animation-direction: reverse;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbit-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-primary);
}

/* ============================================
   Main Contact Section
   ============================================ */
.contact-main {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.contact-main-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Enhanced Contact Form
   ============================================ */
.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    margin-bottom: 36px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: var(--accent-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 16px 16px 50px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

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

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(237, 28, 36, 0.05);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.1);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    stroke: var(--accent-primary);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper .input-icon {
    top: 16px;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 140px;
}

.input-wrapper 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='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.input-wrapper select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 12px;
}

.btn-submit {
    margin-top: 12px;
    padding: 18px 36px;
    font-size: 16px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.form-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-green);
    flex-shrink: 0;
}

/* ============================================
   Contact Info Cards
   ============================================ */
.contact-info-section {
    position: sticky;
    top: 120px;
}

.info-card-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.info-card:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-4px);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-base);
}

.info-card:hover .card-glow {
    opacity: 1;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(42, 54, 144, 0.15) 100%);
    border-radius: 14px;
}

.info-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-primary);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.info-card-content {
    position: relative;
    z-index: 1;
}

/* Location Card */
.location-card .address {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.map-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.map-link:hover {
    color: var(--text-primary);
}

.map-link:hover svg {
    transform: translate(3px, -3px);
}

/* Hours Card */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.hours-row .day {
    font-size: 14px;
    color: var(--text-secondary);
}

.hours-row .time {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.hours-row.weekend {
    opacity: 0.6;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
}

.status-indicator.closed {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

.status-indicator.closed .status-dot {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: none;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
}

.status-indicator.closed .status-text {
    color: #ef4444;
}

/* Direct Contact Card */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-method:hover {
    background: rgba(237, 28, 36, 0.1);
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateX(8px);
}

.method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.method-icon.phone {
    background: rgba(16, 185, 129, 0.15);
}

.method-icon.phone svg {
    stroke: var(--accent-green);
}

.method-icon.email {
    background: rgba(59, 130, 246, 0.15);
}

.method-icon.email svg {
    stroke: var(--accent-blue);
}

.method-icon svg {
    width: 22px;
    height: 22px;
}

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

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

.method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   Support Options Section
   ============================================ */
.support-options {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-base);
}

.support-card:hover {
    border-color: rgba(237, 28, 36, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-card:hover::before {
    opacity: 1;
}

.support-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(42, 54, 144, 0.15) 100%);
    border-radius: 18px;
    transition: var(--transition-base);
}

.support-card:hover .support-icon {
    background: var(--gradient-accent);
    box-shadow: 0 8px 24px rgba(237, 28, 36, 0.3);
}

.support-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-primary);
    transition: var(--transition-base);
}

.support-card:hover .support-icon svg {
    stroke: white;
}

.support-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.support-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.support-link:hover {
    color: var(--text-primary);
}

.support-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Location & Map Section
   ============================================ */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
    flex: 1;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.15) 0%, rgba(42, 54, 144, 0.15) 100%);
    border-radius: 14px;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.location-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.location-text p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

.location-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.location-text a:hover {
    color: var(--accent-primary);
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    border: 1px solid var(--border-color);
    filter: grayscale(50%) invert(100%) contrast(95%);
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}



/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(237, 28, 36, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--text-muted);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Contact CTA
   ============================================ */
.contact-cta {
    background: linear-gradient(135deg, rgba(237, 28, 36, 0.12) 0%, rgba(42, 54, 144, 0.18) 100%);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .contact-hero-content {
        order: 1;
    }
    
    .contact-hero-visual {
        order: 2;
        min-height: 350px;
    }
    
    .contact-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-quick-contact {
        justify-content: center;
    }
    
    .contact-main-grid {
        max-width: 100%;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .connection-graphic {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-quick-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .connection-graphic {
        width: 280px;
        height: 280px;
    }
    
    .cg-core {
        width: 60px;
        height: 60px;
    }
    
    .cg-core svg {
        width: 28px;
        height: 28px;
    }
    
    .orbit-icon {
        width: 40px;
        height: 40px;
    }
    
    .orbit-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .map-wrapper {
        min-height: 350px;
    }
    
    .location-item {
        gap: 14px;
    }
    
    .location-icon {
        width: 44px;
        height: 44px;
    }
    
    .location-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-section {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .info-card {
        padding: 24px 20px;
    }
    
    .support-card {
        padding: 28px 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .connection-graphic {
        width: 240px;
        height: 240px;
    }
}

/* ============================================
   Animation Classes
   ============================================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations on load */
.contact-hero-content {
    animation: slideInLeft 0.8s ease both;
}

.contact-hero-visual {
    animation: slideInRight 0.8s ease 0.2s both;
}

.contact-form-section {
    animation: fadeInUp 0.8s ease both;
}

.info-card {
    animation: fadeInUp 0.6s ease both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.support-card {
    animation: fadeInUp 0.6s ease both;
}

.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.2s; }
.support-card:nth-child(3) { animation-delay: 0.3s; }
.support-card:nth-child(4) { animation-delay: 0.4s; }

/* Active nav link */
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

