/* ============================================
   MINIMALIST CORPORATE DESIGN
   Boğa Steakhouse Landing Page
   ============================================ */

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

:root {
    /* Colors */
    --primary: #014945;
    --secondary: #666666;
    --accent: #fcc059;
    --background: #ffffff;
    --background-alt: #f8f8f8;
    --border: #e5e5e5;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: background-color 0.3s ease;
}

.header .container {
    max-width: 100%;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.nav {
    pointer-events: auto;
    width: auto;
    max-width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 22px 45px rgba(18, 18, 18, 0.1);
    backdrop-filter: blur(18px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    margin-right: 0;
}

.header.is-scrolled .nav {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 35px rgba(18, 18, 18, 0.08);
    transform: translateY(-6px);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    overflow: visible;
}

.nav-logo-mark img {
    width: 52px;
    height: auto;
    object-fit: contain;
    filter: none;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.1;
}

.nav-logo-title {
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.nav-logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-left: 1.75rem;
}

.nav-menu li {
    display: flex;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    width: 60%;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent);
    background-color: rgba(252, 192, 89, 0.12);
    box-shadow: 0 10px 20px rgba(252, 192, 89, 0.2);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}

.nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    appearance: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.nav-action--ghost {
    background: rgba(26, 26, 26, 0.06);
    color: var(--text-primary);
}

.nav-action--ghost:hover {
    transform: translateY(-1px);
    background: rgba(26, 26, 26, 0.1);
    box-shadow: 0 10px 18px rgba(26, 26, 26, 0.08);
}

.nav-action--accent {
    background: var(--primary);
    color: var(--background);
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.2);
}

.nav-action--accent:hover {
    background: var(--accent);
    box-shadow: 0 16px 30px rgba(252, 192, 89, 0.35);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.header.is-menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================
   RESERVATION MODAL
   ============================================ */

.reservation-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1400;
}

.reservation-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reservation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(6px);
}

.reservation-modal__dialog {
    position: relative;
    width: min(92vw, 720px);
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1;
}

.reservation-modal.is-open .reservation-modal__dialog {
    transform: translateY(0);
    opacity: 1;
}

.reservation-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.reservation-modal__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
    transition: background-color 0.3s ease;
}

.reservation-modal__close span:first-child {
    transform: rotate(45deg);
}

.reservation-modal__close span:last-child {
    transform: rotate(-45deg);
}

.reservation-modal__close:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.reservation-modal__close:hover span {
    background: var(--accent);
}

.reservation-modal__content {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
}

.reservation-modal__intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(252, 192, 89, 0.16);
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.reservation-modal__title {
    font-size: 1.5rem;
    line-height: 1.3;
}

.reservation-modal__description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reservation-modal__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.reservation-modal__phone::before {
    content: '✆';
    font-size: 1rem;
}

.reservation-modal__phone:hover {
    color: var(--accent);
}

.reservation-modal__phone-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.reservation-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reservation-modal__form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem 1.25rem;
}

.reservation-modal__form-row--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.reservation-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reservation-modal__field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--secondary);
}

.reservation-modal__field input,
.reservation-modal__field select,
.reservation-modal__field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    font-size: 0.85rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.reservation-modal__field input:focus,
.reservation-modal__field select:focus,
.reservation-modal__field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(252, 192, 89, 0.2);
    background: #ffffff;
}

.reservation-modal__field textarea {
    resize: vertical;
    min-height: 120px;
}

.reservation-modal__field--full {
    grid-column: 1 / -1;
}

.reservation-modal__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
}

.reservation-modal__disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    max-width: 420px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    appearance: none;
}

button.btn-primary,
button.btn-secondary {
    border: 2px solid var(--primary);
}

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

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

.btn-primary:hover,
button.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
}

button.btn-secondary {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary:hover,
button.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--background);
}

/* ============================================
   HERO SECTION
   ============================================ */

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.95;
    transition: opacity 0.8s ease, transform 0.8s ease;
    border-radius: 0;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide.active .slide-image {
    opacity: 1;
    transform: scale(1.02);
}

.slide .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 0;
}

