/* ===== CSS Variables ===== */
:root {
    --maroon: #1B4332;
    --maroon-dark: #0F2B1E;
    --maroon-light: #2D6A4F;
    --gold: #C5962C;
    --gold-light: #D4AB4E;
    --gold-dark: #A67D1E;
    --cream: #FBF7F0;
    --cream-dark: #F0E9DB;
    --charcoal: #1C2B21;
    --charcoal-light: #3A4F42;
    --text-dark: #1C2B21;
    --text-light: #FFFFFF;
    --text-muted: #5A6B5F;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(27, 67, 50, 0.08);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(197, 150, 44, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--gold);
    border-radius: 10px;
    animation: loading 1.5s ease infinite;
}

@keyframes loading {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

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

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

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

.nav-cta {
    background: var(--maroon);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1920') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(15, 43, 30, 0.75) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
}

.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-3px);
}

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

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

/* ===== Scroll Indicator ===== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease infinite;
}

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

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7); }
}

.floating-btn {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 25px rgba(197, 150, 44, 0.4);
    transition: var(--transition);
    animation: pulse 2s ease infinite;
}

.floating-btn:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(197, 150, 44, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(197, 150, 44, 0.6); }
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

/* ===== Page Hero Banner ===== */
.page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1920') center/cover no-repeat;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(15, 43, 30, 0.75) 100%);
}

.page-hero .hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.page-hero .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

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

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--white);
}

.section-header.light .section-divider i {
    color: var(--gold);
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-divider span {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

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

/* ===== About Section ===== */
.about {
    background: var(--white);
}

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

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: var(--maroon);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.image-badge .years {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.image-badge .text {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Menu Section ===== */
.menu {
    background: var(--cream);
}

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

.category-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

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

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.menu-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-card-badge.bestseller {
    background: var(--maroon);
    color: var(--white);
}

.menu-card-content {
    padding: 25px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
}

.menu-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spice-level {
    color: #e74c3c;
    font-size: 0.9rem;
}

.diet-tag {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.diet-tag.veg {
    background: #27ae60;
    color: var(--white);
}

.diet-tag.non-veg {
    background: #c0392b;
    color: var(--white);
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.menu-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ===== Chef's Specials ===== */
.specials {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.specials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920') center/cover;
    opacity: 0.05;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.special-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.special-card.featured {
    grid-column: span 1;
    background: rgba(27, 67, 50, 0.3);
}

.special-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.special-card:hover .special-image img {
    transform: scale(1.1);
}

.special-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 10px 20px;
    border-top-left-radius: 15px;
    box-shadow: var(--shadow);
}

.special-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
}

.special-content {
    padding: 30px;
}

.chef-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    margin-bottom: 15px;
}

.chef-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.special-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.chef-note {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 3px solid var(--gold);
}

.chef-note i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.chef-note p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.chef-note span {
    color: var(--gold);
    font-weight: 500;
}

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

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--cream-dark);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.9) 0%, rgba(45, 106, 79, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ===== Reservation Section ===== */
.reservation {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920') center/cover;
    opacity: 0.08;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.reservation-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.reservation-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reservation-benefits {
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--white);
}

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

.contact-quick {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-quick p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-number:hover {
    color: var(--gold-light);
}

/* ===== Form Styles ===== */
.reservation-form-wrapper {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

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

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--cream);
}

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

.form-group i {
    position: absolute;
    left: 15px;
    top: 45px;
    color: var(--gold);
}

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

/* ===== Reviews Section ===== */
.reviews {
    background: var(--cream);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 50px;
}

.stat-box {
    display: inline-block;
    background: var(--white);
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat-box .rating {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--maroon);
    display: block;
}

.stat-box .stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 10px 0;
}

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

.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.reviewer-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.reviewer-info .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-rating {
    margin-left: auto;
    color: var(--gold);
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.review-images img:hover {
    transform: scale(1.05);
}

.review-helpful {
    border-top: 1px solid var(--cream-dark);
    padding-top: 15px;
}

.helpful-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.helpful-btn:hover {
    color: var(--maroon);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--maroon);
    background: transparent;
    color: var(--maroon);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--maroon);
    color: var(--white);
}

.review-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-cta p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Offers Section ===== */
.offers {
    background: var(--white);
}

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

.offer-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.offer-card.featured {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--white);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.offer-card.featured .offer-badge {
    background: var(--white);
    color: var(--maroon);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--maroon);
}

.offer-card.featured .offer-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.offer-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.offer-card:not(.featured) p {
    color: var(--text-muted);
}

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

.offer-details span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offer-card:not(.featured) .offer-details span {
    color: var(--text-muted);
}

.offer-card .btn-outline {
    border-color: var(--maroon);
}

.offer-card.featured .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.offer-card.featured .btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ===== Contact Section ===== */
.contact {
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--maroon);
    transition: var(--transition);
}

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

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.google-form {
    width: 100%;
    min-height: 600px;
    border: none;
}

.map-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--cream-dark);
    position: relative;
    padding-top: 100px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--maroon);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 25px;
}

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

.footer-links ul li a,
.footer-links ul li {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a:hover {
    color: var(--maroon);
    padding-left: 5px;
}

.footer-links ul li i {
    color: var(--maroon);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--maroon);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--maroon-dark);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.footer-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-cta span {
    color: var(--maroon);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.footer-cta .btn-small {
    background: var(--maroon);
    color: var(--white);
}

.footer-cta .btn-small:hover {
    background: var(--maroon-dark);
    color: var(--white);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

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

#lightboxImage {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    transform: scale(0.8);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
}

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

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-card.featured {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .special-card.featured {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card {
        min-width: calc(100% - 20px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat {
        flex: 1 1 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .reservation-form-wrapper,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--maroon-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--maroon);
}

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