/* ============================================
   ROYAL TABLE - Premium Catering Website
   Professional Design System
   ============================================ */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
    /* Premium Gold Palette - Real Gold Tones */
    --gold-dark: #8B7355;
    --gold-primary: #B8860B;
    --gold-medium: #C9A227;
    --gold-light: #D4AF37;
    --gold-pale: #E8D5A3;
    --gold-cream: #F5ECD7;

    /* Gold Gradients */
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 25%, #E8D5A3 50%, #D4AF37 75%, #B8860B 100%);
    --gold-gradient-subtle: linear-gradient(135deg, #C9A227 0%, #D4AF37 50%, #C9A227 100%);
    --gold-shine: linear-gradient(90deg, transparent 0%, rgba(232,213,163,0.4) 50%, transparent 100%);

    /* Dark Theme (Default) */
    --bg-primary: #0D0D0D;
    --bg-secondary: #141414;
    --bg-tertiary: #1A1A1A;
    --bg-card: #1E1E1E;
    --bg-card-hover: #252525;

    /* Text Colors */
    --text-primary: #FAFAFA;
    --text-secondary: #B3B3B3;
    --text-muted: #808080;
    --text-on-gold: #1A1A1A;

    /* Borders & Lines */
    --border-color: rgba(184, 134, 11, 0.2);
    --border-hover: rgba(184, 134, 11, 0.4);
    --divider: rgba(184, 134, 11, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.2);
    --shadow-gold-lg: 0 8px 40px rgba(184, 134, 11, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold-hover: 0 15px 50px rgba(184, 134, 11, 0.4);

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Light Theme */
.light-theme {
    --bg-primary: #FDFCFA;
    --bg-secondary: #F7F5F2;
    --bg-tertiary: #EFEBE5;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F7F5F2;

    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;

    --border-color: rgba(184, 134, 11, 0.15);
    --border-hover: rgba(184, 134, 11, 0.3);
    --divider: rgba(184, 134, 11, 0.1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rubik', 'Heebo', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', 'Heebo', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: 0;
}

.display-1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
}

.display-2 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

.display-3 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Gold Text */
.text-gold {
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-solid {
    color: var(--gold-light);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-sm { max-width: 900px; }
.container-lg { max-width: 1440px; }

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Gold Decorative Line */
.gold-line {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient-subtle);
    margin: 20px auto;
    position: relative;
}

.gold-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 50%;
}

.gold-line-left {
    margin: 20px 0 20px auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.light-theme .navbar.scrolled {
    background: rgba(253, 252, 250, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo .crown-icon {
    width: 48px;
    height: auto;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    direction: ltr;
    unicode-bidi: bidi-override;
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 18px;
    left: 18px;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* CTA Button in Nav */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1002;
    padding: 80px 30px 30px;
    transition: right var(--transition-medium);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.4rem;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--divider);
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--gold-light);
    padding-right: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    transition: left 0.5s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--text-on-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(13, 13, 13, 0.5) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
    z-index: -1;
}

.light-theme .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(253, 252, 250, 0.7) 0%,
        rgba(253, 252, 250, 0.5) 50%,
        rgba(253, 252, 250, 0.9) 100%
    );
}

/* Particles Container */
#particles-container,
#particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Particle Animation */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(odd) {
    width: 4px;
    height: 4px;
    background: var(--gold-pale);
}

.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-medium), var(--gold-light));
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero .lead {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--divider);
}

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

.hero-stat-number {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--gold-light);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-medium);
    text-align: center;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Service Card */
.service-card {
    text-align: center;
    padding: 40px 32px;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gold-light);
    transition: var(--transition-medium);
}

.service-card:hover .service-card-icon {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
}

/* Feature Card */
.feature-card {
    display: flex;
    gap: 20px;
    padding: 28px;
}

.feature-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    color: var(--gold-light);
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
}

