:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #00f2ea;
    --secondary: #ff0050;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --gradient: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.highlight {
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    /* Ensure consistent height */
    cursor: pointer;
    text-align: center;
    /* Fix for flex stretching */
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 234, 0.2);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

/* Orbs for background effect */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 10%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 100px 5%;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
}

.package-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.package-card .desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.package-card .features li {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.package-card .features i {
    color: var(--secondary);
    margin-right: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-group .btn-primary,
.btn-group .btn-secondary {
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 100px 10%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 242, 234, 0.05) 100%);
}

.section-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary);
}

.contact-form {
    flex: 1;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

button[type="submit"] {
    width: 100%;
}

/* Footer */
footer {
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-container {
        flex-direction: column;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        /* Add JS to toggle */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Capabilities Section */
.cap-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cap-card {
    padding: 40px 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0, 242, 234, 0.2);
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.85);
    z-index: 1;
    transition: background 0.3s;
}

.cap-card:hover::before {
    background: rgba(5, 5, 5, 0.7);
}

.cap-content {
    position: relative;
    z-index: 2;
}

.cap-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.cap-content .desc {
    color: #eee;
    font-size: 1rem;
    margin: 0;
}




/* Dil Dropdown Kapsayıcısı */
.lang-dropdown {
    position: relative;
}

/* Dil Menüsü Listesi (Varsayılan: Gizli) */
.lang-menu {
    display: none; /* JS 'active' sınıfını ekleyene kadar gizli */
    position: absolute;
    top: 100%;
    right: 0;
    background: #111; /* Koyu arka plan */
    border: 1px solid rgba(0, 242, 234, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 130px;
    z-index: 1001;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* JS active sınıfını eklediğinde menüyü göster */
.lang-menu.active {
    display: block !important;
}

.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.lang-menu li a:hover {
    background: rgba(0, 242, 234, 0.1);
    color: var(--primary);
}

.flag-icon {
    width: 20px;
    border-radius: 2px;
}