/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left span {
    margin-right: 20px;
    opacity: 0.9;
}

.top-bar-left span i {
    margin-right: 6px;
    color: var(--primary);
}

.top-bar-right a {
    color: #fff;
    margin-left: 14px;
    font-size: 14px;
    transition: color 0.3s;
}

.top-bar-right a:hover { color: var(--primary); }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.navbar-text-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary);
}

.navbar-text-logo:hover { color: var(--primary); }

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary);
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(200,169,126,0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

/* Dropdown */
.nav-item.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 8px 0;
    z-index: 1001;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(200,169,126,0.1);
    color: var(--primary);
    padding-left: 25px;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1002;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s;
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO / SLIDER ===== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-content .btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .btn:hover {
    background: #fff;
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--secondary);
    color: #fff;
}

.section-gray {
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 17px;
    color: #777;
    max-width: 600px;
    margin: 10px auto 0;
}

/* ===== FEATURED ITEMS ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.menu-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.menu-card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.menu-card-body {
    padding: 20px;
}

.menu-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.menu-card-body p {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
    line-height: 1.5;
}

.menu-card-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.menu-card-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 64px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.about-text .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.about-text .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== MENU PAGE ===== */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.menu-cat-btn {
    padding: 10px 28px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text);
}

.menu-cat-btn:hover, .menu-cat-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    min-width: 0; /* grid item taşmasını önle (alerjen paneli açılınca komşuya binmesin) */
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.menu-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-item-img-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0ece4, #e8e0d4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 28px;
}

.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h4 { font-size: 17px; margin-bottom: 5px; }
.menu-item-info p { font-size: 13px; color: #888; line-height: 1.5; }

.menu-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    font-family: var(--font-heading);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
    color: #fff;
    font-size: 32px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.3s;
}

.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    border: none;
    background: rgba(255,255,255,0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), #a87d4e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: #777; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control {
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.btn-primary {
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contact-map {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 17px;
    opacity: 0.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { opacity: 0.6; }

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 60px 0;
}

.page-content .content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.page-content .content-body h2 { margin: 30px 0 15px; font-size: 28px; }
.page-content .content-body h3 { margin: 25px 0 12px; font-size: 22px; }
.page-content .content-body p { margin-bottom: 15px; }
.page-content .content-body img { border-radius: 12px; margin: 20px 0; }
.page-content .content-body ul, .page-content .content-body ol {
    margin: 15px 0;
    padding-left: 25px;
}
.page-content .content-body li { margin-bottom: 8px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s;
}
.footer-links li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-hours { font-size: 14px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ===== POPUP ===== */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-content {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    overflow: hidden;
    animation: popupIn 0.4s ease;
}

.popup-center { }
.popup-bottom {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 16px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    border: none;
    background: none;
    color: #666;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.popup-close:hover { background: #f0f0f0; }

.popup-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.popup-title {
    font-size: 22px;
    padding: 20px 25px 5px;
}

.popup-text {
    padding: 10px 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.popup-btn {
    display: inline-block;
    margin: 5px 25px 25px;
    padding: 12px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.popup-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 32px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===== ALERT ===== */
.alert {
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.lang-switcher-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* ===== RTL (Arabic) SUPPORT ===== */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .top-bar-left span {
    margin-right: 0;
    margin-left: 20px;
}

html[dir="rtl"] .top-bar-left span i {
    margin-right: 0;
    margin-left: 6px;
}

html[dir="rtl"] .top-bar-right a {
    margin-left: 0;
    margin-right: 14px;
}

html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

html[dir="rtl"] .dropdown-menu li a:hover {
    padding-left: 20px;
    padding-right: 25px;
}

html[dir="rtl"] .breadcrumb {
    direction: rtl;
}

html[dir="rtl"] .menu-item-info {
    text-align: right;
}

html[dir="rtl"] .menu-item-price {
    text-align: left;
}

html[dir="rtl"] .section-header {
    text-align: right;
}

html[dir="rtl"] .footer-col {
    text-align: right;
}

html[dir="rtl"] .footer-col ul li a i {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .contact-info-item i {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .lang-switcher-btn {
    direction: ltr;
}

.lang-switcher-btn .lang-flag { font-size: 16px; }
.lang-switcher-btn .lang-code { text-transform: uppercase; font-weight: 600; }
.lang-switcher-btn i { font-size: 10px; margin-left: 2px; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 160px;
    padding: 6px 0;
    z-index: 1000;
    display: none;
}

.lang-dropdown.active { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.lang-option:hover { background: #f5f5f5; }
.lang-option.active { background: #f0ebe4; font-weight: 600; color: var(--primary); }
.lang-option .lang-flag { font-size: 18px; }

/* ===== YOUTUBE EMBED ===== */
.youtube-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CONTACT GRID FULL (no form) ===== */
.contact-grid-full {
    grid-template-columns: 1fr !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== POWERED BY ===== */
.powered-by {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.5;
}

.powered-by a {
    color: inherit;
    text-decoration: underline;
}

.powered-by a:hover { opacity: 0.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 40px; }
    .section-header h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    .lang-switcher-mobile {
        display: flex;
        padding: 14px 15px;
        gap: 8px;
        flex-wrap: wrap;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
    }
    .lang-switcher-mobile a {
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 13px;
        background: #f0f0f0;
        color: #333;
    }
    .lang-switcher-mobile a.active {
        background: var(--primary);
        color: #fff;
    }
    
    .navbar-toggle { display: flex; }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        gap: 0;
        overflow-y: auto;
        z-index: 1001;
    }
    
    .navbar-menu.active { right: 0; }
    
    .nav-link {
        width: 100%;
        padding: 14px 15px;
        border-radius: 8px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        background: #f8f8f8;
        border-radius: 8px;
        margin-top: 5px;
    }
    
    .hero { height: 65vh; min-height: 400px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .page-banner h1 { font-size: 30px; }
    .page-banner { padding: 60px 0 40px; }
    
    .menu-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .menu-item { flex-direction: column; }
    .menu-item-img, .menu-item-img-placeholder { width: 100%; height: 160px; }
}