/* Testimonial Card */
.testimonial-card {
    padding: 36px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Rubik', sans-serif;
    font-size: 5rem;
    color: var(--gold-light);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Price Card */
.price-card {
    text-align: center;
    padding: 48px 36px;
    position: relative;
}

.price-card.featured {
    border-color: var(--gold-light);
    transform: scale(1.02);
}

.price-card.featured::before {
    content: 'הכי פופולרי';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.price-card-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.price-card-price {
    margin-bottom: 24px;
}

.price-card-price .amount {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
}

.price-card-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-card-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-card-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--divider);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-card-features li:last-child {
    border-bottom: none;
}

.price-card-features i {
    color: var(--gold-light);
    margin-left: 10px;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

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

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.gallery-filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: rgba(184, 134, 11, 0.1);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-item-title {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: right;
}

.faq-question h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--gold-light);
    font-size: 1rem;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B8860B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--divider);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--divider);
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    direction: ltr;
    unicode-bidi: bidi-override;
    background: var(--gold-gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

/* WhatsApp */
.footer-social a[aria-label="WhatsApp"] {
    background: #25D366;
}

.footer-social a[aria-label="WhatsApp"]:hover {
    background: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Instagram */
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a[aria-label="Instagram"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4);
}

/* Facebook */
.footer-social a[aria-label="Facebook"] {
    background: #1877F2;
}

.footer-social a[aria-label="Facebook"]:hover {
    background: #166FE5;
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

/* TikTok */
.footer-social a[aria-label="TikTok"] {
    background: #000000;
    position: relative;
    overflow: hidden;
}

.footer-social a[aria-label="TikTok"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #69C9D0, #EE1D52);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a[aria-label="TikTok"]:hover::before {
    opacity: 1;
}

.footer-social a[aria-label="TikTok"] i {
    position: relative;
    z-index: 1;
}

.footer-social a[aria-label="TikTok"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(238, 29, 82, 0.4);
}

.footer-links h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    border-color: var(--gold-light);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.active {
    display: block;
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent p {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Reveal on Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

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

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

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .navbar {
        padding: 16px 20px;
    }

    .navbar.scrolled {
        padding: 12px 20px;
    }

    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .nav-cta {
        display: none;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .price-card.featured {
        transform: none;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .display-2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .card {
        padding: 24px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-medium);
}

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

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-card-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

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

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--divider);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--divider);
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.sidebar-widget a:hover {
    color: var(--gold-light);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.tag:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--divider);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-md);
    color: var(--gold-light);
    font-size: 1.2rem;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method a,
.contact-method p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--gold-light);
    margin: 48px 0 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin: 32px 0 16px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.last-updated {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.last-updated i {
    color: var(--gold-light);
    font-size: 1.2rem;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1.6rem;
}

.value-card h4 {
    margin-bottom: 10px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-info {
    padding: 24px;
}

.team-info h4 {
    margin-bottom: 4px;
}

.team-info span {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-right: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--gold-gradient-subtle);
}

.timeline-item {
    position: relative;
    padding: 0 40px 48px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    right: -7px;
    width: 16px;
    height: 16px;
    background: var(--gold-light);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.timeline-year {
    font-family: 'Rubik', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.timeline-item h4 {
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-right: 30px;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--divider);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: ltr;
}

.service-detail.reverse > * {
    direction: rtl;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    margin: 24px 0;
}

.service-detail-content li {
    padding: 10px 0;
    padding-right: 28px;
    position: relative;
    color: var(--text-secondary);
}

.service-detail-content li::before {
    content: '\2713';
    position: absolute;
    right: 0;
    color: var(--gold-light);
    font-weight: bold;
}

@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail.reverse {
        direction: rtl;
    }
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-lg);
}

.event-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.event-card:hover .event-card-bg {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transition: var(--transition-medium);
}

.event-card:hover .event-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(184, 134, 11, 0.3) 100%
    );
}

.event-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 10;
    text-align: center;
}

.event-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.2);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gold-light);
    transition: var(--transition-medium);
}

