/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0f0f0f;
    --bg-card: #161616;
    --accent-red: #e8503a;
    --accent-orange: #ff5a3a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glow-red: rgba(232, 80, 58, 0.3);
    --border-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background: #f45b3d;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.announcement-track {
    display: flex;
    animation: scroll-left 12s linear infinite;
    white-space: nowrap;
}

.announcement-text {
    display: inline-block;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: #0d0d0d;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    display: block;
    line-height: 0;
}

.nav-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-white);
}

.cta-btn {
    background: #f15a37;
    color: var(--text-white);
    border: none;
    padding: 12px 28px;
    border-radius: 1.5rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #e8503a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241, 90, 55, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(15, 15, 15, 0.5) 0%,
            rgba(15, 15, 15, 0.7) 50%,
            rgba(15, 15, 15, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.eyebrow {
    font-size: 14px;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: #f15a37;
    color: var(--text-white);
    border: none;
    padding: 18px 48px;
    border-radius: 1.75rem;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(241, 90, 55, 0.4);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background: #e8503a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 90, 55, 0.5);
}

.hero-info-card {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 3;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px 32px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.fire-icon {
    font-size: 32px;
}

.info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.info-time {
    font-size: 18px;
    font-weight: 700;
    color: #f15a37;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.9), rgba(30, 30, 30, 0.9));
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--glow-red), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(232, 80, 58, 0.3);
    box-shadow: 0 20px 60px rgba(232, 80, 58, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Gallery Section - Horizontal Scroll */
.scroll-gallery {
    padding: 120px 0;
    background: #0f0f0f;
}

.scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 3px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.scroll-track {
    display: flex;
    gap: 24px;
    padding: 0 20px 20px 20px;
}

.scroll-item {
    flex-shrink: 0;
    width: 350px;
    height: 230px;
    border-radius: 26px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-6px);
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(232, 80, 58, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.9), rgba(30, 30, 30, 0.9));
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--glow-red), transparent);
    opacity: 0;
    border-radius: var(--border-radius);
    transition: opacity 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 80, 58, 0.3);
}

.testimonial-card:hover::before {
    opacity: 0.1;
}

.quote-icon {
    font-size: 64px;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 80, 58, 0.3);
    box-shadow: 0 10px 40px rgba(232, 80, 58, 0.15);
}

.contact-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.contact-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-red);
}

.contact-hours {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Contact Map Section */
.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-address-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.contact-address-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 80, 58, 0.3);
    box-shadow: 0 10px 40px rgba(232, 80, 58, 0.15);
}

.address-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 5px 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 280px;
}

/* Contact CTA Buttons */
.contact-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.whatsapp-btn,
.call-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--text-white);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.call-btn {
    background: var(--accent-red);
    color: var(--text-white);
}

.call-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--glow-red);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

[data-animate]:nth-child(1) {
    animation-delay: 0.1s;
}

[data-animate]:nth-child(2) {
    animation-delay: 0.2s;
}

[data-animate]:nth-child(3) {
    animation-delay: 0.3s;
}

[data-animate]:nth-child(4) {
    animation-delay: 0.4s;
}

[data-animate]:nth-child(5) {
    animation-delay: 0.5s;
}

[data-animate]:nth-child(6) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 56px;
    }
}

/* ========================================
   EMBER/ASH PARTICLE EFFECT (KÜL EFEKTİ)
   ======================================== */
/* ========================================
   EMBER/ASH PARTICLE EFFECT (KÜL EFEKTİ)
   ======================================== */
.ember-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    /* En üstte görünsün */
}

.ember {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: #ff5a3a;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff5a3a, 0 0 20px #ff5a3a;
    animation: rise linear infinite;
    opacity: 0;
}

.ash {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    background: rgba(200, 200, 200, 0.5);
    border-radius: 50%;
    animation: rise linear infinite;
    opacity: 0;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift)) scale(0);
        opacity: 0;
    }
}

/* ========================================
   MOBILE HERO REDESIGN (PREMIUM)
   ======================================== */

@media (max-width: 992px) {
    .announcement-text {
        font-size: 11px;
        padding: 0 20px;
    }

    .nav-logo img {
        height: 35px;
    }

    /* Menu & Hamburger Styles remain same... */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0f0f0f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 20px 40px;
        transition: right 0.4s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        font-size: 20px;
        padding: 20px;
        font-weight: 600;
    }

    .nav-container>.cta-btn {
        display: none;
    }

    .nav-menu::after {
        content: 'Bize Ulaşın';
        display: block;
        background: #f15a37;
        color: var(--text-white);
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        margin-top: 30px;
        text-align: center;
        cursor: pointer;
    }

    .hamburger {
        display: flex;
    }

    /* PREMIUM MOBILE HERO */
    .hero {
        flex-direction: column;
        justify-content: center;
        padding: 100px 20px 60px;
        text-align: center;
    }

    /* Re-order elements: Info Badge -> Content */
    .hero-info-card {
        order: -1;
        /* Move to top */
        position: static;
        margin: 0 auto 30px auto;
        padding: 8px 24px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        /* Pill shape */
        width: auto;
        min-width: unset;
        display: inline-flex;
        transform: scale(0.9);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .fire-icon {
        font-size: 18px;
        margin-right: 8px;
        animation: pulse 2s infinite;
    }

    .info-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-right: 8px;
        color: #fff;
    }

    .info-time {
        font-size: 12px;
        color: #ff5a3a;
        margin: 0;
    }

    /* Content Styling */
    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.8);
        background: linear-gradient(90deg, transparent, rgba(241, 90, 55, 0.2), transparent);
        padding: 4px 0;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.1;
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .hero-cta {
        width: 100%;
        max-width: 300px;
        padding: 18px 0;
        font-size: 18px;
        letter-spacing: 0.5px;
        box-shadow: 0 0 20px rgba(241, 90, 55, 0.4);
        background: linear-gradient(90deg, #f15a37, #ff7e5f);
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.2);
            opacity: 0.8;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
}

