/* --- CONTACT PAGE - CINEMATIC RAW LUXURY --- */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #030303;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* CINEMATIC GRAIN OVERLAY */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 999;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* FILM STRIP DECORATIONS */
.film-strip-left {
    position: fixed;
    left: 20px;
    top: 0;
    width: 20px;
    height: 100vh;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 20px,
        transparent 20px,
        transparent 40px
    );
    z-index: 1;
    pointer-events: none;
}

.film-strip-right {
    position: fixed;
    right: 20px;
    top: 0;
    width: 20px;
    height: 100vh;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 20px,
        transparent 20px,
        transparent 40px
    );
    z-index: 1;
    pointer-events: none;
}

/* --- REDESIGNED CONTACT HEADER - Always visible --- */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
}

/* --- LOGO IMAGE --- */
.logo-image {
    height: 35px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-dot {
    font-size: 0.8rem;
    color: #888;
    animation: pulse 3s infinite;
}

.header-right nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* MAIN CONTAINER */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 8rem 4rem 4rem 4rem;
    gap: 4rem;
    position: relative;
    z-index: 5;
}

/* LEFT SIDE - CONTACT INFO */
.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    position: relative;
}

.film-perf-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    opacity: 0.2;
}

.film-perf-top span {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    animation: filmFlicker 3s infinite;
}

.film-perf-top span:nth-child(2) { animation-delay: 0.5s; }
.film-perf-top span:nth-child(3) { animation-delay: 1s; }
.film-perf-top span:nth-child(4) { animation-delay: 1.5s; }
.film-perf-top span:nth-child(5) { animation-delay: 2s; }

@keyframes filmFlicker {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.contact-title-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.contact-title {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-glitch {
    position: relative;
    display: inline-block;
    animation: glitchTitle 5s infinite;
}

@keyframes glitchTitle {
    0%, 100% { transform: skew(0deg); }
    2% { transform: skew(2deg); text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; }
    4% { transform: skew(0deg); }
    96% { transform: skew(0deg); }
    98% { transform: skew(-2deg); text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; }
}

.title-reflection {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    filter: blur(10px);
    transform: scaleY(-1);
    opacity: 0.5;
}

.title-underline {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    margin-top: 0.5rem;
    animation: underlinePulse 3s infinite;
}

@keyframes underlinePulse {
    0%, 100% { width: 150px; opacity: 0.5; }
    50% { width: 200px; opacity: 1; }
}

.contact-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #888;
    margin-bottom: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.contact-subtitle::before,
.contact-subtitle::after {
    content: '⟡';
    margin: 0 1rem;
    opacity: 0.3;
}

/* DETAIL BLOCKS - CINEMATIC */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.detail-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(2px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.detail-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s ease;
}

.detail-block:hover::before {
    left: 100%;
}

.detail-block:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateX(10px);
    background: rgba(255,255,255,0.03);
}

.detail-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: #666;
    text-transform: uppercase;
    font-weight: 300;
}

.detail-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 200;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05em;
}

.detail-link:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.detail-text {
    color: #aaa;
    font-size: 1.2rem;
    font-weight: 200;
    letter-spacing: 0.1em;
}

.detail-glow {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px #fff;
}

.detail-block:hover .detail-glow {
    opacity: 0.5;
}

/* AVAILABILITY NOTE */
.availability-note {
    margin-top: 2rem;
    padding: 2rem 0;
}

.note-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin: 1rem 0;
}

.availability-note p {
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-align: center;
    font-weight: 300;
    position: relative;
}

.glitch-text {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.glitch-text::before {
    color: #ff00ff;
    z-index: -1;
    transform: translate(-2px, -2px);
}

.glitch-text::after {
    color: #00ffff;
    z-index: -2;
    transform: translate(2px, 2px);
}

/* FRAME COUNTER */
.frame-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    color: #333;
    font-size: 0.8rem;
}

.counter-label {
    letter-spacing: 0.2em;
    color: #444;
}

.counter-number {
    font-size: 1.2rem;
    color: #666;
}

.counter-total {
    color: #222;
}

