/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&amp;family=Poppins:wght@300;400;500;600;700&amp;display=swap');

/* Contact Info wrapping fixes */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.contact-info li i {
    flex-shrink: 0;
    min-width: 20px;
}
.contact-info a,
.contact-info span,
.contact-info p {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* CSS Variables for Brand Colors */
:root {
    --primary-red: #C41E3A;
    --primary-dark-red: #9a162e;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --accent-gold: #C41E3A;
    --gray-light: #F5F5F5;
    --gray-dark: #333333;
    --gray-medium: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--primary-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ensure fixed header doesn't cover page content */
body {
    padding-top: 90px;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

h1 {
    font-size: 3.5rem;
    color: var(--gray-dark);
}

h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
}

h3 {
    font-size: 1.75rem;
    color: var(--gray-dark);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* Ensure all headings are readable - override any light colors */
section:not(.page-hero):not(.cta-section):not(.stats-section):not(.footer) h1,
section:not(.page-hero):not(.cta-section):not(.stats-section):not(.footer) h2,
section:not(.page-hero):not(.cta-section):not(.stats-section):not(.footer) h3 {
    color: var(--gray-dark) !important;
}

.highlight {
    color: var(--primary-red);
}

.text-center {
    text-align: center;
}

.muted {
    color: var(--gray-medium);
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-dark-red);
    border-color: var(--primary-dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.btn-secondary:hover {
    background-color: #222;
    border-color: #222;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--primary-red);
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
}

.btn-text:hover {
    background: transparent;
    color: var(--primary-dark-red);
    transform: none;
    box-shadow: none;
}

/* Header & Navigation */
.header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.logo-container:hover {
    opacity: 0.85;
}

.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 0.6px;
    font-variant: small-caps;
    margin-left: 6px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

/* Enhanced Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    pointer-events: none;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f8f8f8;
    color: #c41e3a;
    padding-left: 25px;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

/* Desktop hover */
@media (min-width: 769px) {
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }
    
    .nav-item-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        background: #f8f9fa;
        margin-top: 5px;
        width: 100%;
    }
    
    .dropdown-menu.active {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .nav-item-dropdown > .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 40px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 90px);
    background: var(--gray-light);
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-side {
    padding: 40px 0;
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-dark);
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--gray-medium);
    font-weight: 400;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat h3 {
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.stat p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin: 0;
    font-weight: 500;
}

/* Hero Image Side with Slideshow */
.hero-image-side {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Slideshow animations */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background-color: var(--gray-light);
    position: relative;
    min-height: 600px;
    contain: layout;
}

.services-bg-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    contain: layout style paint;
}

.services-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
    will-change: opacity;
    content-visibility: auto;
    transition: opacity 0.3s ease;
}

.services-preview .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: var(--gray-dark);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header h1 {
    color: var(--gray-dark);
    font-size: 3rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    animation: fadeIn 0.6s ease both;
    animation-delay: calc(var(--order) * 0.1s);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--primary-dark-red);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-white);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-white);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--primary-white);
}

.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark-red);
}

/* Services Details Section */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.service-content > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #444;
}

.service-features i {
    color: var(--primary-red);
    margin-right: 10px;
}

.why-choose-us {
    padding: 100px 0;
    background: white;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.choose-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.choose-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.choose-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Featured Menu */
.featured-menu {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    will-change: transform;
    transition: transform 0.3s ease;
}

.menu-item:hover img {
    transform: scale(1.05);
}

/* Services Page Styles */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('Images/cater%2005.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    text-align: center;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero p {
    color: var(--primary-white) !important;
}

.services-details {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-detail.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-detail:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.02);
}

.service-content h2 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray-dark);
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
}

.service-features li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--gray-dark);
}

.service-features li i {
    color: var(--primary-red);
}

/* Menu packages removed - styles cleaned up */

/* Client logos marquee */
.client-logos {
    padding: 84px 0;
    background: radial-gradient(circle at 20% 20%, rgba(196, 30, 58, 0.07), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.08), transparent 40%),
                #faf7f5;
}