.slide .container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: url('images/arka.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 0;
    box-shadow: 10px 0 30px rgba(1, 73, 69, 0.5);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #ffffff;
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Old Hero Styles (kept for content) */
.hero {
    padding: calc(75px + var(--spacing-xl)) 0 var(--spacing-xl);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding: var(--spacing-lg) var(--spacing-xl);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    grid-column: 1;
}

.hero-content::before {
    display: none;
}

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-tag:hover::before {
    left: 100%;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fec159;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.8;
    padding: 0;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
    z-index: 1;
    position: relative;
}

/* Hero Butonları - Turuncu Modern Tasarım */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 1;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Primary Button - Sarı Gradient */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #fcc059 0%, #fdd67a 50%, #fcc059 100%);
    background-size: 200% 200%;
    color: #ffffff;
    box-shadow: 
        0 6px 20px rgba(252, 192, 89, 0.4),
        0 2px 8px rgba(252, 192, 89, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    background-position: 100% 0;
    box-shadow: 
        0 10px 30px rgba(252, 192, 89, 0.6),
        0 4px 12px rgba(252, 192, 89, 0.4);
}

.hero-buttons .btn-primary:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

/* Secondary Button - Sarı Outline */
.hero-buttons .btn-secondary {
    background: rgba(252, 192, 89, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #fcc059;
    color: #fcc059;
    box-shadow: 
        0 6px 20px rgba(252, 192, 89, 0.2),
        inset 0 0 0 0 rgba(252, 192, 89, 0.1);
    text-shadow: none;
    font-weight: 600;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(252, 192, 89, 0.15);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-buttons .btn-secondary:hover::before {
    width: 100%;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(252, 192, 89, 0.2);
    border-color: #fdd67a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(252, 192, 89, 0.4),
        0 4px 12px rgba(252, 192, 89, 0.3),
        inset 0 0 0 0 rgba(252, 192, 89, 0.2);
}

.hero-buttons .btn-secondary:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

/* Buton içindeki ok işareti */
.hero-buttons .btn-primary::after,
.hero-buttons .btn-secondary::after {
    content: '→';
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-primary:hover::after,
.hero-buttons .btn-secondary:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu {
    background-color: var(--background-alt);
    scroll-margin-top: calc(var(--spacing-xl) + 120px);
}

.menu-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    scroll-margin-top: calc(var(--spacing-xl) + 120px);
}

.menu-tabs-sentinel {
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: calc(var(--spacing-sm) * -1);
}

.menu-tabs-shell {
    position: sticky;
    top: calc(var(--spacing-lg) + 72px);
    z-index: 12;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem var(--spacing-md);
    border-radius: 64px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.menu-tabs-shell.is-stuck {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 55px rgba(15, 15, 15, 0.12);
    transform: translateY(-4px);
}

.menu-tabs-shell.is-scrollable .menu-tabs-nav {
    display: inline-flex;
}

.menu-tabs-nav {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(252, 192, 89, 0.4);
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary);
    font-size: 1.3rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.menu-tabs-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(252, 192, 89, 0.7);
    background: rgba(255, 255, 255, 0.95);
}

.menu-tabs-nav:focus-visible {
    outline: 2px solid rgba(252, 192, 89, 0.8);
    outline-offset: 2px;
}

.menu-tabs-nav[disabled] {
    opacity: 0.3;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.menu-tabs {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.25rem;
    border-radius: 999px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tabs::before,
.menu-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-tabs::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.menu-tabs::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.menu-tabs-shell.show-shadow-start .menu-tabs::before {
    opacity: 1;
}

.menu-tabs-shell.show-shadow-end .menu-tabs::after {
    opacity: 1;
}

.menu-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 0 auto;
}

.menu-tab:hover,
.menu-tab:focus-visible {
    color: var(--accent);
    border-color: rgba(252, 192, 89, 0.4);
    box-shadow: 0 12px 20px rgba(252, 192, 89, 0.15);
    outline: none;
}

.menu-tab.active {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-secondary);
    border-color: #fcc059;
    box-shadow: 0 12px 20px rgba(252, 192, 89, 0.15);
    font-weight: 600;
}

.menu-panels {
    position: relative;
}

.menu-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    perspective: 1200px;
}

.menu-card {
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: 1px solid rgba(255, 255, 255, 0.6);
    --card-shadow: 0 25px 45px rgba(15, 15, 15, 0.12);
    --card-glow: 0 0 0 rgba(252, 192, 89, 0);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--spacing-md);
    border-radius: 28px;
    background: var(--card-bg);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(14px);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.menu-card::before,
.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.menu-card::before {
    background: linear-gradient(135deg, rgba(252, 192, 89, 0.16), rgba(255, 255, 255, 0.35));
    mix-blend-mode: soft-light;
    z-index: 1;
}

.menu-card::after {
    background: radial-gradient(circle at top right, rgba(252, 192, 89, 0.3), transparent 55%), radial-gradient(circle at bottom left, rgba(1, 73, 69, 0.1), transparent 60%);
    z-index: -1;
}

.menu-card:hover {
    transform: translateY(-12px) rotateX(4deg);
    border-color: rgba(252, 192, 89, 0.45);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 58px rgba(15, 15, 15, 0.18), 0 0 45px rgba(252, 192, 89, 0.12);
}

.menu-card:hover::before,
.menu-card:hover::after {
    opacity: 1;
}

.menu-card-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.2));
    box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.1);
}

