:root {
    --primary: #004a87;
    --primary-light: #00a0e0;
    --primary-gradient: linear-gradient(135deg, #004a87 0%, #00a0e0 100%);

    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --border-color: rgba(0, 74, 135, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #21262d;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --border-color: rgba(0, 160, 224, 0.15);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* Scroll Animations - CLS önleme */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

h1,
h2,
h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 74, 135, 0.3);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle i {
    position: absolute;
    font-size: 16px;
    transition: all 0.3s;
    color: white;
}

.theme-toggle .fa-sun {
    opacity: 0;
}

.theme-toggle .fa-moon {
    opacity: 1;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    color: #fbbf24;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
}


/* Header - Şeffaf, Slide ile Bütün */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Navigation - Sol ve Sağ */
.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.nav a:hover {
    color: var(--primary-light);
}

[data-theme="light"] .nav a {
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .nav a:hover {
    color: var(--primary);
}

.nav-left {
    margin-right: 60px;
}

.nav-right {
    margin-left: 60px;
}

/* Logo - Ortada */
.logo img {
    height: 70px;
}

.logo .logo-light {
    display: none;
}

.logo .logo-dark {
    display: block;
}

[data-theme="light"] .logo .logo-light {
    display: block;
}

[data-theme="light"] .logo .logo-dark {
    display: none;
}

/* Menü Butonu - Sağ Üst */
.menu-btn {
    position: absolute;
    right: 0;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 135, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 135, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-outline {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

[data-theme="light"] .btn-glass {
    background: rgba(0, 74, 135, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

[data-theme="light"] .btn-glass:hover {
    background: var(--primary);
    color: white;
}

/* Hero - Kompakt ve Göz Alıcı */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s infinite ease-in-out;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -100px;
    right: -50px;
    opacity: 0.6;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--primary-light);
    bottom: -50px;
    left: -50px;
    opacity: 0.5;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 35%;
    left: 25%;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--primary-gradient);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 160, 224, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 160, 224, 0.5);
    }
}

.hero h1 {
    font-size: clamp(32px, 6vw, 50px);
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Badges - Güvenilirlik Rozetleri (Cam Efektli Kartlar) */
.trust-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .trust-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 74, 135, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.trust-card i {
    font-size: 28px;
    color: var(--primary);
}

/* Dark modda ikonlar beyaz */
[data-theme="dark"] .trust-card i {
    color: white;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-info strong {
    display: block;
    font-size: 13px;
    color: var(--text-primary);
}

.trust-info span {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.2;
}

.trust-info .stars {
    color: #ffc107;
    font-size: 12px;
    letter-spacing: 1px;
}

.trust-info .sub {
    font-weight: 600;
    color: var(--primary);
    font-size: 10px;
    text-transform: uppercase;
}

/* Dark modda sub metni beyaz */
[data-theme="dark"] .trust-info .sub {
    color: white;
}


@media (max-width: 768px) {
    .trust-badges {
        gap: 10px;
        margin-top: 30px;
    }

    .trust-card {
        padding: 10px 14px;
        gap: 10px;
    }

    .trust-card i {
        font-size: 22px;
    }

    .trust-info strong {
        font-size: 11px;
    }

    .trust-info span {
        font-size: 9px;
    }
}

.scroll-hint {

    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-secondary);
    border-radius: 11px;
    position: relative;
    opacity: 0.5;
}

.mouse::after {
    content: '';
    width: 3px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

/* Section Styles */
.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 34px);
    margin-bottom: 14px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* About */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.feature h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.feature p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}


.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s;
}

/* Dark modda ikonlar beyaz */
[data-theme="dark"] .service-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.service-item:hover .service-icon {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.service-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .service-item span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    /* Mobilde hizmetler - sola kayan döngü + elle kaydırma */
    .services {
        overflow: hidden;
    }

    .services-grid {
        display: flex;
        gap: 20px;
        padding: 10px 0;
        animation: marqueeServices 15s linear infinite;
        width: max-content;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .services-grid:hover,
    .services-grid:active {
        animation-play-state: paused;
    }

    .service-item {
        flex: 0 0 auto;
        padding: 10px;
        min-width: 80px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .service-item span {
        font-size: 11px;
        margin-top: 8px;
    }

    @keyframes marqueeServices {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}






/* Menu Section */
.menu-section {
    padding: 80px 0;
}


.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.menu-item {
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
}

.menu-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.menu-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.menu-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.menu-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.menu-cta {
    text-align: center;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.reviews-nav:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.reviews-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    scroll-behavior: smooth;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.review-header strong {
    display: block;
    font-size: 14px;
}

.review-stars {
    color: #fbbf24;
    font-size: 11px;
    margin-top: 2px;
}

.review-card p {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}


/* Gallery */
.gallery {
    padding: 80px 0;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.gallery-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    scroll-behavior: smooth;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 16px;
    padding: 10px 0;
}

.gallery-item {
    min-width: 300px;
    max-width: 300px;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}



.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox p {
    color: white;
    margin-top: 16px;
    font-size: 16px;
    text-align: center;
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    color: var(--primary);
    font-size: 12px;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-link:hover {
    text-decoration: underline;
}


/* Contact */
.contact {
    padding: 80px 0;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-list {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.btn-map {
    width: 100%;
    justify-content: center;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 340px;
    border: none;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 8px;
}

.footer-brand .logo-light {
    display: block;
}

.footer-brand .logo-dark {
    display: none;
}

[data-theme="dark"] .footer-brand .logo-light {
    display: none;
}

[data-theme="dark"] .footer-brand .logo-dark {
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-links a:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}


.footer-agency {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}


.footer-agency .agency-logo {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-agency .agency-logo:hover {
    opacity: 1;
}

/* Dark modda logo beyaz */
[data-theme="dark"] .footer-agency .agency-logo {
    filter: brightness(0) invert(1);
}



/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background: var(--primary-gradient);
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Responsive */
@media (max-width: 992px) {

    .features,
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-btn {
        position: static;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo img {
        height: 45px;
    }

    .features,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .about,
    .menu-section,
    .reviews,
    .contact {
        padding: 60px 0;
    }

    .theme-toggle {
        top: 14px;
        right: 70px;
    }

    .contact-map iframe {
        height: 260px;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    /* Header mobilde - Light mod beyaz */
    .header {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
    }

    .header .menu-btn {
        color: white;
    }

    .logo .logo-dark {
        display: none !important;
    }

    .logo .logo-light {
        display: block !important;
    }

    /* Header mobilde - Dark mod koyu */
    [data-theme="dark"] .header {
        background: rgba(13, 17, 23, 0.95) !important;
    }

    [data-theme="dark"] .logo .logo-dark {
        display: block !important;
    }

    [data-theme="dark"] .logo .logo-light {
        display: none !important;
    }


    .hero h1 {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 24px;
    }

    /* Dark mode toggle - sol alta, belirgin renk */
    .theme-toggle {
        top: auto;
        bottom: 80px;
        left: 16px;
        right: auto;
        background: var(--primary) !important;
        border: 2px solid white !important;
        box-shadow: 0 4px 15px rgba(0, 74, 135, 0.4);
    }

    .theme-toggle i {
        color: white !important;
    }

    /* Hero daha açık renk mobilde */
    .hero {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 100%);
    }

    [data-theme="dark"] .hero {
        background: linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(22, 27, 34, 0.9) 100%);
    }

    /* Gradient orb'lar mobilde hafif ve köşelerde */
    .gradient-orb {
        opacity: 0.25;
    }

    .orb-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }

    .orb-2 {
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -50px;
    }

    .orb-3 {
        display: none;
    }

    /* Mobilde scroll hint daha aşağıda */
    .scroll-hint {
        bottom: 10px;
    }

    .mouse {
        width: 18px;
        height: 28px;
    }




    /* Galeri mobilde - sola kayan döngü */
    .gallery-wrapper {
        gap: 6px;
        overflow: hidden;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-track {
        gap: 10px;
        animation: marqueeGallery 20s linear infinite;
        width: max-content;
    }

    .gallery-track:hover,
    .gallery-track:active {
        animation-play-state: paused;
    }

    .gallery-item {
        min-width: 130px;
        max-width: 130px;
        height: 180px;
        border-radius: 10px;
    }

    @keyframes marqueeGallery {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Yorumlar mobilde - sola kayan döngü */
    .reviews-wrapper {
        gap: 6px;
        overflow: hidden;
    }

    .reviews-nav {
        display: none;
    }

    .reviews-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .reviews-track {
        gap: 10px;
        animation: marqueeReviews 25s linear infinite;
        width: max-content;
    }

    .reviews-track:hover,
    .reviews-track:active {
        animation-play-state: paused;
    }

    .review-card {
        min-width: 200px;
        max-width: 200px;
        padding: 14px;
        border-radius: 10px;
    }

    @keyframes marqueeReviews {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }


    .review-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .review-avatar {
        width: 32px;
        height: 32px;
    }

    .review-header strong {
        font-size: 12px;
    }

    .review-stars {
        font-size: 9px;
    }

    .review-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Floating butonlar */
    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }
}