.client-logos .section-header {
    margin-bottom: 32px;
}

.section-header.compact p {
    max-width: 720px;
    margin: 0.35rem auto 0;
}

.logo-marquee {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 18px 6px;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 38px;
    align-items: center;
    animation: slide-logos 28s linear infinite;
    min-width: max-content;
    will-change: transform;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    opacity: 0.82;
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: grayscale(25%);
}

.logo-item img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.logo-item:hover img {
    filter: brightness(1.1);
}

@keyframes slide-logos {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Signature dishes (tabs) */
.signature-dishes .dish-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.signature-dishes .tab-btn {
    background: transparent;
    border: 1px solid var(--gray-light);
    padding: 10px 18px;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-dark);
    transition: all 0.22s ease;
    font-family: 'Montserrat', sans-serif;
}

.signature-dishes .tab-btn.active,
.signature-dishes .tab-btn:focus {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    outline: none;
}

.signature-dishes .tab-btn:hover:not(.active) {
    background: rgba(196, 30, 58, 0.1);
    border-color: rgba(196, 30, 58, 0.3);
}

.dishes-content { 
    margin-top: 22px; 
    position: relative;
}

.dishes-panel { 
    display: none; 
    opacity: 0; 
    transition: opacity 0.28s ease;
    animation: fadeIn 0.3s ease forwards;
}

.dishes-panel.active { 
    display: block; 
    opacity: 1;
}

.signature-dishes .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.signature-dishes .menu-item {
    background: var(--primary-white);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.signature-dishes .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.signature-dishes .menu-item img { 
    width: 100%;
    height: 230px; 
    object-fit: cover; 
}

.signature-dishes .menu-item h3 { 
    margin-bottom: 6px;
    color: var(--gray-dark);
}

.signature-dishes .menu-item p { 
    color: var(--gray-dark); 
    font-size: 0.95rem; 
}

.process-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--primary-dark-red);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.choose-card {
    background: var(--primary-white);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.choose-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-red);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(212, 175, 55, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-red);
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(212, 175, 55, 0.15));
}

.choose-card h3 {
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.choose-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('Images/catering%204.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    text-align: center;
}

.about-hero h1,
.about-hero h2,
.about-hero h3,
.about-hero p {
    color: var(--primary-white) !important;
}

.story-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.mission-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.mission-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-red);
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(212, 175, 55, 0.15));
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.mission-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-info p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    color: var(--gray-medium);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.85)), url('Images/catering%204.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stats-section h1,
.stats-section h2,
.stats-section h3,
.stats-section p {
    color: var(--primary-white) !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-red) !important;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item h3.counted {
    animation: pulse 0.5s ease;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--primary-white) !important;
    opacity: 0.9;
    margin: 0;
}

.values-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    background: var(--gray-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
}

.value-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
    transition: var(--transition);
}

