/* ========================================
   GERMAN Catering - Premium Website Styles
   Modern, Luxurious, Vibrant Design
   ======================================== */

/* ===== CSS Custom Properties ===== */
:root {
    /* Primary Colors - Rich Gold & Deep Maroon */
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4D03F;
    --primary-gold-dark: #B8860B;
    --primary-maroon: #800020;
    --primary-maroon-dark: #5C0015;

    /* Accent Colors - Vibrant Festival Palette */
    --accent-orange: #FF6B35;
    --accent-coral: #FF8C69;
    --accent-magenta: #E91E8C;
    --accent-purple: #9B59B6;
    --accent-teal: #1ABC9C;
    --accent-emerald: #2ECC71;

    /* Gradient Combinations */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-luxury: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-festive: linear-gradient(135deg, #FF6B35 0%, #E91E8C 50%, #9B59B6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(128, 0, 32, 0.9) 0%, rgba(212, 175, 55, 0.8) 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FFF8F0;
    --cream: #FFFDF7;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #333333;
    --black: #1A1A1A;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 5px 30px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.5);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Performance optimizations for scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 100px; /* Account for fixed header */
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    /* Performance optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-inner {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.loader-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-gold);
    animation: loaderBounce 0.6s infinite alternate;
}

.loader-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loaderBounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 3px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    /* Performance optimizations */
    will-change: transform, background-color, padding;
    transform: translateZ(0); /* Force hardware acceleration */
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo .logo-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-logo .logo-sub {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo .logo-sub {
    font-size: 0.9rem;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-menu {
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    font-size: 0.9rem;
    padding: 3px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
    gap: 6px;
}

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

.nav-cta-menu {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.nav-cta-menu:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.nav-cta-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu-cta {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.85) 0%,
            rgba(128, 0, 32, 0.7) 50%,
            rgba(26, 26, 46, 0.85) 100%);
    z-index: 2;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 120px 20px 60px;
    /* Performance optimizations for parallax */
    will-change: transform, opacity;
    transform: translateZ(0); /* Force hardware acceleration */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-highlight {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition-slow);
}

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

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

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
}

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

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    color: var(--primary-gold);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    margin-top: 10px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(8px);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 60%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    top: 20%;
    animation-delay: 8s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.image-main {
    position: relative;
    width: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

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

.badge-text {
    font-size: 0.85rem;
    color: var(--black);
    font-weight: 500;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

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

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

.image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 35px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--black);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.about-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.service-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-festive);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    transition: var(--transition-normal);
}

.service-card:hover .icon-bg {
    transform: rotate(0deg);
    background: var(--gradient-gold);
}

.service-card.featured .icon-bg {
    background: rgba(212, 175, 55, 0.2);
}

.service-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-gold);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon i {
    color: var(--black);
}

.service-card.featured .service-icon i {
    color: var(--primary-gold-light);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--accent-emerald);
    font-size: 0.8rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link i {
    transition: var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-bg-element {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-50%, 50%);
}

/* ===== Menu Section ===== */
.menu {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.menu-tab:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.menu-tab.active {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-tag.veg {
    background: var(--accent-emerald);
    color: var(--white);
}

.menu-tag.non-veg {
    background: var(--accent-coral);
    color: var(--white);
}

.menu-details {
    padding: 20px;
}

.menu-details h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: 8px;
}

.menu-details p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.menu-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--section-padding);
    background: var(--black);
}

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

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.gallery-category {
    font-size: 0.8rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title {
    color: var(--white);
}

.contact-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.contact-text h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-group textarea~label {
    top: 20px;
    transform: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-gold);
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--medium-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Footer ===== */
.footer {
    background: #0d0d1a;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-row {
    display: flex;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.footer-logo .logo-sub {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

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

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

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

.footer-bottom {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.tech-partner {
    margin-top: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.tech-partner a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-normal);
}

.tech-partner a:hover {
    color: var(--white);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 20px, 0); /* Use 3d transform for hardware acceleration */
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    /* Performance optimizations */
    will-change: transform, opacity, visibility;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0); /* Use 3d transform */
}

.back-to-top:hover {
    transform: translate3d(0, -5px, 0); /* Use 3d transform */
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-gold);
    z-index: 10000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--accent-gold);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.cookie-btn-accept {
    background: var(--gradient-gold);
    color: var(--black);
}

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

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-decline:hover {
    background: var(--white);
    color: var(--black);
}

