/* =====================================================
   ALTINYAYLA YEMEKÇİLİK - ANA STİL DOSYASI
   Premium Red Theme / Sivas Catering
   ===================================================== */

/* --- CSS Variables --- */
:root {
    --gold: #B91C1C;
    --gold-light: #DC2626;
    --gold-dark: #991B1B;
    --gold-50: #FEF2F2;
    --gold-100: #FEE2E2;
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --dark-800: #0F0F1A;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --bg-primary: #FFFFFF;
    --red: #DC2626;
    --green: #16A34A;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
    --shadow-gold: 0 4px 20px rgba(185, 28, 28, .2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
html { overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s, visibility .5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon svg {
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-plate {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: preloaderDraw 2s ease forwards;
}

.preloader-steam {
    animation: preloaderSteam 1.5s ease-in-out infinite;
}

.preloader-steam:nth-child(3) {
    animation-delay: .3s;
}

@keyframes preloaderDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes preloaderPulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes preloaderSteam {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: .7;
    }

    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.preloader-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.preloader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: preloaderDot 1.2s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) {
    animation-delay: .2s;
}

.preloader-dots span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes preloaderDot {

    0%,
    80%,
    100% {
        opacity: .3;
        transform: scale(.8);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --- Topbar --- */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(185, 28, 28, .15);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 24px;
}

.topbar-left a {
    color: rgba(255, 255, 255, .75);
}

.topbar-left a:hover {
    color: var(--gold);
}

.topbar-left i {
    color: var(--gold);
    margin-right: 6px;
    font-size: .75rem;
}

.topbar-social {
    display: flex;
    gap: 12px;
}

.topbar-social a {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.topbar-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(185, 28, 28, .1);
}

.topbar-hidden {
    display: none;
}

/* --- Header --- */
/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all .4s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

/* Logo Switching */
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* Transparent Header (Anasayfa) */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.header-transparent .nav-menu>li>a {
    color: rgba(255, 255, 255, .9);
}

.header-transparent .nav-menu>li>a:hover,
.header-transparent .nav-menu>li>a.active {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

/* Mobilde menü açıldığında her zaman koyu yazı */
@media (max-width: 768px) {
    .header-transparent .hamburger {
        display: block;
        z-index: 1002;
        position: relative;
    }

    .header-transparent .hamburger span {
        background: #fff;
        width: 26px;
        height: 3px;
    }

    .header-transparent.scrolled .hamburger span {
        background: var(--dark);
    }

    .hamburger.active span {
        background: var(--dark) !important;
    }

    /* Menü açılınca linkler koyu olmalı */
    .header-transparent .nav-menu.open>li>a {
        color: var(--gray-700) !important;
    }

    .header-transparent .nav-menu.open>li>a:hover,
    .header-transparent .nav-menu.open>li>a.active {
        color: var(--gold-dark) !important;
        background: var(--gold-50) !important;
    }

    /* Menü arka planı beyaz */
    .header-transparent .nav-menu {
        background: var(--white);
    }
}

.header-transparent .hamburger span {
    background: #fff;
}

.header-transparent .btn-nav {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.header-transparent .btn-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.header-transparent .logo-dark {
    display: none;
}

.header-transparent .logo-light {
    display: block;
}

/* Dropdown beyaz kalmalı */
.header-transparent .dropdown-menu {
    background: var(--white);
}

.header-transparent .dropdown-menu a {
    color: var(--gray-700);
}

.header-transparent .dropdown-menu a:hover {
    color: var(--gold-dark);
    background: var(--gold-50);
}

/* Scroll sonrası beyaza dön */
.header-transparent.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.header-transparent.scrolled .nav-menu>li>a {
    color: var(--gray-700);
}

.header-transparent.scrolled .nav-menu>li>a:hover,
.header-transparent.scrolled .nav-menu>li>a.active {
    color: var(--gold-dark);
    background: var(--gold-50);
}

.header-transparent.scrolled .hamburger span {
    background: var(--dark);
}

.header-transparent.scrolled .btn-nav {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.header-transparent.scrolled .logo-dark {
    display: block;
}

.header-transparent.scrolled .logo-light {
    display: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand .logo-img {
    height: 50px;
}

.logo-text-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text-sub {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 500;
    margin-left: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-menu>li>a {
    padding: 10px 16px;
    font-size: .925rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--gold-dark);
    background: var(--gold-50);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown .fa-chevron-down {
    font-size: .65rem;
    margin-left: 4px;
    transition: transform .3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-600);
    font-size: .9rem;
}

.dropdown-menu li a:hover {
    background: var(--gold-50);
    color: var(--gold-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: .925rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(185, 28, 28, .35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

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

.btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
}

.btn-nav {
    padding: 10px 22px;
    font-size: .85rem;
}

.btn i {
    font-size: .85em;
}

/* --- Sections --- */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-50);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid var(--gold-100);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 14px;
    position: relative;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== HERO VIDEO ===== */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(26, 26, 46, 0.7) 0%,
            rgba(26, 26, 46, 0.5) 40%,
            rgba(26, 26, 46, 0.75) 100%);
    z-index: 1;
}

.hero-video-wrapper .container {
    position: relative;
    z-index: 2;
}

.hero-video-wrapper .hero-content {
    text-align: center;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--gold-light);
}

.hero-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.35;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--gold-light);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -50%;
    }

    100% {
        top: 150%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-video-wrapper {
        height: 100vh;
        min-height: 100vh;
    }

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

    .hero-subtitle {
        font-size: .95rem;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* --- Services --- */
.section-services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-50);
    border: 2px solid var(--gold-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

.service-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.service-card-desc {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-link:hover {
    gap: 10px;
}

.service-card-link i {
    font-size: .75rem;
    transition: var(--transition);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .9;
}

.about-content .section-badge {
    margin-bottom: 10px;
}

.about-content .section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: .925rem;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- Counters --- */
.section-counters {
    padding: 70px 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.counters-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(185,28,28,.1)"/></svg>');
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.counter-item {
    text-align: center;
}

.counter-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.counter-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
    display: inline;
    margin-left: 2px;
}

.counter-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- Menu CTA --- */
.section-menu-cta {
    padding: 40px 0;
}

.menu-cta-card {
    background: linear-gradient(135deg, var(--gold-50), var(--white));
    border: 2px solid var(--gold-100);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.menu-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-cta-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.menu-cta-content h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.menu-cta-content p {
    color: var(--text-light);
    font-size: .9rem;
    margin: 0;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .35s;
    color: var(--white);
}

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

.gallery-item-overlay i {
    font-size: 1.5rem;
}

.gallery-item-overlay span {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Testimonials --- */
.section-testimonials {
    background: var(--gray-50);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin: 10px;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: .9rem;
    margin-right: 2px;
}

.testimonial-stars i.empty {
    color: var(--gray-300);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold-100);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-100);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-50);
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-100);
}

.testimonial-author strong {
    display: block;
    font-size: .95rem;
    color: var(--dark);
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--gray-500);
}

/* --- Clients --- */
.section-clients {
    padding: 50px 0;
    border-top: 1px solid var(--gray-100);
}

.clients-title {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

.client-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(.5);
    transition: var(--transition);
    padding: 10px;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gray-300);
}

.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.blog-card-meta span {
    font-size: .8rem;
    color: var(--gray-500);
}

.blog-card-meta i {
    margin-right: 4px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--dark);
}

.blog-card-body h3 a:hover {
    color: var(--gold-dark);
}

.blog-card-body p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- FAQ --- */
.section-faq {
    background: var(--gray-50);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--gold-100);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-question i {
    color: var(--gold);
    transition: transform .3s;
    font-size: .85rem;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
}

/* --- CTA Section --- */
.section-cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(185, 28, 28, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(185, 28, 28, .1) 0%, transparent 60%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

/* --- Footer --- */
.footer {
    background: var(--dark-800);
    color: rgba(255, 255, 255, .7);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, .6);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
}

.footer-credit a {
    color: var(--gold);
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .6);
    }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* --- Alerts --- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-danger {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-warning {
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.alert-info {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.btn-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: .5;
    line-height: 1;
}

.btn-close::after {
    content: '×';
}

.btn-close:hover {
    opacity: 1;
}

/* --- Utility --- */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .topbar-right {
        margin-left: auto;
    }

    .navbar {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        transform: translateX(100%);
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right .4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .btn-nav {
        display: none;
    }

    /* Transparent header mobile fix */
    .header-transparent {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .header-transparent .hamburger {
        display: block;
        z-index: 1002;
    }

    .header-transparent .hamburger span {
        background: #fff;
    }

    .header-transparent.scrolled .hamburger span {
        background: var(--dark);
    }

    /* Mobilde menü açıldığında hamburger her zaman koyu */
    .hamburger.active span {
        background: var(--dark) !important;
    }

    /* Transparent header'da body padding düzeltme */
    .header-transparent+main {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-slide {
        height: 80vh;
        min-height: 450px;
    }

    .hero-swiper {
        height: 80vh;
        min-height: 450px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .counter-value {
        font-size: 2.2rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .menu-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .menu-cta-content {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 84px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-slide {
        height: 70vh;
    }

    .hero-swiper {
        height: 70vh;
    }

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

    .counters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ===== HOMEPAGE ENHANCED ===== */

/* --- Hero Trust Badges --- */
.hero-trust-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .15);
}

.trust-badge i {
    color: var(--gold-light);
    font-size: .9rem;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* --- Advantages Strip --- */
.section-advantages {
    padding: 36px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-50);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.advantage-item strong {
    display: block;
    font-size: .88rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.advantage-item span {
    font-size: .78rem;
    color: var(--text-light);
}

/* --- Service Cards Enhanced --- */
.service-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    display: block;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .5s;
}

.service-card:hover .service-card-bg {
    opacity: .12;
}

/* --- Today Menu Section --- */
.section-today-menu {
    background: var(--gray-50);
}

.today-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.today-menu-list {
    margin-top: 20px;
}

.today-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.today-menu-item:last-child {
    border-bottom: none;
}

.tmi-cat {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gold);
    background: var(--gold-50);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.tmi-name {
    font-size: .95rem;
    font-weight: 500;
    color: var(--dark);
}

.tmv-circle {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-50), var(--white));
    border: 2px solid var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatCircle 4s ease-in-out infinite;
}

.tmv-inner {
    text-align: center;
    color: var(--gold-dark);
}

.tmv-inner i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.tmv-inner strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.tmv-inner span {
    font-size: .85rem;
    color: var(--text-light);
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --- Testimonial Quote Icon --- */
.testimonial-quote {
    color: var(--gold-100);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

/* --- FAQ Home Grid --- */
.faq-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: flex-start;
}

.faq-home-left p {
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tmv-circle {
        width: 220px;
        height: 220px;
    }

    .faq-home-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-trust-badges {
        gap: 8px;
    }

    .trust-badge {
        font-size: .75rem;
        padding: 6px 12px;
    }

    .today-menu-visual {
        display: none;
    }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        z-index: 9999;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--dark);
        margin: 5px 0;
        transition: all .3s ease;
    }

    .header-transparent .hamburger span {
        background: #fff;
    }

    .header-transparent.scrolled .hamburger span {
        background: var(--dark);
    }

    .hamburger.active span {
        background: var(--dark) !important;
    }

    .nav-menu>li>a,
    .header-transparent .nav-menu>li>a {
        color: var(--gray-700) !important;
    }

    .nav-menu>li>a:hover,
    .header-transparent .nav-menu>li>a:hover {
        color: var(--gold-dark) !important;
        background: var(--gold-50) !important;
    }
}
/* ===== POPUP ===== */
.popup-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: popupFadeIn .3s ease;
}
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-modal {
    background: var(--white); border-radius: 16px;
    max-width: 500px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    overflow: hidden; position: relative;
    animation: popupSlideUp .4s ease;
}
@keyframes popupSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup-close {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,.5); color: #fff;
    border: none; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s ease;
}
.popup-close:hover { background: var(--gold); }
.popup-image {
    display: flex; align-items: center; justify-content: center;
    padding: 24px 24px 0;
}
.popup-image img {
    max-width: 100%; max-height: 250px;
    object-fit: contain; border-radius: 12px;
}
.popup-content { padding: 28px; text-align: center; }
.popup-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.popup-body { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.popup-body h3 { color: var(--gold-dark); margin-bottom: 8px; }
.popup-body strong { color: var(--gold-dark); }
.popup-btn { display: inline-flex; margin-top: 8px; }

@media (max-width: 480px) {
    .popup-modal { max-width: 95%; }
    .popup-content { padding: 20px; }
    .popup-title { font-size: 1.1rem; }
}