.value-card:hover .value-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.value-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('Images/catering-setup.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.contact-hero h1,
.contact-hero h2,
.contact-hero h3,
.contact-hero p {
    color: var(--primary-white) !important;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-form-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.contact-form-container h2 {
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-form-container > p {
    color: var(--gray-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-control.error {
    border-color: var(--primary-red);
    background-color: rgba(196, 30, 58, 0.02);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.field-error {
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
    animation: fadeIn 0.5s ease;
}

.form-success.show {
    display: block;
}

.form-note {
    margin-top: 15px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
}

.contact-info {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.info-item:hover .info-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.info-content h3 {
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--gray-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-contact h3 {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-hover);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background: var(--primary-red);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-answer p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f1ed 0%, #fdfcfb 50%, #ffffff 100%);
}

.testimonial-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card.premium {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.testimonial-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(120deg, rgba(196, 30, 58, 0.08), rgba(212, 175, 55, 0.06));
    border-radius: 8px;
    border: 1px solid rgba(196, 30, 58, 0.1);
    flex: 1;
    min-width: 220px;
    min-height: 80px;
}

.company-badge img {
    width: auto;
    height: 50px;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.05) brightness(1);
}

.company-badge span {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.rating {
    color: var(--primary-red);
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2f2a28;
    font-weight: 500;
    font-style: italic;
    margin: 15px 0;
}

.client {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client h4 {
    color: var(--primary-red);
    margin-bottom: 3px;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.client p {
    color: #6b6b6b;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    text-align: center;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section p {
    color: var(--primary-white) !important;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 80px 0 30px;
}

.footer p {
    color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-white) !important;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-info i {
    color: var(--primary-red);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #e0e0e0;
}

.footer-bottom p {
    color: #e0e0e0;
}

.footer-bottom a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* Chat Widget */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: var(--primary-white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float::before {
    content: 'Chat with us';
    position: absolute;
    right: 70px;
    background-color: var(--gray-dark);
    color: var(--primary-white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: var(--gray-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--primary-white);
}

/* Old chat widget styles (kept for backward compatibility) */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--primary-white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark-red);
}

.chat-toggle.active {
    transform: scale(1.1);
    background-color: var(--primary-dark-red);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--primary-white);
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-box.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.chat-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-body {
    padding: 20px;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.quick-btn {
    padding: 10px;
    background-color: var(--gray-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.quick-btn:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Gallery Styles */
.gallery-section {
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--gray-light);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #f7f7f7;
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h3,
.gallery-overlay p {
    color: var(--primary-white) !important;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
}

.lightbox-caption h3,
.lightbox-caption p {
    color: var(--primary-white) !important;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.video-gallery { margin-top: 50px; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background: rgba(255,255,255,1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i { font-size: 22px; color: var(--primary-red); }

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
}

/* Service Spotlights */
.service-spotlights {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, rgba(245,245,245,0.6), transparent);
}

.service-spotlights .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.spotlights-intro {
    text-align: center;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto 24px;
    opacity: 0.9;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: start;
}

.spotlight-card {
    background: var(--primary-white);
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spotlight-card h3 {
    margin-bottom: 6px;
    color: var(--primary-red);
}

.spotlight-card .muted {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.spotlight-card ul {
    list-style: disc;
    margin-left: 16px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.lazy-loaded {
    animation: fadeIn 0.6s ease forwards;
}

/* Performance Optimizations */
.story-section,
.mission-section,
.team-section,
.stats-section,
.values-section,
.cta-section,
.contact-section,
.gallery-section,
.faq-section,
.services-preview,
.featured-menu,
.testimonials,
.client-logos,
.why-choose-us {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-image-side {
        height: 500px;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image {
        order: -1;
        width: 100%;
        overflow: hidden;
    }

    .service-image img {
        height: 250px;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    
    .services-bg-wrapper {
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 20px;
    }
    
    .services-preview {
        min-height: 500px;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .story-content {
        gap: 40px;
    }
    
    .choose-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-image-side {
        height: 400px;
        order: -1;
    }
    
    .hero-text-side {
        padding: 20px 0;
    }
    
    .hero-stats {
        gap: 25px;
        justify-content: space-between;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--primary-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        color: var(--gray-dark);
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary-red);
        background-color: rgba(196, 30, 58, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .chat-box {
        width: 300px;
        right: -20px;
    }
    
    .services-bg-wrapper {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 16px;
    }
    
    .services-preview {
        padding: 80px 0;
        min-height: 450px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-hero,
    .page-hero,
    .about-hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .contact-section,
    .faq-section,
    .mission-section,
    .team-section,
    .stats-section,
    .values-section,
    .cta-section {
        padding: 80px 0;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 35px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-float::before {
        font-size: 13px;
        padding: 8px 14px;
        right: 65px;
    }
    
    .whatsapp-float::after {
        right: 55px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-cards,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .choose-us-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .logo-item {
        flex: 0 0 120px;
    }
    
    .logo-track {
        gap: 30px;
    }
    
    .testimonial-collection {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card.premium {
        padding: 20px;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .company-badge {
        width: 100%;
        min-width: unset;
    }
    
    .rating {
        justify-content: flex-start;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .signature-dishes .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .video-thumbnail {
        height: 140px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content iframe {
        height: 300px;
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-marquee {
        padding: 12px 4px;
    }
    
    .logo-item {
        flex: 0 0 100px;
    }
    
    .logo-track {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .chat-box {
        width: 280px;
        right: -10px;
    }
    
    .services-bg-wrapper {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 12px;
    }
    
    .services-preview {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-hero,
    .page-hero,
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .contact-section,
    .faq-section,
    .mission-section,
    .team-section,
    .stats-section,
    .values-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .mission-card,
    .team-info,
    .value-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-item {
        flex: 0 0 80px;
    }
    
    .logo-track {
        gap: 20px;
    }
    
    .signature-dishes .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card.premium {
        padding: 16px;
        gap: 12px;
    }
    
    .company-badge {
        padding: 12px 16px;
        gap: 10px;
        min-height: 70px;
    }
    
    .company-badge img {
        width: auto;
        height: 45px;
        max-width: 130px;
    }
    
    .company-badge span {
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .client h4 {
        font-size: 0.95rem;
    }
    
    .client p {
        font-size: 0.9rem;
    }
    
    .choose-card {
        padding: 30px 20px;
    }
    
    .choose-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .choose-card h3 {
        font-size: 1.1rem;
    }
    
    .choose-card p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .chat-widget,
    .footer,
    .cta-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: none;
    }
    
    .hero,
    .services-preview,
    .testimonials,
    .client-logos,
    .cta-section {
        background: none !important;
        color: #000;
        padding: 20px 0;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .page-break {
        page-break-before: always;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-red: #b30000;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --accent-gold: #C41E3A;
        --gray-light: #f0f0f0;
        --gray-dark: #000000;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .header {
        background-color: #1e1e1e;
        border-bottom: 1px solid #333;
    }
    
    .nav-link,
    .brand-name {
        color: #e0e0e0;
    }
    
    .service-card,
    .mission-card,
    .team-member,
    .value-card,
    .choose-card,
    .contact-form-container,
    .contact-info,
    .faq-item,
    .gallery-overlay,
    .lightbox-caption {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }
    
    .form-control {
        background-color: #2d2d2d;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .form-control:focus {
        border-color: var(--primary-red);
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    .services-bg-wrapper,
    .hero,
    .page-hero,
    .contact-hero,
    .about-hero,
    .stats-section {
        background-attachment: scroll !important;
    }
    
    .logo-track {
        animation-duration: 40s !important;
    }
    
    /* Responsive button styles for all service pages */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-executive,
    .btn-celebration,
    .cta-buttons a,
    .corporate-buttons a,
    .celebration-buttons a {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        white-space: normal;
        text-align: center;
        justify-content: center;
        min-height: 48px;
    }
    
    .cta-buttons,
    .corporate-buttons,
    .celebration-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }
    
    .service-link {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-executive,
    .btn-celebration {
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Content visibility for performance */
.story-section,
.mission-section,
.team-section,
.stats-section,
.values-section,
.cta-section,
.contact-section,
.gallery-section,
.faq-section,
.services-preview,
.featured-menu,
.testimonials,
.client-logos {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Prevent FOUC (Flash of Unstyled Content) */
.no-js .nav-menu {
    display: none;
}

.no-js .hamburger {
    display: none;
}

/* Loading states */
.img-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-red);
}

/* Selection color */
::selection {
    background-color: rgba(196, 30, 58, 0.3);
    color: var(--primary-white);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark-red);
    transform: translateY(-5px);
}

/* Error states */
.error {
    border-color: var(--primary-red) !important;
    background-color: rgba(196, 30, 58, 0.02) !important;
}

.error-message {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Success states */
.success {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.02) !important;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}