:root {
    --bg-color: #02040a;
    --bg-alt: #080a0f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #d4af37;
    --accent: #f59e0b;
    /* Gold Gradient */
    --gradient-main: linear-gradient(135deg, #d4af37 0%, #fcd34d 100%);
    --glass-bg: rgba(2, 4, 10, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Cinzel', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border: 1px solid #fff;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-left: 12px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.dot {
    color: var(--accent);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-links .btn {
    color: white;
    margin-left: 32px;
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 600px;
}

.tagline {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.0;
    margin-bottom: 32px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.subheadline {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.trust-signals {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.trust-signals span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.logos {
    display: flex;
    gap: 20px;
    opacity: 0.5;
}

.logo-placeholder {
    width: auto;
    min-width: 100px;
    padding: 0 12px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tower Visual */
.tower-container {
    width: 300px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.tower-shape {
    width: 120px;
    height: 400px;
    background: linear-gradient(0deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.4) 100%);
    position: relative;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border-top: 2px solid rgba(212, 175, 55, 0.8);
}

.tower-shape::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 350px;
    background: linear-gradient(0deg, var(--accent) 0%, transparent 100%);
    opacity: 0.5;
}

.gate-glow {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 150px;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s infinite ease-in-out;
}

@keyframes pulse-glow {

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

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.float-card {
    position: absolute;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s infinite ease-in-out;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 3s;
}

@keyframes float {

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

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

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

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

.card-info .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-info .value {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Page Sections */
.page-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Timezone Visual */
.timezone-visual {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.timeline-container {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.city h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.time-bar {
    width: 300px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.segment {
    position: absolute;
    height: 100%;
    border-radius: 6px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.city.europe .segment {
    left: 40%;
    width: 60%;
    background: #3b82f6;
}

.city.turkey .segment {
    left: 0%;
    width: 60%;
    background: #14b8a6;
}

.overlap-indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge {
    background: rgba(20, 184, 166, 0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.benefit-item h3 {
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services */
.dark-alt {
    background: var(--bg-alt);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--accent);
}

.featured {
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), var(--glass-bg));
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.step:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
    margin-bottom: -15px;
    color: white;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    border-radius: 32px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 20px;
}

.contact-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    width: 300px;
    font-family: var(--font-main);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.small-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    background: var(--bg-alt);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Reduced from 5rem */
        line-height: 1.1;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
        text-align: center;
    }

    /* Hide complex visuals on mobile to prevent overflow */
    .hero-visual,
    .tower-container,
    .float-card {
        display: none;
    }

    .timeline-container {
        flex-direction: column;
        gap: 30px;
        padding: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-form input {
        width: 100%;
    }
}