/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #3D126A;
    --primary-orange: #C65306;
    --dark-bg: #1a0b2e;
    --darker-bg: #0f0619;
    --light-purple: #6b46c1;
    --light-orange: #f97316;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --glass-bg: rgba(61, 18, 106, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #2d1b69 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* DNA Background Animation */
.dna-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.dna-strand {
    position: absolute;
    width: 2px;
    height: 100vh;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-orange));
    animation: dnaFloat 20s ease-in-out infinite;
}

.strand-1 {
    left: 20%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.strand-2 {
    left: 50%;
    animation-delay: -7s;
    transform: rotate(-10deg);
}

.strand-3 {
    right: 20%;
    animation-delay: -14s;
    transform: rotate(20deg);
}

@keyframes dnaFloat {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: -9s;
}

.particle:nth-child(5) {
    left: 85%;
    animation-delay: -12s;
}

.particle:nth-child(6) {
    left: 95%;
    animation-delay: -15s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vh, 2rem);
    position: relative;
    z-index: 2;
    text-align: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.logo-container {
    margin-bottom: clamp(1rem, 3vh, 2rem);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo {
    max-width: clamp(150px, 20vw, 250px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(198, 83, 6, 0.1));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(198, 83, 6, 0.1));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(198, 83, 6, 0.1));
    }
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vh, 1.5rem);
}



/* Coming Soon Badge */
.coming-soon-badge {
    position: relative;
    display: inline-block;
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    animation: badgeSlideIn 1s ease-out 0.6s both;
}

.badge-text {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(198, 83, 6, 0.08);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 50px;
    filter: blur(8px);
    opacity: 0.2;
    animation: badgeGlow 2s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes badgeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes badgeGlow {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1.05);
        opacity: 0.25;
    }
}

/* Contact Information */
.contact-info {
    margin-top: clamp(1rem, 2vh, 2rem);
    animation: contactFadeIn 1s ease-out 0.9s both;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(0.75rem, 2vw, 1.5rem);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    justify-items: center;
    align-items: stretch;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 320px;
    min-height: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    /* transform: translateY(-8px) scale(1.02); */
    box-shadow: 0 15px 40px rgba(198, 83, 6, 0.1);
    border-color: rgba(198, 83, 6, 0.4);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: clamp(48px, 6vw, 60px);
    height: clamp(48px, 6vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 20px rgba(198, 83, 6, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(198, 83, 6, 0.1);
}

.contact-icon svg {
    width: clamp(20px, 3.5vw, 28px);
    height: clamp(20px, 3.5vw, 28px);
}

.contact-details {
    text-align: center;
    width: 100%;
}

.contact-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-details p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--light-orange);
    text-decoration: underline;
}

@keyframes contactFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Responsive Design */

/* Large Desktop (1200px+) - Default styles above */

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .main-content {
        padding: clamp(1.5rem, 3vh, 2rem);
    }

    .contact-grid {
        max-width: 900px;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .main-content {
        padding: clamp(1rem, 2.5vh, 1.5rem);
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: clamp(1rem, 2vw, 1.25rem);
        padding: 0 0.5rem;
    }

    .content-wrapper {
        gap: clamp(1rem, 2vh, 1.25rem);
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .main-content {
        padding: clamp(1rem, 2vh, 1.25rem);
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
        max-width: 100%;
        min-height: 120px;
    }
}

/* Mobile Landscape (480px - 599px) */
@media (max-width: 599px) {
    .main-content {
        padding: clamp(0.75rem, 2vh, 1rem);
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
        min-height: 110px;
    }

    .contact-grid {
        gap: 0.75rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 479px) {
    .main-content {
        padding: 0.75rem 0.5rem;
        justify-content: center;
    }

    .contact-grid {
        gap: 0.6rem;
        padding: 0;
    }

    .contact-item {
        padding: 0.9rem 0.6rem;
        gap: 0.6rem;
        min-height: 100px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Height-based media queries for better vertical spacing */
@media (max-height: 800px) {
    .main-content {
        justify-content: center;
        padding: clamp(0.75rem, 2vh, 1.5rem);
    }

    .logo-container {
        margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
    }

    .content-wrapper {
        gap: clamp(0.5rem, 1.5vh, 1rem);
    }
}

@media (max-height: 700px) {
    .main-content {
        justify-content: center;
        padding: clamp(0.5rem, 1.5vh, 1rem);
    }

    .logo-container {
        margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
    }

    .contact-item {
        padding: clamp(0.6rem, 1.5vh, 0.9rem);
    }
}

@media (max-height: 600px) {
    .main-content {
        justify-content: center;
        padding: 0.5rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }

    .content-wrapper {
        gap: 0.4rem;
    }

    .contact-grid {
        gap: 0.5rem;
    }

    .contact-item {
        padding: 0.5rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .contact-grid {
        max-width: 1200px;
        grid-template-columns: repeat(3, 1fr);
    }

    .main-content {
        padding: clamp(2rem, 4vh, 3rem);
    }
}