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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0a0a1a 0%, #1a1a3a 100%);
    color: #e2e8f0;
    line-height: 1.7;
    overflow-x: hidden;
    perspective: 1500px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Real Burj Khalifa Tower - Image-Based */
.tower-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    pointer-events: none;
    height: 100vh;
}

.neon-tower {
    width: 200px;
    height: 500px; /* Tall for Burj realism */
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1540979388789-6cee28a1cdc9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 
        0 0 50px rgba(13, 148, 136, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    animation: towerPulse 4s ease-in-out infinite alternate;
    filter: brightness(1.1) contrast(1.2);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%); /* Taper for spire */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.tower-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
    border-radius: 10px;
    animation: neonGlow 2s ease-in-out infinite alternate;
    pointer-events: none;
}

.tower-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 40px;
    background: linear-gradient(to top, #000 0%, #0d9488 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 0 30px rgba(13, 148, 136, 0.6);
}

.tower-top {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 60px;
    background: linear-gradient(to top, #ff00ff 0%, #00ff41 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

.glow-effect {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse, rgba(13, 148, 136, 0.4) 0%, transparent 50%);
    border-radius: 50px;
    animation: neonGlow 2s ease-in-out infinite alternate;
    z-index: -1;
    filter: blur(5px);
}

@keyframes towerPulse {
    0% { transform: translateX(-50%) scale(1) brightness(1); }
    100% { transform: translateX(-50%) scale(1.02) brightness(1.3); }
}

@keyframes neonGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Orbiting Tabs - Around Real Tower */
.orbit-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 500px;
    pointer-events: all;
}

.orbit-tabs {
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: orbitRotate 25s linear infinite;
    transform-style: preserve-3d;
}

.tab-item {
    position: absolute;
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.tab-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
}

.tab-item:hover {
    background: rgba(13, 148, 136, 0.3);
    transform: scale(1.2) translateZ(30px) rotateY(15deg);
    animation-play-state: paused;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5);
}

/* Helix positions around Burj height */
.tab-item:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%) rotateY(0deg) translateZ(100px); }
.tab-item:nth-child(2) { top: 20%; right: 15%; transform: rotateY(45deg) translateZ(120px) rotateX(10deg); }
.tab-item:nth-child(3) { top: 35%; left: 15%; transform: rotateY(135deg) translateZ(80px) rotateX(-5deg); }
.tab-item:nth-child(4) { top: 50%; right: 25%; transform: rotateY(225deg) translateZ(100px) rotateX(15deg); }
.tab-item:nth-child(5) { top: 65%; left: 50%; transform: translateX(-50%) rotateY(315deg) translateZ(90px); }
.tab-item:nth-child(6) { top: 80%; right: 35%; transform: rotateY(90deg) translateZ(110px) rotateX(-10deg); }

@keyframes orbitRotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(5deg); }
}

/* Rest of styles (hero, grid, etc.) from previous - copy full from last response */
.hero, .page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    padding-top: 100px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        linear-gradient(90deg, rgba(255, 0, 255, 0.05) 0%, transparent 50%, rgba(0, 255, 65, 0.05) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(13, 148, 136, 0.1) 20px, rgba(13, 148, 136, 0.1) 21px),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255, 0, 255, 0.1) 20px, rgba(255, 0, 255, 0.1) 21px);
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 30px rgba(13, 148, 136, 0.6);
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.btn {
    background: rgba(13, 148, 136, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgba(13, 148, 136, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: rgba(13, 148, 136, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(13, 148, 136, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

section {
    padding: 6rem 0;
    animation: fadeInSection 1.2s ease-out;
}

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

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0d9488;
    margin-bottom: 3.5rem;
    text-shadow: 0 0 15px rgba(13, 148, 136, 0.4);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card, .post {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.card:nth-child(1), .post:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2), .post:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3), .post:nth-child(3) { animation-delay: 0.3s; }

.card:hover, .post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.2);
    border-color: rgba(13, 148, 136, 0.4);
}

.card h3, .post h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.date {
    color: #94a3b8;
    font-size: 0.875rem;
    display: block;
    margin: 1rem 0 1.5rem;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.bio-image {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: all 0.3s ease;
}

.bio-image:hover {
    transform: scale(1.05);
}

.mission ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.mission li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid #0d9488;
    transition: all 0.3s ease;
}

.mission li:hover {
    transform: translateX(10px);
}

.newsletter {
    background: rgba(13, 148, 136, 0.05);
    border-radius: 20px;
    margin: 2rem 0;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 2rem auto;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e2e8f0;
    outline: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.contact-info a {
    color: #0d9488;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(13, 148, 136, 0.5);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 15px rgba(13, 148, 136, 0.3);
}

.map {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.legal-page {
    padding: 6rem 0;
}

.legal-page h3 {
    color: #0d9488;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 10px rgba(13, 148, 136, 0.3);
}

.footer {
    background: rgba(10, 10, 26, 0.5);
    backdrop-filter: blur(20px);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(13, 148, 136, 0.3);
    color: #94a3b8;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.1);
}

.footer-section h3, .footer-section h4 {
    color: #0d9488;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(13, 148, 136, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0d9488;
    text-shadow: 0 0 5px rgba(13, 148, 136, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #0d9488;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 148, 136, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 6px;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.mobile-nav {
    display: none;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 15, 35, 0.95);
    border-bottom: 1px solid #0d9488;
    z-index: 1000;
}

.mobile-nav a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-nav a:hover {
    background: rgba(13, 148, 136, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .orbit-nav {
        display: none;
    }
    .neon-tower {
        width: 150px;
        height: 300px;
        background-position: center top;
    }
    .mobile-nav {
        display: flex;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .bio-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
}
