/* Root Variables - Temel renk ve stil tanımları */
:root {
    --primary-dark: #414a57;
    --primary-darker: #2a3139;
    --accent-color: #70fa9d;
    --accent-light: #a5ffc8;
    --text-light: #f8f9fa;
    --text-gray: #cccccc;
    --bg-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --card-border: 1px solid rgba(112, 250, 157, 0.1);
}

/* Global Styles - Genel vücut ve font ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

@font-face {
    font-family: 'Inter';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Mobil uyum için varsayılan padding */
}

/* Header Styles - Üst menü ve logo ayarları */
header {
    padding: 15px 0;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--primary-dark);
    z-index: 1000;
    transition: background 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden; /* Parlama efektinin taşmasını önler */
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: inline-block;
    max-width: 175px; /* Logo metni kısalma sorunu düzeltildi, genişletildi */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    order: 3;
}

/* CTA Buttons - Buton stilleri */
.cta-button {
    padding: 12px 20px;
    font-size: 16px;
    white-space: nowrap;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(112, 250, 157, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 250, 157, 0.4);
}

.user-button {
    background: var(--primary-darker) !important;
    border: 1px solid var(--accent-color) !important;
}

.login-button {
    min-width: 100px;
}

/* Hero Section - Ana banner stilleri */
.hero {
    padding: 100px 0 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.secondary-button {
    background: transparent;
    color: var(--accent-color);
    padding: 12px 28px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

/* Trading Chart - Animasyonlu grafik */
.trading-chart {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(112, 250, 157, 0.1);
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 40%, var(--accent-color) 50%, transparent 60%);
    animation: chartMove 3s ease-in-out infinite;
    opacity: 0.7;
}

.chart-candles {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 20px;
}

.candle {
    flex: 1;
    background: rgba(112, 250, 157, 0.6);
    margin: 0 2px;
    position: relative;
    border-radius: 2px;
    animation: candleGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

@keyframes chartMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes candleGrow {
    to { transform: scaleY(1); }
}

/* Section Titles - Bölüm başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Features Section - Özellik kartları */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: var(--card-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(112, 250, 157, 0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(112, 250, 157, 0.3);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(112, 250, 157, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Dashboard Section - Dashboard tanıtımı */
.dashboard-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
}

.dashboard-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
}

.dashboard-content {
    flex: 1;
}

.dashboard-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.dashboard-content ul {
    list-style: none;
    margin-top: 30px;
}

.dashboard-content li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-gray);
}

.dashboard-content li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.dashboard-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(112, 250, 157, 0.2);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dashboard-image:hover img {
    transform: scale(1.03);
}

/* Stats Section - İstatistikler */
.stats {
    padding: 100px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px;
    text-align: center;
    background: rgba(112, 250, 157, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(112, 250, 157, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(112, 250, 157, 0.1);
    box-shadow: 0 10px 30px rgba(112, 250, 157, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Bot Intro Section - Bot tanıtımı */
.bot-intro {
    padding: 100px 0;
    position: relative;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.intro-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(112, 250, 157, 0.2);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-content {
    flex: 1;
}

.intro-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.tech-stack {
    margin-top: 30px;
}

.tech-stack h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tech-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-icon:hover {
    background: rgba(112, 250, 157, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(112, 250, 157, 0.2);
}

/* Stats Section for Bot Performance - İstatistik iframe'leri */
.stats-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.main-stats-container {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(112, 250, 157, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.stats-iframe-wrapper {
    position: relative;
    padding-bottom: 66.67%; /* 3:2 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 106.9%;
    height: 104%;
}

.main-stats-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.mobile-fallback {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(112, 250, 157, 0.1);
    border-top: 1px solid var(--accent-color);
}

.mobile-stats-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mobile-stats-link:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
}

.stats-gridfx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(112, 250, 157, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(112, 250, 157, 0.1);
    border-color: var(--accent-color);
}

.stat-iframe-container {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.stat-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stat-card h3 {
    text-align: center;
    padding: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0;
}

/* FAQ Section - Sıkça sorulan sorular */
.faq {
    padding: 100px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: var(--card-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(112, 250, 157, 0.05);
}

/* FAQ Section Fixes */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s ease, padding 0.3s ease;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.02);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Daha fazla içerik için yeterli alan */
    padding: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Final CTA Section - Son çağrı bölümü */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(112, 250, 157, 0.1), rgba(65, 74, 87, 0.1));
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles - Alt kısım */
footer {
    background: rgba(65, 74, 87, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(112, 250, 157, 0.2);
    position: relative;
}

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

.footer-col {
    padding: 0 15px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.logo-footer i {
    font-size: 28px;
}

.footer-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.footer-contact i {
    width: 20px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.partner-section {
    padding: 30px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(112, 250, 157, 0.1);
    border-bottom: 1px solid rgba(112, 250, 157, 0.1);
}

.partner-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.partner-title {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-logo-container:hover {
    background: rgba(112, 250, 157, 0.1);
    transform: translateY(-3px);
}

.partner-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.partner-logo-container:hover .partner-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(112, 250, 157, 0.5));
}

.copyright {
    text-align: center;
    padding-top: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Animations - Genel animasyonlar */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(112, 250, 157, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(112, 250, 157, 0.8);
    }
}

/* Responsive Styles - Ekran boyutu uyarlamaları */
@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .dashboard-container, .intro-container {
        flex-direction: column;
    }

    .stats-iframe-wrapper {
        padding-bottom: 75%; /* Daha dik aspect ratio */
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 10px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
        max-height: 500px;
    }

    .nav-links li {
        margin-bottom: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-button {
        order: 2;
        margin-left: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

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

    .responsive-iframe-container {
        display: none;
    }

    .mobile-fallback {
        display: block;
    }

    .stats-iframe-wrapper {
        padding-bottom: 0;
        height: auto;
    }

    .stats-gridfx {
        grid-template-columns: 1fr;
    }

    .stat-iframe-container {
        padding-bottom: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        max-width: 120px; /* Küçük ekranlar için ayarlandı */
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 13px;
    }

    header {
        padding: 10px 0;
    }

    .nav-links {
        top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .final-cta h2 {
        font-size: 2rem;
    }

    .mobile-stats-link {
        font-size: 14px;
        padding: 10px 15px;
    }
}
/* Hero Section Currency Logos */
.currency-logos {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
    opacity: 0.6;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.currency-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.trading-chart:hover .currency-logos {
    opacity: 0.9;
    filter: grayscale(0%);
}

.currency-logo:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: brightness(1.2) grayscale(0%);
}

/* Contact Form Styles */
.contact-form-section {
    background: rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 500;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(112, 250, 157, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(112, 250, 157, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-border,
.form-textarea:focus ~ .input-border {
    width: 100%;
}


.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.form-info {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ===== TEMEL STİLLER ===== */
.language-switcher {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.dropdown-toggle:hover {
    background: rgba(112, 250, 157, 0.1);
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--primary-dark);
    border: 1px solid rgba(112, 250, 157, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(112, 250, 157, 0.1);
    color: var(--accent-color);
}

.dropdown-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== MOBİL STİLLER ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-darker);
    z-index: 9999;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
}

.mobile-language-switcher {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.mobile-language-current {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.mobile-language-list {
    list-style: none;
    padding-left: 20px;
}

.mobile-language-list a {
    color: var(--text-gray);
    padding: 8px 0;
    display: block;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 993px) {
    .mobile-menu,
    .mobile-menu-btn {
        display: none !important;
    }
}

/* Tabs Stili */
.tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(112, 250, 157, 0.1);
    box-shadow: var(--card-shadow);
}

.tab-button {
    flex: 1;
    padding: 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: var(--accent-light);
    background-color: rgba(112, 250, 157, 0.05);
}

.tab-button.active {
    color: var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    background-color: rgba(112, 250, 157, 0.1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

