/* ================================================================
   WHIZWISER - CONTACT PAGE STYLES
   Theme: Dark Mode | Grid Background & Glassmorphism Card
================================================================= */

.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px; /* Offset for navbar */
    padding-bottom: 80px;
    background-color: #0b0b0c; /* Extra dark base background to make grid and glow pop */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid Background */
.contact-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    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: 50px 50px;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

/* Glow Background effect */
.contact-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

/* Contact Card Container */
.contact-card {
    position: relative;
    z-index: 5;
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px 48px;
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

/* Pill Badge */
.get-in-touch-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    display: inline-block;
    box-shadow: 0 0 10px #ffffff;
}

/* Title */
.contact-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Description */
.contact-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 3.5rem;
}

/* Label */
.email-label {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Email Link */
.contact-email {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    margin-bottom: 4rem;
    position: relative;
}



/* Response Time Box */
.response-time-box {
    width: 100%;
    background: rgba(11, 11, 12, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.response-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.clock-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.response-header strong {
    color: #ffffff;
    font-weight: 600;
}

.response-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 80px;
    }

    .contact-card {
        padding: 48px 24px;
        border-radius: 24px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-email {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    
    .response-time-box {
        padding: 20px;
    }
}
