/* =========================================================
   SEDIRAILE BAHÇESİ – STYLE.CSS
   Modern & Samimi Çay Bahçesi Web Sitesi Tasarımı
   ========================================================= */

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
:root {
    --green-900: #1a2e1a;
    --green-800: #243824;
    --green-700: #2d4a2d;
    --green-600: #3d6b3d;
    --green-500: #4d8b4d;
    --green-400: #6aad6a;
    --green-300: #8fc98f;
    --green-100: #e8f5e8;
    --green-50: #f4fbf4;
    --brown-900: #2c1a0a;
    --brown-700: #5c3d1e;
    --brown-500: #8b5e3c;
    --brown-300: #c4956a;
    --brown-100: #f5ece3;
    --brown-50: #fdf8f3;
    --cream: #fefaf5;
    --sand: #f7f0e6;
    --text-dark: #1e2d1e;
    --text-mid: #4a5c4a;
    --text-light: #7a8f7a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(30,45,30,.08);
    --shadow-md: 0 8px 32px rgba(30,45,30,.12);
    --shadow-lg: 0 20px 60px rgba(30,45,30,.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ── UTILITY ────────────────────────────────────────── */
.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.hidden {
    display: none !important;
}

.section-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-500);
    background: var(--green-100);
    padding: .3em .9em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 55ch;
    margin-inline: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85em 2em;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: var(--transition);
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(61,107,61,.35);
}

    .btn-primary:hover {
        background: var(--green-700);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(61,107,61,.45);
    }

.btn-outline {
    border: 2px solid rgba(255,255,255,.6);
    color: var(--white);
    backdrop-filter: blur(6px);
}

    .btn-outline:hover {
        background: rgba(255,255,255,.15);
        border-color: var(--white);
        transform: translateY(-2px);
    }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
}

    .navbar.scrolled {
        background: rgba(254,250,245,.97);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-sm);
    }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: .35rem 4%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-900) !important;
    text-shadow: none;
    transition: var(--transition);
}

.navbar-home:not(.scrolled) .nav-logo {
    color: var(--white) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.navbar.scrolled .nav-logo {
    color: var(--green-900) !important;
    text-shadow: none;
}

.logo-icon {
    font-size: 1.4rem;
}

.site-logo-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 72px;
    height: 72px;
}

.logo-text {
    line-height: 1.15;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

    .nav-links a {
        font-size: .9rem;
        font-weight: 500;
        color: var(--text-mid);
        text-shadow: none;
        transition: var(--transition);
        position: relative;
    }

    .navbar-home:not(.scrolled) .nav-links a {
        color: rgba(255,255,255,.92);
        text-shadow: 0 2px 10px rgba(0,0,0,.32);
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green-500);
            border-radius: 2px;
            transition: var(--transition);
        }

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

        .navbar-home:not(.scrolled) .nav-links a::after {
            background: var(--white);
        }

        .navbar-home:not(.scrolled) .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.navbar.scrolled .nav-links a {
    color: var(--text-mid);
    text-shadow: none;
}

    .navbar.scrolled .nav-links a::after {
        background: var(--green-500);
    }

    .navbar.scrolled .nav-links a:hover {
        color: var(--green-700);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .4rem;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--green-900);
        box-shadow: none;
        border-radius: 2px;
        transition: var(--transition);
    }

.navbar-home:not(.scrolled) .hamburger span {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.navbar.scrolled .hamburger span {
    background: var(--green-900);
    box-shadow: none;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1rem 4%;
    border-top: 1px solid var(--green-100);
    box-shadow: var(--shadow-md);
}

    .mobile-menu.open {
        display: flex;
    }

.mob-link {
    padding: .8rem 0;
    font-weight: 500;
    color: var(--text-mid);
    border-bottom: 1px solid var(--green-50);
    transition: var(--transition);
}

    .mob-link:hover {
        color: var(--green-600);
        padding-left: .5rem;
    }

/* ── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=85') center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 160deg, rgba(10,25,10,.72) 0%, rgba(25,50,20,.55) 60%, rgba(45,74,45,.4) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp .9s ease both;
}

.hero-tag {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.4rem;
}

    .hero-title span {
        color: var(--green-300);
    }

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

/* ── ABOUT ──────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 52%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-badge {
    position: absolute;
    top: 45%;
    right: -10px;
    background: var(--green-600);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform: translateY(-50%);
}

.badge-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: .75rem;
    font-weight: 500;
    opacity: .85;
}

.about-desc {
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.feature-item strong {
    display: block;
    color: var(--green-900);
    font-weight: 600;
    margin-bottom: .2rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: .9rem;
}

/* ── MENU ───────────────────────────────────────────── */
.menu {
    padding: 7rem 0;
    background: var(--sand);
}

.menu-tabs {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: .6em 1.6em;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    background: var(--white);
    border: 2px solid transparent;
    transition: var(--transition);
}

    .tab-btn:hover,
    .tab-btn.active {
        background: var(--green-600);
        color: var(--white);
        border-color: var(--green-600);
        box-shadow: 0 4px 16px rgba(61,107,61,.3);
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .menu-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green-400), var(--green-600));
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .menu-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

        .menu-card:hover::before {
            transform: scaleX(1);
        }

.menu-card-icon {
    font-size: 2rem;
    line-height: 1;
}

.menu-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-900);
    margin-bottom: .3rem;
}

.menu-card-body p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-price {
    margin-top: auto;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-600);
    padding-top: .6rem;
    border-top: 1px dashed var(--green-100);
}

/* ── GALLERY ────────────────────────────────────────── */
.gallery {
    padding: 7rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        transition: transform .5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.07);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,10,.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
}