/* RIGHT SIDE - CINEMATIC SOCIAL GRID */
.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-stage {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.stage-light {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
    filter: blur(40px);
    animation: stageLight 8s infinite;
}

@keyframes stageLight {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 5;
}

.social-grid-item {
    position: relative;
    background: rgba(10,10,10,0.8);
    border: 1px solid #222;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.social-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 60%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-grid-item:hover {
    border-color: #fff;
    transform: translateY(-5px);
    background: rgba(20,20,20,0.9);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px rgba(255,255,255,0.1);
}

.social-grid-item:hover::before {
    opacity: 1;
}

.social-frame {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.social-grid-item:hover .social-frame {
    border-color: rgba(255,255,255,0.3);
}

.social-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-grid-item:hover .social-hover-bg {
    opacity: 1;
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: #666;
    transition: all 0.3s ease;
}

.social-grid-item:hover .social-icon {
    color: #fff;
    transform: scale(1.1);
}

.social-handle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.social-stats {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.social-grid-item:hover .social-stats {
    color: #aaa;
}

/* INDIVIDUAL SOCIAL COLORS ON HOVER */
#instagram:hover .social-icon { color: #e1306c; text-shadow: 0 0 20px #e1306c; }
#youtube:hover .social-icon { color: #ff0000; text-shadow: 0 0 20px #ff0000; }
#tiktok:hover .social-icon { color: #00f2ea; text-shadow: 0 0 20px #00f2ea; }
#tiktok-main:hover .social-icon { color: #00f2ea; text-shadow: 0 0 20px #00f2ea; }

/* CINEMATIC DIVIDER */
.cinema-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 4rem;
    opacity: 0.3;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

.divider-symbol {
    color: #333;
    font-size: 1rem;
    animation: rotateSlow 8s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* CINEMATIC BOTTOM */
.cinema-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem 4rem 4rem 4rem;
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.bottom-left, .bottom-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255,255,255,0.01);
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.03);
}

.bottom-left {
    align-items: flex-start;
}

.bottom-right {
    align-items: flex-end;
}

.bottom-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: #444;
    text-transform: uppercase;
}

.bottom-text {
    font-size: 1rem;
    color: #aaa;
    font-weight: 200;
    letter-spacing: 0.1em;
    position: relative;
}

.bottom-text.glitch-text {
    display: inline-block;
}

.bottom-center {
    text-align: center;
    position: relative;
}

.access-link {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border: 1px solid #333;
    transition: all 0.5s ease;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.access-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.02), transparent);
    animation: accessShine 8s linear infinite;
}

@keyframes accessShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.access-link:hover {
    border-color: #fff;
    gap: 2rem;
    background: rgba(20,20,20,0.9);
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.access-icon {
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.access-link:hover .access-icon {
    opacity: 1;
    animation: rotateSlow 4s linear infinite;
}

.access-text {
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.access-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.access-link:hover .access-arrow {
    transform: translateX(5px);
}

.access-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: rgba(255,255,255,0.1);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.access-link:hover .access-glow {
    opacity: 1;
}

/* CINEMATIC RUNWAY */
.cinema-runway {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 1rem 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    margin-top: 2rem;
    transform: skewY(-0.5deg);
    position: relative;
    z-index: 5;
}

.runway-content {
    display: inline-block;
    white-space: nowrap;
    animation: runwayScroll 40s linear infinite;
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: #222;
    font-weight: 300;
}

.runway-content span {
    display: inline-block;
    padding: 0 1rem;
}

@keyframes runwayScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FOOTER FRAME */
.frame-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #030303;
    border-top: 1px solid #111;
    position: relative;
    z-index: 5;
}

.footer-frame-num {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: #333;
    font-family: monospace;
}

.footer-symbol {
    color: #222;
    font-size: 0.8rem;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 8rem 2rem 2rem 2rem;
    }
    
    .contact-left {
        padding-right: 0;
    }
    
    .social-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .film-strip-left,
    .film-strip-right {
        width: 10px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 1rem 1.5rem;
    }
    
    .header-right nav ul {
        gap: 1.2rem;
    }
    
    .logo-image {
        height: 28px;
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }
    
    .contact-container {
        padding: 6rem 1.5rem 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .detail-link {
        font-size: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-grid-item {
        aspect-ratio: auto;
        padding: 1.5rem;
    }
    
    .cinema-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .bottom-left, .bottom-right {
        align-items: center;
    }
    
    .film-strip-left,
    .film-strip-right {
        display: none;
    }
    
    .frame-counter {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-right nav ul {
        gap: 0.8rem;
    }
    
    .nav-link {
        letter-spacing: 0.1em;
    }
    
    .logo-image {
        height: 22px;
        max-width: 80px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .detail-block {
        padding: 1rem;
    }
    
    .detail-link {
        font-size: 0.9rem;
    }
    
    .access-link {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .access-text {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }
}