.menu-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.25));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-card-media::after {
    opacity: 1;
}

.menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-media img {
    transform: scale(1.08);
}

.menu-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    position: relative;
}

.menu-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #014945;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.menu-card-description {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    background-color: var(--background);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.gallery-tab {
    background: none;
    border: 2px solid var(--border);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.gallery-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

.gallery-tab.active:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Gallery Content */
.gallery-content {
    position: relative;
}

.gallery-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    background-color: var(--background-alt);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--background);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-video {
    display: none;
}

.lightbox-video.active {
    display: block;
}

.lightbox-video iframe {
    width: 80vw;
    height: 45vw;
    max-width: 1200px;
    max-height: 675px;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--background);
    color: var(--background);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: var(--background);
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--background);
    color: var(--background);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--background);
    color: var(--primary);
}

.lightbox-prev {
    left: var(--spacing-md);
}

.lightbox-next {
    right: var(--spacing-md);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background-color: var(--background-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.contact-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary);
    color: var(--background);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--background);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
    word-wrap: break-word;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1120px) {
    .nav {
        padding: 0.75rem 1.35rem;
        gap: 1.25rem;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .nav-action {
        padding: 0.5rem 1.05rem;
    }
}

@media (max-width: 920px) {
    .nav-logo-mark {
        width: auto;
        height: auto;
    }
    
    .nav-logo-mark img {
        width: 48px;
        height: auto;
    }

    .nav-logo-title {
        font-size: 0.9rem;
    }

    .nav-content {
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    .nav-action {
        padding: 0.5rem 0.95rem;
    }

    .reservation-modal__dialog {
        padding: 2.5rem;
    }

    .reservation-modal__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header .container {
        justify-content: flex-start;
    }

    .nav {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 28px;
        padding: 0.75rem 1.1rem;
        gap: 0.75rem;
    }

    .nav-content {
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        bottom: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.25rem;
        padding: 1.75rem 1.5rem;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        backdrop-filter: blur(16px);
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1002;
        max-height: calc(100vh - 96px);
    }

    .nav.is-open .nav-content {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-left: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
        justify-content: center;
        border-radius: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.85rem;
        margin-left: 0;
    }

    .nav-action {
        width: 100%;
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-toggle {
        display: flex;
    }

    .reservation-modal {
        padding: 1.5rem;
    }

    .reservation-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        padding: 2rem 1.5rem;
        border-radius: 22px;
    }

    .reservation-modal__close {
        top: 12px;
        right: 12px;
    }

    .reservation-modal__content {
        gap: 1.5rem;
    }

    .reservation-modal__form-row {
        grid-template-columns: 1fr;
    }

    .reservation-modal__submit {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: calc(90px + var(--spacing-lg)) 0 calc(var(--spacing-lg) + 60px);
    }
    
    /* Slider mobile adjustments */
    .hero-slider {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .slider-container {
        top: 0;
        height: 100%;
    }
    
    .slide {
        align-items: center;
        justify-content: center;
    }
    
    .slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(1, 73, 69, 0.85) 0%, rgba(1, 73, 69, 0.35) 45%, rgba(1, 73, 69, 0.85) 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    .slide-image {
        width: 100%;
        height: 100%;
        top: 0;
        bottom: auto;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
    }
    
    .slide .container {
        width: 100%;
        height: 100%;
        padding: var(--spacing-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-template-columns: 1fr;
    }
    
    .slide .container {
        z-index: 2;
    }
    
    .slide .container::before {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        padding: var(--spacing-md);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    section {
        padding-bottom: calc(var(--spacing-xl) + 60px);
    }
    
    .hero-content {
        padding: var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-content::before {
        display: none;
    }
    
    .hero-tag {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-xs);
        padding: 0.4rem 1rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
        padding: 0.875rem 1.25rem;
        border-left-width: 2px;
        margin-top: -1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-tabs-shell {
        top: calc(var(--spacing-lg) + 60px);
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
        border-radius: 32px;
    }
    
    .menu-tabs {
        gap: 0.5rem;
    }
    
    .menu-tab {
        flex: 0 0 auto;
        font-size: 0.85rem;
        padding: 0.55rem 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev {
        left: var(--spacing-xs);
    }
    
    .lightbox-next {
        right: var(--spacing-xs);
    }
    
    .lightbox-video iframe {
        width: 90vw;
        height: 50vw;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-slider {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .slider-container {
        top: 0;
        height: 100%;
    }
    
    .slide {
        align-items: center;
        justify-content: center;
    }
    
    .slide-image {
        height: 100%;
    }
    
    .slide .container {
        width: 100%;
        height: 100%;
        padding: var(--spacing-sm);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-template-columns: 1fr;
    }
    
    .slide .container::before {
        display: none;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
        margin-top: -2rem;
        min-height: 70vh;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        border-left-width: 2px;
        margin-top: -1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-xs);
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .menu-item {
        padding: var(--spacing-md);
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .gallery-tab {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ============================================
   FLOATING ACTION BAR
   ============================================ */

body .floating-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: none !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.85rem var(--spacing-md) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12) !important;
    z-index: 9999 !important;
    transition: transform 0.35s ease, opacity 0.35s ease !important;
    margin: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    font-family: inherit !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    white-space: nowrap;
}

.floating-action::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(252, 192, 89, 0.1), rgba(252, 192, 89, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-action:hover::before,
.floating-action:focus-visible::before {
    opacity: 1;
}

.floating-action svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-action:hover svg,
.floating-action:focus-visible svg {
    transform: scale(1.1);
}

.floating-action--phone {
    background: linear-gradient(135deg, rgba(252, 192, 89, 0.12), rgba(252, 192, 89, 0.08)) !important;
    color: var(--accent) !important;
}

.floating-action--phone:hover,
.floating-action--phone:focus-visible {
    background: linear-gradient(135deg, rgba(252, 192, 89, 0.2), rgba(252, 192, 89, 0.15)) !important;
    box-shadow: 0 8px 20px rgba(252, 192, 89, 0.25) !important;
    transform: translateY(-2px) !important;
}

.floating-action--reservation {
    background: var(--primary) !important;
    color: var(--background) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.floating-action--reservation:hover,
.floating-action--reservation:focus-visible {
    background: var(--accent) !important;
    box-shadow: 0 12px 28px rgba(252, 192, 89, 0.35) !important;
    transform: translateY(-3px) !important;
}

.floating-action--directions {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.05)) !important;
    color: var(--text-primary) !important;
}

.floating-action--directions:hover,
.floating-action--directions:focus-visible {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.15), rgba(26, 26, 26, 0.1)) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.floating-action span {
    white-space: nowrap;
}

/* WhatsApp Rezervasyon Butonu */
.whatsapp-reservation-btn {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(37, 211, 102, 0.3) !important;
    z-index: 9998 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

.whatsapp-reservation-btn:hover,
.whatsapp-reservation-btn:focus-visible {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 16px rgba(37, 211, 102, 0.4) !important;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%) !important;
}

.whatsapp-reservation-btn svg {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-reservation-btn:hover svg,
.whatsapp-reservation-btn:focus-visible svg {
    transform: scale(1.1) rotate(5deg) !important;
}

.whatsapp-reservation-btn span {
    display: block !important;
    text-align: left !important;
    line-height: 1.3 !important;
}

@media (max-width: 768px) {
    .whatsapp-reservation-btn {
        bottom: 100px !important;
        right: 16px !important;
        padding: 0.85rem 1.25rem !important;
        font-size: 0.8rem !important;
        gap: 0.6rem !important;
    }
    
    .whatsapp-reservation-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .whatsapp-reservation-btn span {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 768px) {
    body .floating-actions {
        display: flex !important;
        padding: 0.75rem var(--spacing-sm) !important;
        gap: 0.5rem !important;
    }

    .floating-action {
        padding: 0.65rem 1rem !important;
        width: auto !important;
        height: auto !important;
        min-height: 48px !important;
        border-radius: 999px !important;
        font-size: 0.8rem !important;
        gap: 0.4rem !important;
        flex: 1 !important;
        max-width: 120px !important;
    }

    .floating-action span {
        display: inline !important;
        white-space: nowrap !important;
    }

    .floating-action svg {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }

    .floating-action--phone {
        color: #014945 !important;
    }

    .floating-action--phone svg {
        color: #014945 !important;
    }

    .footer {
        padding: var(--spacing-lg) 0 calc(var(--spacing-md) + 100px) !important;
    }
}

@media (max-width: 480px) {
    body .floating-actions {
        padding: 0.65rem 0.5rem !important;
        gap: 0.4rem !important;
    }

    .floating-action {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.75rem !important;
        gap: 0.35rem !important;
        min-height: 44px !important;
        max-width: 110px !important;
    }

    .floating-action svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

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

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