.event-card:hover .event-card-icon {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    transform: scale(1.1);
}

.event-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.event-card:hover .event-card-btn {
    gap: 12px;
}

.event-card-btn i {
    transition: var(--transition-fast);
}

/* ============================================
   HERO ENHANCEMENTS
   ============================================ */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ============================================
   GOLD ORNAMENT
   ============================================ */
.gold-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 25px;
}

.gold-ornament::before,
.gold-ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold-gradient-subtle);
}

.gold-ornament i {
    color: var(--gold-light);
    font-size: 1.2rem;
}

/* ============================================
   CARD ENHANCEMENTS
   ============================================ */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--gold-light);
    transition: var(--transition-medium);
}

.card:hover .card-icon {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   WHATSAPP & PHONE BUTTONS
   ============================================ */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: var(--gold-gradient-subtle);
    color: var(--text-on-gold);
    border: none;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ============================================
   SOCIAL MEDIA ICONS - REAL COLORS
   ============================================ */
.footer-social a.social-whatsapp,
.social-links a.social-whatsapp,
a[aria-label="WhatsApp"] {
    background: #25D366 !important;
    color: white !important;
    border-color: #25D366 !important;
}

.footer-social a.social-whatsapp:hover,
.social-links a.social-whatsapp:hover,
a[aria-label="WhatsApp"]:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-social a.social-instagram,
.social-links a.social-instagram,
a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    border-color: #dc2743 !important;
}

.footer-social a.social-instagram:hover,
.social-links a.social-instagram:hover,
a[aria-label="Instagram"]:hover {
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4);
}

.footer-social a.social-facebook,
.social-links a.social-facebook,
a[aria-label="Facebook"] {
    background: #1877F2 !important;
    color: white !important;
    border-color: #1877F2 !important;
}

.footer-social a.social-facebook:hover,
.social-links a.social-facebook:hover,
a[aria-label="Facebook"]:hover {
    background: #166FE5 !important;
    border-color: #166FE5 !important;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.footer-social a.social-tiktok,
.social-links a.social-tiktok,
a[aria-label="TikTok"] {
    background: #000000 !important;
    color: white !important;
    border-color: #000000 !important;
    position: relative;
}

.footer-social a.social-tiktok::before,
.social-links a.social-tiktok::before,
a[aria-label="TikTok"]::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #69C9D0, #EE1D52);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a.social-tiktok:hover::before,
.social-links a.social-tiktok:hover::before,
a[aria-label="TikTok"]:hover::before {
    opacity: 1;
}

/* ============================================
   ENHANCED FORM STYLES
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D4AF37' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 24px;
    padding-left: 45px;
}

select.form-control option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 12px;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

input[type="date"].form-control {
    cursor: pointer;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE NAV CTA
   ============================================ */
.mobile-nav-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--divider);
}

/* ============================================
   MENU MODAL
   ============================================ */
.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-gold-lg);
}