/* ===== Floating Action Buttons ===== */
.floating-actions {
    display: none;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-normal);
    position: relative;
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.action-btn:hover {
    transform: scale(1.15) rotate(10deg);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.call-btn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-coral) 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.call-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* ===== Responsive Styles ===== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 30px;
    }

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

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

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 15px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        --section-padding: 70px 0;
    }

    .container {
        padding: 0 25px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gradient-dark);
        flex-direction: column;
        padding: 100px 30px;
        transition: var(--transition-normal);
        gap: 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-desktop {
        display: flex;
        gap: 8px;
    }

    .nav-cta-desktop .nav-cta {
        display: flex;
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .nav-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu-cta .nav-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
    }

    /* Hero */
    .hero-content {
        padding: 100px 20px 50px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 450px;
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .image-main {
        width: 85%;
    }

    .image-secondary {
        width: 50%;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        padding: 30px 25px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Small Tablets & Large Phones (Landscape) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Typography */
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

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

    /* Navigation */
    .nav-container {
        padding: 0 20px;
    }

    .nav-logo .logo-text {
        font-size: 1.5rem;
    }

    .nav-logo .logo-sub {
        font-size: 1rem;
    }

    /* Hero */
    .hero-content {
        padding: 90px 15px 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-cta {
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-images {
        height: 380px;
        max-width: 100%;
    }

    .image-main img {
        height: 320px;
    }

    .image-badge {
        padding: 15px 20px;
        bottom: -15px;
        right: -10px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .image-secondary {
        width: 55%;
    }

    .image-secondary img {
        height: 180px;
    }

    .image-accent {
        width: 90px;
        height: 90px;
        top: 15%;
        right: 5%;
    }

    .about-lead {
        font-size: 1rem;
    }

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

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

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

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

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }

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

    /* Menu */
    .menu-tabs {
        gap: 10px;
        margin-bottom: 35px;
    }

    .menu-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .menu-image {
        height: 150px;
    }

    .menu-details {
        padding: 15px;
    }

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

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

    .menu-cta {
        padding: 30px 20px;
    }

    .menu-cta p {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .gallery-item {
        height: 180px;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 180px;
    }

    .gallery-overlay {
        padding: 15px;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    }

    .gallery-category {
        font-size: 0.7rem;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    /* Contact */
    .contact-details {
        gap: 20px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px 14px 45px;
    }

    /* Footer */
    .footer-top {
        padding: 60px 0 40px;
    }

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

    .footer-brand p {
        max-width: 400px;
        margin: 0 auto 20px;
    }

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

    .footer-bottom {
        padding: 20px 0;
    }

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

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

    .footer-bottom-links {
        justify-content: center;
    }

    /* Floating Actions */
    .call-btn {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .action-btn {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

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

/* Mobile Phones */
@media (max-width: 576px) {
    :root {
        --section-padding: 50px 0;
    }

    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .navbar.scrolled .nav-logo .logo-text {
        font-size: 1.2rem;
    }

    .navbar.scrolled .nav-logo .logo-sub {
        font-size: 0.8rem;
    }

    .nav-menu {
        width: 100%;
        padding: 90px 25px 40px;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 80px 15px 30px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

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

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

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

    .stat-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        padding: 12px 20px;
        border-radius: var(--radius-sm);
        backdrop-filter: blur(5px);
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-plus {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
        margin-top: 0;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        padding: 6px 15px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* About */
    .about-images {
        height: 320px;
    }

    .image-main {
        width: 90%;
    }

    .image-main img {
        height: 250px;
    }

    .image-badge {
        padding: 12px 15px;
        bottom: -10px;
        right: -5px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .image-secondary {
        width: 50%;
        bottom: -10px;
    }

    .image-secondary img {
        height: 140px;
    }

    .image-accent {
        width: 70px;
        height: 70px;
        top: 10%;
        right: 0;
    }

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

    .about-content .btn {
        width: auto;
    }

    .about-lead {
        font-size: 0.95rem;
        text-align: left;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    /* Services */
    .service-card {
        padding: 25px 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .featured-badge {
        font-size: 0.65rem;
        padding: 4px 35px;
        right: -35px;
        top: 15px;
    }

    /* Menu */
    .menu-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu-tab {
        flex: 1 1 calc(50% - 8px);
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        display: flex;
        flex-direction: row;
    }

    .menu-image {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }

    .menu-item .menu-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    .menu-tag {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }

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

    .gallery-item {
        height: 150px;
    }

    .gallery-overlay h4 {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-info {
        text-align: center;
    }

    .contact-description {
        font-size: 0.95rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px 12px 42px;
        font-size: 0.95rem;
    }

    .form-icon {
        left: 14px;
        top: 15px;
        font-size: 0.9rem;
    }

    .form-group label {
        left: 42px;
        font-size: 0.9rem;
    }

    .form-group input:focus~label,
    .form-group input:not(:placeholder-shown)~label,
    .form-group select:focus~label,
    .form-group select:valid~label,
    .form-group textarea:focus~label,
    .form-group textarea:not(:placeholder-shown)~label {
        font-size: 0.7rem;
        left: 12px;
    }

    /* Footer */
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-logo .logo-text {
        font-size: 1.4rem;
    }

    .footer-logo .logo-sub {
        font-size: 1rem;
    }

    .footer-links h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

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

    /* Floating buttons */
    .call-btn {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .action-btn::before {
        animation: none;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 80px;
        right: 15px;
        font-size: 1rem;
    }

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

    .back-to-top:hover {
        transform: translateY(-5px);
    }

    /* Cookie Consent */
    .cookie-consent-banner {
        padding: 15px 0;
    }

    .cookie-content {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 16px;
    }
}

/* Extra Small Phones */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }

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

    .stat-item {
        padding: 10px 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .about-images {
        height: 280px;
    }

    .image-main img {
        height: 220px;
    }

    .image-secondary img {
        height: 120px;
    }

    .menu-tab {
        flex: 1 1 100%;
    }

    .gallery-item {
        height: 130px;
    }
}

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

    .hero-content {
        padding: 60px 20px 30px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-cta {
        flex-direction: row;
        margin-bottom: 25px;
    }

    .btn {
        width: auto;
    }

    .hero-stats {
        flex-direction: row;
    }

    .stat-item {
        flex-direction: column;
        padding: 10px 15px;
    }

    .hero-scroll {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .service-card:hover,
    .menu-item:hover,
    .gallery-item:hover img {
        transform: none;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .btn:hover {
        transform: none;
    }

    .action-btn:hover {
        transform: none;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-video-container {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .particle {
        display: none;
    }

    .action-btn::before {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== Animation Utilities ===== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-in {
    animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Shimmer Effect ===== */
.shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

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

    100% {
        background-position: 200% 0;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* ===== Selection Style ===== */
::selection {
    background: var(--primary-gold);
    color: var(--black);
}