/* Contact Page Specific Styles */

.contact-main {
    min-height: 100vh;
    color: var(--white);
    position: relative;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff6b35);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Hero Section */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
}

.contact-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: var(--primary-font);
    font-size: clamp(3rem, 8vw, 12rem);
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-hero h2 {
    font-family: var(--primary-font);
    font-size: clamp(2rem, 6vw, 8rem);
    font-weight: 800;
    margin: -20px 0 30px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--orange);
    position: relative;
}

.contact-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: rgba(242, 242, 242, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Connection Grid */
.connection-grid {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(206, 79, 10, 0.02) 100%);
}

.connection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--primary-font);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.connection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.connection-card {
    background: rgba(19, 19, 19, 0.8);
    border: 2px solid rgba(206, 79, 10, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.connection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 79, 10, 0.1), transparent);
    transition: left 0.6s ease;
}

.connection-card:hover::before {
    left: 100%;
}

.connection-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(206, 79, 10, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.connection-card:hover .card-icon {
    filter: grayscale(0);
}

.connection-card h3 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.connection-card p {
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.connection-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.connection-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 2px solid rgba(206, 79, 10, 0.3);
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.connection-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05);
    color: var(--eerie-black);
}

.connection-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.connection-link:hover img {
    filter: brightness(0) invert(0);
}

/* Email Reveal */
.email-reveal {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.email-reveal.show {
    opacity: 1;
    max-height: 100px;
}

.email-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(206, 79, 10, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(206, 79, 10, 0.3);
}

.email-address {
    color: var(--orange);
    font-weight: 600;
    font-family: monospace;
    user-select: all;
}

.copy-email {
    padding: 8px 16px;
    background: var(--orange);
    color: var(--eerie-black);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-email:hover {
    background: #ff6b35;
    transform: scale(1.05);
}

/* Creative Contact Section */
.creative-contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(206, 79, 10, 0.02) 0%, transparent 100%);
}

.creative-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.creative-prompt {
    margin-top: 60px;
}

.prompt-content {
    background: rgba(19, 19, 19, 0.6);
    border: 2px solid rgba(206, 79, 10, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    backdrop-filter: blur(15px);
}

.prompt-content h3 {
    font-family: var(--primary-font);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.prompt-content p {
    font-size: 1.2rem;
    color: rgba(242, 242, 242, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.creative-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.creative-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(206, 79, 10, 0.05);
    border: 1px solid rgba(206, 79, 10, 0.2);
    transition: all 0.3s ease;
}

.creative-option:hover {
    background: rgba(206, 79, 10, 0.1);
    transform: translateY(-5px);
}

.option-emoji {
    font-size: 2rem;
    margin-bottom: 5px;
}

.creative-option span:last-child {
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

/* Availability Status */
.availability-status {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(206, 79, 10, 0.05) 0%, transparent 50%);
}

.status-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(19, 19, 19, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(206, 79, 10, 0.3);
    backdrop-filter: blur(10px);
}

.status-light {
    width: 20px;
    height: 20px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text h3 {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: var(--white);
}

.status-text p {
    margin: 0;
    color: rgba(242, 242, 242, 0.7);
}

.what-next h4 {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--eerie-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step span:last-child {
    color: rgba(242, 242, 242, 0.8);
    text-align: center;
    line-height: 1.4;
}

/* Hero Animation Classes */
.hero-title, .hero-subtitle, .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* Animation states for GSAP */
.hero-title.animate-in {
    animation: slideInUp 1.2s ease-out;
}

.hero-subtitle.animate-in {
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description.animate-in {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-content p {
    min-width: 1100px;
    font-size: 70px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy reveal classes for other sections */
.reveal-text, .reveal-text-2, .reveal-text-3 {
    opacity: 0;
    transform: translateY(50px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        padding: 80px 15px 40px;
    }
    
    .contact-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        line-height: 1.1;
    }
    
    .contact-hero h2 {
        font-size: clamp(1.5rem, 8vw, 3rem);
        margin: -15px 0 20px;
    }

    .hero-content p {
        min-width: 10px;
        font-size: 30px;
    }
    
    .contact-lead {
        font-size: clamp(1rem, 4vw, 1.2rem);
        padding: 0 10px;
    }
    
    .connection-grid {
        padding: 60px 15px;
    }
    
    .connection-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .connection-card {
        padding: 25px 20px;
    }
    
    .creative-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .status-indicator {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .prompt-content {
        padding: 30px 20px;
    }

    .process-steps {
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 10px 30px;
        min-height: 65vh;
    }
    
    .contact-hero h1 {
        font-size: clamp(2rem, 15vw, 3.5rem);
    }
    
    .contact-hero h2 {
        font-size: clamp(1.2rem, 10vw, 2.5rem);
        margin: -10px 0 15px;
    }
    
    .contact-lead {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        padding: 0 5px;
    }
    
    .connection-grid {
        padding: 40px 10px;
    }
    
    .creative-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .connection-link {
        min-width: auto;
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Creative Hint Styles */
.creative-hint {
    margin-top: 30px;
    padding: 20px;
    background: rgba(206, 79, 10, 0.1);
    border: 2px solid rgba(206, 79, 10, 0.3);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.creative-hint.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

.creative-hint p {
    margin: 0;
    color: var(--white);
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.5;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #ff6b35;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}