.menu-modal-header {
    padding: 30px 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-modal-header h2 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.menu-modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.menu-modal-close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-modal-close:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

.menu-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    flex: 1;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h3 i {
    font-size: 1rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.menu-item {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.menu-item.selected {
    background: rgba(184, 134, 11, 0.15);
    border-color: var(--gold-primary);
}

.menu-item.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.menu-item h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-family: 'Heebo', sans-serif;
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.menu-item .price {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.menu-modal-footer {
    padding: 20px 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

#orderSummary {
    display: none;
    margin-bottom: 20px;
}

#orderSummary h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.selected-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.selected-item {
    background: var(--gold-primary);
    color: var(--bg-primary);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-modal-actions {
    display: flex;
    gap: 15px;
}

.menu-modal-actions .btn {
    flex: 1;
}

@media (max-width: 768px) {
    .menu-modal-content {
        max-height: 95vh;
    }

    .menu-modal-header,
    .menu-modal-body,
    .menu-modal-footer {
        padding: 20px;
    }

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

    .menu-modal-actions {
        flex-direction: column;
    }
}

/* ============================================
   GOLD PARTICLES
   ============================================ */
.gold-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */
.rating-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

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

.rating-number {
    font-family: 'Rubik', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 12px 0;
}

.rating-stars i {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-bar-label {
    width: 60px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--gold-gradient-subtle);
    border-radius: 4px;
}

.rating-bar-percent {
    width: 40px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card.featured {
    grid-column: span 2;
    border-color: var(--gold-light);
}

@media (max-width: 992px) {
    .rating-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .hero-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

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

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

    .event-card {
        height: 320px;
    }

    .event-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .event-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .event-card {
        height: 280px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .gold-ornament::before,
    .gold-ornament::after {
        width: 40px;
    }
}

/* ============================================
   RESPONSIVE INLINE GRID OVERRIDES
   ============================================ */
@media (max-width: 1200px) {
    .events-section [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .kashrut-badge {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .events-section [style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   MOBILE-FIRST COMPREHENSIVE FIXES
   All modern phones (320px - 430px+)
   ============================================ */

/* Safe area for notched phones (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
    .navbar {
        padding-left: calc(20px + env(safe-area-inset-left));
        padding-right: calc(20px + env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .menu-modal {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Tablet (max 992px) */
@media (max-width: 992px) {
    /* All inline grids to 2 columns */
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    [style*="display: grid"][style*="repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Inline flex containers stack */
    [style*="display: flex"][style*="gap: 20px"] {
        flex-wrap: wrap;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    /* --- GLOBAL --- */
    body {
        font-size: 15px;
    }

    section {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* --- NAVBAR --- */
    .navbar {
        padding: 12px 16px;
    }

    .navbar.scrolled {
        padding: 10px 16px;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-logo .logo-img {
        height: 38px !important;
    }

    .nav-logo h1 {
        font-size: 1.15rem;
    }

    /* --- HERO --- */
    .hero {
        min-height: 100svh;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-logo {
        height: 80px !important;
        margin-bottom: 16px !important;
    }

    .hero h1,
    .hero .split-text {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
        letter-spacing: 2px !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* --- KASHRUT BADGE --- */
    .kashrut-badge {
        flex-direction: column !important;
        text-align: center !important;
        gap: 24px !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    .kashrut-seal {
        width: 110px !important;
        height: 110px !important;
    }

    .kashrut-seal i {
        font-size: 2.2rem !important;
    }

    .kashrut-info h3 {
        font-size: 1.5rem !important;
    }

    .kashrut-info p {
        font-size: 0.95rem !important;
    }

    /* --- STATS --- */
    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    [style*="grid-template-columns: repeat(4"] > div {
        padding: 20px 10px !important;
    }

    .counter {
        font-size: 2.5rem !important;
    }

    [style*="grid-template-columns: repeat(4"] p {
        font-size: 0.9rem !important;
    }

    /* --- EVENT CARDS --- */
    .events-section {
        padding: 50px 0 !important;
    }

    .event-card {
        height: 300px;
    }

    .event-card-content {
        padding: 24px 20px;
    }

    .event-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .event-card h3 {
        font-size: 1.25rem;
    }

    .event-card p {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    /* --- CARDS (Why Choose Us etc.) --- */
    .card {
        padding: 28px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.92rem;
    }

    /* --- TESTIMONIAL CARDS --- */
    [style*="grid-template-columns: repeat(3"] > .card {
        padding: 24px 18px;
    }

    /* --- CTA SECTION --- */
    [style*="max-width: 800px"] {
        padding: 0 8px !important;
    }

    [style*="max-width: 800px"] h2 {
        font-size: 1.6rem !important;
    }

    [style*="max-width: 800px"] p {
        font-size: 1.05rem !important;
    }

    [style*="justify-content: center"][style*="gap: 20px"] {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0 16px;
    }

    [style*="justify-content: center"][style*="gap: 20px"] .btn {
        width: 100%;
        justify-content: center;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
        text-align: center;
    }

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

    .footer-brand p {
        font-size: 0.92rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 1.1rem;
    }

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

    .footer-links li {
        padding: 6px 0;
    }

    .footer-bottom {
        margin-top: 28px;
        font-size: 0.85rem;
    }

    /* --- MENU MODAL (Full screen on mobile) --- */
    .menu-modal {
        padding: 0;
        align-items: stretch;
    }

    .menu-modal-content {
        max-width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
        border: none;
    }

    .menu-modal-header {
        padding: 16px 18px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .menu-modal-header h2 {
        font-size: 1.4rem;
    }

    .menu-modal-header p {
        font-size: 0.85rem;
    }

    .menu-modal-close {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .menu-modal-body {
        padding: 16px 18px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu-category {
        margin-bottom: 28px;
    }

    .menu-category h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .menu-items {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .menu-item {
        padding: 16px;
    }

    .menu-item h4 {
        font-size: 1rem;
    }

    .menu-item p {
        font-size: 0.82rem;
    }

    .menu-item .price {
        font-size: 0.9rem;
    }

    .menu-item.selected::after {
        top: 12px;
        left: 12px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .menu-modal-footer {
        padding: 14px 18px;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }

    .selected-items-list {
        gap: 8px;
        max-height: 60px;
        overflow-y: auto;
    }

    .selected-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .menu-modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .menu-modal-actions .btn {
        padding: 14px;
        font-size: 0.95rem;
        justify-content: center;
    }

    /* --- MOBILE NAV --- */
    .mobile-nav {
        width: 85vw;
        max-width: 340px;
        right: -85vw;
    }

    .mobile-nav a {
        font-size: 1.05rem;
        padding: 18px 0;
    }

    .mobile-nav-cta {
        margin-top: 24px;
    }

    .mobile-nav-cta .btn {
        padding: 16px;
        font-size: 1rem;
        justify-content: center;
    }

    /* --- PAGE HEADER (services etc.) --- */
    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 8px;
    }

    /* --- WHATSAPP FLOAT --- */
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* --- COOKIE CONSENT --- */
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Small phones (max 390px - iPhone SE, older phones) */
@media (max-width: 390px) {
    .container {
        padding: 0 12px;
    }

    .hero h1,
    .hero .split-text {
        font-size: 1.8rem !important;
    }

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

    .section-header h2 {
        font-size: 1.5rem !important;
    }

    .counter {
        font-size: 2rem !important;
    }

    .event-card {
        height: 260px;
    }

    .event-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .event-card h3 {
        font-size: 1.15rem;
    }

    .event-card p {
        font-size: 0.84rem;
        margin-bottom: 10px;
    }

    .card {
        padding: 22px 16px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .kashrut-badge {
        padding: 24px 16px !important;
    }

    .kashrut-info h3 {
        font-size: 1.3rem !important;
    }

    .kashrut-info p {
        font-size: 0.88rem !important;
    }

    .menu-modal-header h2 {
        font-size: 1.25rem;
    }
}

/* Landscape mode on phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-logo {
        height: 50px !important;
    }

    .hero h1,
    .hero .split-text {
        font-size: 1.8rem !important;
    }

    .hero-tagline {
        display: none;
    }

    .hero-features {
        flex-direction: row;
        gap: 20px;
    }

    section {
        padding: 40px 0 !important;
    }

    .menu-modal-content {
        max-height: 100dvh;
    }

    .menu-modal-body {
        max-height: 50vh;
    }
}

/* Ensure no horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly minimum sizes */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-menu-btn,
    .mobile-nav-close,
    .menu-modal-close,
    .theme-toggle {
        min-width: 44px;
        min-height: 44px;
    }

    .menu-item {
        min-height: 70px;
    }

    /* Disable hover-only effects on touch */
    .event-card:hover {
        transform: none;
    }

    .card:hover {
        transform: none;
    }

    .menu-item:hover {
        transform: none;
    }

    /* Disable custom cursor on touch */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}