/* Additional Premium Effects */
.feature-card,
.testimonial-card,
.contact-card,
.faq-item {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism enhancement */
.hero-info-card,
.feature-card,
.testimonial-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Smooth transitions for all interactive elements */
button,
a,
.nav-link,
.feature-card,
.testimonial-card,
.contact-card,
.gallery-item,
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Loading animation for images */
.gallery-item img {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* Hover glow effects */
.hero-cta,
.cta-btn,
.whatsapp-btn,
.call-btn {
    position: relative;
    overflow: hidden;
}

.hero-cta::before,
.cta-btn::before,
.whatsapp-btn::before,
.call-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before,
.cta-btn:hover::before,
.whatsapp-btn:hover::before,
.call-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Text selection styling */
::selection {
    background: var(--accent-red);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--accent-red);
    color: var(--text-white);
}

/* ========================================
   NEW IMPROVEMENTS - Scroll Progress & Back to Top
   ======================================== */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(232, 80, 58, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(232, 80, 58, 0.4);
}

.back-to-top:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 80, 58, 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:focus {
    outline: 3px solid rgba(232, 80, 58, 0.5);
    outline-offset: 3px;
}

/* ========================================
   GOOGLE REVIEWS & STAR RATINGS
   ======================================== */

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}



.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 15px;
}

/* Shared Star Style */
.star {
    font-size: 20px;
    color: #ffa500;
    text-shadow: 0 2px 8px rgba(255, 165, 0, 0.4);
    transition: transform 0.2s;
}

/* ========================================
   RESERVATION FORM
   ======================================== */

.reservation-section {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.9), rgba(30, 30, 30, 0.9));
    padding: 50px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reservation-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-white);
}

.reservation-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 40px;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-icon {
    font-size: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(15, 15, 15, 0.8);
    box-shadow: 0 0 0 3px rgba(232, 80, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: var(--text-white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(232, 80, 58, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 80, 58, 0.6);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 22px;
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(232, 80, 58, 0.5);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-red);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Ensure sufficient contrast */
.nav-link:focus,
.contact-link:focus {
    background: rgba(232, 80, 58, 0.1);
}

/* Keyboard navigation indicators */
.faq-question:focus {
    background: rgba(232, 80, 58, 0.05);
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .feature-card,
    .testimonial-card,
    .contact-card {
        border: 2px solid var(--text-white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-progress {
        transition: none;
    }
}

/* ========================================
   RESPONSIVE UPDATES FOR NEW FEATURES
   ======================================== */

@media (max-width: 992px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
    }

    .reservation-section {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .reservation-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .reservation-title {
        font-size: 28px;
    }

    .reservation-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reservation-section {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .reservation-title {
        font-size: 24px;
    }

    .reservation-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .form-group label {
        font-size: 13px;
    }

    .label-icon {
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .submit-btn {
        padding: 15px 28px;
        font-size: 15px;
    }

    .btn-icon {
        font-size: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}/* ========================================
   ANTIGRAVITY URGENT RESPONSIVE FIXES
   ======================================= */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
        /* Daha fazla kenar boşluğu */
    }
}

@media (max-width: 992px) {

    /* Tablet ve küçük desktop için 2 sütun */
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container iframe {
        height: 350px;
        /* Harita daha görünür olsun */
    }
}

@media (max-width: 768px) {

    /* Mobilde her şey tek sütun ve alt alta */
    .features-grid,
    .testimonials-grid,
    .contact-grid,
    .contact-map-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Bölüm boşluklarını daralt */
    .features,
    .scroll-gallery,
    .faq,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Galeri kaydırma iyileştirmesi */
    .scroll-track {
        gap: 16px;
        padding: 0 20px 20px 20px;
    }

    /* İletişim kartları mobilde ortalansın */
    .contact-card,
    .contact-address-card {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 15px;
        font-size: 48px;
    }

    .contact-info {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {

    /* Küçük mobil ekranlar için tipografi */
    .hero-title {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Galeri resimleri ekrana otursun */
    .scroll-item {
        width: 80vw;
        height: 220px;
    }

    /* Butonlar tam genişlik */
    .contact-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .whatsapp-btn,
    .call-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* SSS alanı */
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    /* Form elemanları */
    .submit-btn {
        font-size: 16px;
        padding: 16px;
    }
}