/* ── HOURS ──────────────────────────────────────────── */
.hours {
    padding: 7rem 0;
    background: var(--green-50);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hours-card,
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.hours-desc {
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 0;
    border-bottom: 1px solid var(--green-50);
    font-size: .95rem;
    color: var(--text-mid);
}

    .hours-row:last-child {
        border-bottom: none;
    }

.hours-time {
    font-weight: 600;
    color: var(--green-700);
}

.open-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    background: var(--green-100);
    color: var(--green-700);
    padding: .5em 1.2em;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 1rem;
}

.loc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.loc-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--green-100);
    color: var(--green-700);
    flex-shrink: 0;
    margin-top: .1rem;
}

.loc-icon svg,
.ci-icon svg,
.footer-line-icon svg {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loc-item strong {
    display: block;
    color: var(--green-900);
    font-weight: 600;
    margin-bottom: .25rem;
}

.loc-item p {
    color: var(--text-mid);
    font-size: .9rem;
    line-height: 1.5;
}

/* ── CONTACT ────────────────────────────────────────── */
.contact {
    padding: 7rem 0;
    background: var(--white);
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

    .form-group.full {
        margin-bottom: 1.5rem;
    }

label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--green-900);
    letter-spacing: .02em;
}

input,
textarea {
    width: 100%;
    padding: .85em 1.1em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
    box-shadow: var(--shadow-sm);
}

    input::placeholder, textarea::placeholder {
        color: var(--text-light);
    }

    input:focus, textarea:focus {
        border-color: var(--green-400);
        box-shadow: 0 0 0 4px rgba(77,139,77,.1);
    }

textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1em;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}

.form-success {
    margin-top: 1rem;
    background: var(--green-100);
    color: var(--green-700);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,.75);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .nav-logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,.6);
}

.social-links {
    display: flex;
    gap: .8rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}

    .social-btn:hover {
        background: var(--green-600);
        color: var(--white);
        transform: translateY(-2px);
    }

.footer-links h4 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: .04em;
}

.footer-links ul li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-bottom: .65rem;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}

.footer-line-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-300);
    flex-shrink: 0;
    margin-top: .05rem;
}

    .footer-links ul li a:hover {
        color: var(--green-300);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: .5rem;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
    padding: 7rem 0;
    background: var(--brown-50);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.slider-btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--green-200, #b5d6b5);
    color: var(--green-700);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    z-index: 2;
}

    .slider-btn:hover {
        background: var(--green-600);
        color: var(--white);
        border-color: var(--green-600);
        box-shadow: var(--shadow-md);
        transform: scale(1.08);
    }

    .slider-btn:disabled {
        opacity: .35;
        pointer-events: none;
    }

.slider-track-outer {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-md);
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.testi-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

    .testi-card:hover {
        border-color: var(--green-300);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.testi-stars {
    font-size: 1.1rem;
    color: #f4b942;
    letter-spacing: .1em;
}

.testi-text {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-top: .8rem;
    border-top: 1px solid var(--green-100);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-400), var(--green-600));
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .03em;
}

.testi-author strong {
    display: block;
    font-size: .9rem;
    color: var(--green-900);
    font-weight: 600;
    margin-bottom: .15rem;
}

.testi-author span {
    font-size: .78rem;
    color: var(--text-light);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-200, #b5d6b5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

    .slider-dot.active {
        background: var(--green-600);
        transform: scale(1.35);
    }

@media (max-width: 900px) {
    .testi-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 580px) {
    .testi-card {
        flex: 0 0 100%;
    }

    .slider-wrapper {
        gap: .5rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ── BACK TO TOP ────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green-600);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 99;
    font-weight: 700;
}

    .back-to-top.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--green-700);
        transform: translateY(-3px);
    }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(77,139,77,.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(77,139,77,0);
    }
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap {
        height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-container {
        min-height: 60px;
        padding: .35rem 4%;
    }

    .site-logo-img {
        width: 52px;
        height: 52px;
    }

    .nav-logo {
        font-size: 1.05rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .hero-content {
        padding: 1.2rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-image-wrap {
        height: 280px;
        overflow: hidden;
    }

    .about-badge {
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .about-img-accent {
        border-width: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hours-card, .location-card {
        padding: 2rem 1.5rem;
    }

    .menu {
        padding: 4rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.2rem;
    }

    .footer {
        padding: 3.5rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .6rem;
    }

    .testimonials {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: .3rem 4%;
    }

    .mobile-menu {
        padding: .8rem 4%;
    }

    .hero-title {
        font-size: clamp(1.9rem, 9vw, 3rem);
    }

    .hero-subtitle {
        font-size: .9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: .4rem;
    }

    .tab-btn {
        padding: .5em 1em;
        font-size: .82rem;
    }

    .hours-card, .location-card {
        padding: 1.5rem 1.2rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 260px;
    }

    .section-title {
        word-break: break-word;
    }

    .container {
        width: min(1200px, 94%);
    }
}

.formslar {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.star-rating {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    cursor: pointer;
}

.star-rating span {
    color: #ccc;
    transition: 0.2s;
}

.star-rating span.active,
.star-rating span.hover {
    color: #f4b942;
}

.menu-cat-icon .cat-icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 30%;
    overflow: hidden;
    background: #fff;
    border: 5px solid #e8f5e8;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    flex-shrink: 0;
}

    .menu-cat-icon .cat-icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25d366;
    box-shadow: 0 14px 32px rgba(18, 140, 73, .34);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
    box-shadow: 0 18px 38px rgba(18, 140, 73, .44);
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}
