:root {
    --bg-main: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --brand-dark: #1e3a8a;
    /* Deep corporate blue */
    --brand-light: #0284c7;
    /* Vibrant cyan/blue */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    /* Richer mesh gradient background */
    background-image: 
        radial-gradient(at 0% 0%, rgba(2, 132, 199, 0.15) 0px, transparent 60%),
        radial-gradient(at 100% 0%, rgba(30, 58, 138, 0.15) 0px, transparent 60%),
        radial-gradient(at 50% 100%, rgba(2, 132, 199, 0.1) 0px, transparent 50%);
}

/* Floating organic background shapes for parallax */
.bg-shape {
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--brand-light), transparent);
}

.shape-2 {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--brand-dark), transparent);
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.2), transparent);
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    background: #ffffff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    height: 45px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--brand-dark);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-dark);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--brand-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-light);
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 0.5rem;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-text {
    display: inline-block;
    color: var(--brand-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

.main-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 90%;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
    border-color: rgba(2, 132, 199, 0.3);
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(30, 58, 138, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-dark);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: var(--brand-dark);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

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

.contact-info .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* 3D Art Composition */
.content-right {
    position: relative;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.art-container {
    position: relative;
    width: 320px;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

.center-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 4rem;
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(2, 132, 199, 0.4);
    z-index: 10;
}

.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(2, 132, 199, 0.4);
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 260px;
    height: 260px;
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 340px;
    height: 340px;
    border: 1px solid rgba(30, 58, 138, 0.2);
    animation: spin 30s linear infinite reverse;
}

.ring-3 {
    width: 420px;
    height: 420px;
    border: 2px solid rgba(2, 132, 199, 0.1);
    animation: spin 45s linear infinite;
}

.floating-node {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.5);
}

.node-1 {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 20%;
    animation: float 4s ease-in-out infinite;
}

.node-2 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    right: 10%;
    background: var(--brand-light);
    animation: float 5s ease-in-out infinite reverse;
}

.node-3 {
    width: 15px;
    height: 15px;
    top: 30%;
    right: 20%;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* SVG Waves at bottom */
.waves {
    position: relative;
    width: 100%;
    height: 25vh;
    margin-bottom: -7px;
    /* Fix for safari gap */
    min-height: 150px;
    max-height: 300px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 968px) {
    main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .content-left {
        align-items: center;
    }

    .subtitle {
        margin: 0 auto 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 400px;
    }

    .content-right {
        height: 400px;
    }

    .art-container {
        transform: scale(0.8);
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }
}