/* Base Styles & Variables */
:root {
    /* Colors */
    --maroon: #8B1A1A;
    --gold: #D4AF37;
    --light-gold: #F5D480;
    --ivory: #FFFFF0;
    --charcoal: #333333;
    --light-charcoal: #555555;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #EEEEEE;
    --gray: #888888;
    --dark-maroon: #5C0E0E;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    --maroon-gradient: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    
    /* Fonts */
    --heading-font: 'Playfair Display', serif;
    --subheading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--maroon);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: var(--maroon-gradient);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--maroon);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--maroon);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--subheading-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--subheading-font);
    font-size: 1.1rem;
    color: var(--light-charcoal);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.divider-icon {
    margin: 0 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-container {
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
}

/* Logo Animation */
.preloader-logo {
    margin-bottom: 40px;
}

.logo-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-spin {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: logoRotate 3s linear infinite;
    z-index: 2;
    position: relative;
    border: 2px solid var(--gold);
    padding: 5px;
}

.logo-ring, .logo-ring-delay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--gold);
    animation: ringRotate 2s linear infinite;
}

.logo-ring-delay {
    border-top: 2px solid var(--light-gold);
    animation-delay: 0.5s;
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text Animation */
.loading-text {
    margin-bottom: 40px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.loading-word {
    display: block;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: wordCycle 6s ease-in-out infinite;
}

.loading-word:nth-child(1) {
    animation-delay: 0s;
}

.loading-word:nth-child(2) {
    animation-delay: 2s;
}

.loading-word:nth-child(3) {
    animation-delay: 4s;
}

@keyframes wordCycle {
    0%, 25% {
        opacity: 0;
        transform: translateY(30px);
    }
    5%, 20% {
        opacity: 1;
        transform: translateY(0);
    }
    26%, 100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Progress Bar */
.loading-progress {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--gold);
}

.progress-text {
    color: var(--white);
    font-family: var(--subheading-font);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Decorative Elements */
.preloader-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-item {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decoration-item:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-item:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.decoration-item:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.decoration-item:nth-child(4) {
    width: 18px;
    height: 18px;
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.decoration-item:nth-child(5) {
    width: 22px;
    height: 22px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gold);
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
.loading-dot:nth-child(3) { animation-delay: 0s; }

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-word {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-spin {
        width: 70px;
        height: 70px;
    }
    
    .loading-text {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .loading-word {
        font-size: 1.3rem;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-spin {
        width: 60px;
        height: 60px;
    }
    
    .loading-text {
        height: 45px;
        margin-bottom: 30px;
    }
}

/* Page transition effects */
body.page-loaded .navbar {
    animation: slideDown 0.8s ease-out;
}

body.page-loaded .hero {
    animation: fadeInUp 1s ease-out 0.3s both;
}

body.page-loaded .section {
    animation: fadeIn 0.8s ease-out both;
}

body.page-loaded .section:nth-child(odd) {
    animation-delay: 0.5s;
}

body.page-loaded .section:nth-child(even) {
    animation-delay: 0.7s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Ensure content is hidden until preloader finishes */
body:not(.page-loaded) .navbar,
body:not(.page-loaded) .hero,
body:not(.page-loaded) .section {
    opacity: 0;
}

/* Prestige Bar */
.prestige-bar {
    background-color: var(--maroon);
    color: var(--light-gold);
    padding: 10px 0;
    font-size: 14px;
    font-family: var(--subheading-font);
}

.prestige-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.prestige-contact span {
    margin-right: 20px;
}

.prestige-contact i, .prestige-social i {
    margin-right: 8px;
}

.prestige-social {
    display: flex;
    align-items: center;
}

.iso-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 20px;
    font-weight: 500;
}

.social-icons a {
    color: var(--light-gold);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--subheading-font);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    position: relative;
    margin-left: 20px;
}

.nav-list a {
    font-family: var(--subheading-font);
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--maroon);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--charcoal);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--maroon);
}

.cta-button {
    background: var(--gold-gradient);
    color: var(--maroon) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-gold) !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--maroon);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    color: var(--white);
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 500px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--light-gold);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-title {
    color: #FFD700; 
}

.hero-subtitle {
    color: wheat;
}

.hero-subtitle {
    font-family: var(--subheading-font);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-ticker {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-family: var(--subheading-font);
    margin-top: 20px;
    backdrop-filter: blur(5px);
}

.carousel-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-prev, .carousel-next {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: var(--gold);
    color: var(--maroon);
}

.carousel-dots {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border: 10px solid var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 5px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--maroon);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.experience-badge span {
    font-size: 2rem;
    line-height: 1;
}

.experience-badge small {
    font-size: 0.7rem;
    font-family: var(--subheading-font);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: var(--gold);
    color: var(--maroon);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--light-charcoal);
}

/* VIP Section */
.vip-section {
    background-color: var(--ivory);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vip-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 1/1;
}

.vip-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.vip-item:hover img {
    transform: scale(1.05);
}

.vip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    padding: 20px;
    text-align: left;
}

.vip-overlay i {
    font-size: 24px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.vip-item:hover .vip-overlay i {
    color: var(--gold);
    transform: scale(1.2);
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge img {
    height: 60px;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.badge:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.badge span {
    font-family: var(--subheading-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--light-charcoal);
}/* ===== ENHANCED SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.01"><path fill="%238B1A1A" d="M500,250c138,0,250-112,250-250S638-250,500-250S250-138,250,0S362,250,500,250z"/></svg>');
    background-size: 200px;
    animation: floatBackground 30s linear infinite;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-tab {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid rgba(139, 26, 26, 0.1);
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-tab.active {
    background: var(--gold-gradient);
    color: var(--maroon);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.service-tab:hover:not(.active) {
    border-color: var(--gold);
    color: var(--maroon);
    transform: translateY(-1px);
}

/* Tab Content */
.services-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.services-tab-content.active {
    display: block;
}

/* Enhanced Service Cards */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.service-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--maroon);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--maroon);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--subheading-font);
}

.service-card-enhanced h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--maroon);
    line-height: 1.3;
}

.service-description {
    color: var(--light-charcoal);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-features i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-stats {
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 26, 26, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--maroon);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--light-charcoal);
    font-weight: 500;
}

.service-card-enhanced .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Category Grid for Additional Services */
.services-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-category {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 26, 26, 0.05);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-category h4 {
    color: var(--maroon);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h4 i {
    color: var(--gold);
    font-size: 1.2rem;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.service-category li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.addon-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.addon-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.addon-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.addon-item h5 {
    color: var(--maroon);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.addon-item p {
    color: var(--light-charcoal);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Service Modal */
.service-modal .modal-content {
    max-width: 800px;
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-detail-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.highlight-item {
    background: var(--off-white);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.service-pricing {
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
}

.service-pricing h4 {
    color: var(--maroon);
    margin-bottom: 15px;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.pricing-option {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(139, 26, 26, 0.1);
}

.pricing-option h5 {
    color: var(--maroon);
    margin-bottom: 10px;
    font-size: 1rem;
}

.pricing-option .price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23FFFFFF" d="M500,250c138,0,250-112,250-250S638-250,500-250S250-138,250,0S362,250,500,250z"/></svg>');
    background-size: 150px;
    animation: floatBackground 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--maroon);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBackground {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(360deg); }
}

/* Service Cards Entrance Animation */
.service-card-enhanced {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.service-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.service-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.service-card-enhanced:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-category-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-tab {
        justify-content: center;
        text-align: center;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .service-card-enhanced {
        padding: 25px 20px;
    }
    
    .service-icon-container {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .services-cta {
        padding: 40px 25px;
    }
    
    .service-modal .modal-content {
        margin: 10px;
    }
}

/* ===== ENHANCED MENU SECTION ===== */
.menu-section {
    background: linear-gradient(135deg, #faf8f4 0%, #f5f1e8 100%);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.01"><path fill="%23C5A356" d="M500,250c138,0,250-112,250-250S638-250,500-250S250-138,250,0S362,250,500,250z"/></svg>');
    background-size: 150px;
    animation: floatBackground 25s linear infinite;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.menu-tab {
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid rgba(197, 163, 86, 0.1);
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.menu-tab.active {
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    color: var(--maroon);
    border-color: #C5A356;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 163, 86, 0.2);
}

.menu-tab:hover:not(.active) {
    border-color: #C5A356;
    color: var(--maroon);
    transform: translateY(-1px);
}

/* Tab Content */
.menu-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-tab-content.active {
    display: block;
}

/* Enhanced Menu Grid */
.menu-grid-enhanced {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 40px 0;
}

.menu-category-section {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 163, 86, 0.1);
}

.menu-category-title {
    color: var(--maroon);
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(197, 163, 86, 0.2);
}

.menu-category-title i {
    color: #C5A356;
    font-size: 1.2rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 163, 86, 0.3);
}

.menu-item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    color: var(--maroon);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--subheading-font);
    box-shadow: 0 4px 10px rgba(197, 163, 86, 0.3);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-content h4 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu-item-desc {
    color: var(--light-charcoal);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 40px;
}

.menu-item-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-tag {
    background: rgba(197, 163, 86, 0.1);
    color: #C5A356;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--subheading-font);
}

/* List View for Categories */
.menu-list-view {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 163, 86, 0.1);
}

.menu-subcategory-title {
    color: var(--maroon);
    font-size: 1.2rem;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-subcategory-title:first-child {
    margin-top: 0;
}

.menu-subcategory-title i {
    color: #C5A356;
    font-size: 1rem;
}

.menu-item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.menu-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(197, 163, 86, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-list-item:hover {
    background: rgba(197, 163, 86, 0.1);
    border-left-color: #C5A356;
    transform: translateX(5px);
}

.menu-list-item i {
    color: #C5A356;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.menu-list-item div {
    flex-grow: 1;
}

.menu-list-item h4 {
    color: var(--maroon);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.menu-list-item p {
    color: var(--light-charcoal);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.menu-list-item .menu-item-tag {
    background: rgba(139, 26, 26, 0.1);
    color: var(--maroon);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    align-self: center;
}

/* Live Counters Grid */
.live-counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.live-counter-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.live-counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 163, 86, 0.3);
}

.live-counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(197, 163, 86, 0.1) 0%, rgba(197, 163, 86, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #C5A356;
}

.live-counter-card h4 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.live-counter-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.live-counter-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-counter-card li::before {
    content: '•';
    color: #C5A356;
    font-weight: bold;
}

.counter-tag {
    display: inline-block;
    background: rgba(197, 163, 86, 0.1);
    color: #C5A356;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--subheading-font);
}

/* Special Menus Grid */
.special-menus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.special-menu-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.special-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 163, 86, 0.3);
}

.special-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8B1A1A 0%, #5C0E0E 100%);
}

.special-menu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.special-menu-header i {
    font-size: 1.8rem;
    color: var(--maroon);
    background: rgba(139, 26, 26, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-menu-header h4 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin: 0;
}

.special-menu-card p {
    color: var(--light-charcoal);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.special-menu-card ul {
    list-style: none;
}

.special-menu-card li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-menu-card li::before {
    content: '✓';
    color: #C5A356;
    font-weight: bold;
}

/* Menu CTA */
.menu-cta {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--dark-maroon) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23FFFFFF" d="M500,250c138,0,250-112,250-250S638-250,500-250S250-138,250,0S362,250,500,250z"/></svg>');
    background-size: 150px;
    animation: floatBackground 20s linear infinite;
}

.menu-cta .cta-content {
    position: relative;
    z-index: 2;
}

.menu-cta .cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--maroon);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.menu-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.menu-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entrance Animations */
.menu-item-card, .live-counter-card, .special-menu-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item-card:nth-child(1) { animation-delay: 0.1s; }
.menu-item-card:nth-child(2) { animation-delay: 0.2s; }
.menu-item-card:nth-child(3) { animation-delay: 0.3s; }
.menu-item-card:nth-child(4) { animation-delay: 0.4s; }

.live-counter-card:nth-child(1) { animation-delay: 0.1s; }
.live-counter-card:nth-child(2) { animation-delay: 0.2s; }
.live-counter-card:nth-child(3) { animation-delay: 0.3s; }
.live-counter-card:nth-child(4) { animation-delay: 0.4s; }

.special-menu-card:nth-child(1) { animation-delay: 0.1s; }
.special-menu-card:nth-child(2) { animation-delay: 0.2s; }
.special-menu-card:nth-child(3) { animation-delay: 0.3s; }
.special-menu-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-counters-grid,
    .special-menus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .menu-tab {
        justify-content: center;
        text-align: center;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .live-counters-grid,
    .special-menus-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-section,
    .menu-list-view {
        padding: 20px;
    }
    
    .menu-cta {
        padding: 40px 25px;
    }
    
    .menu-cta h3 {
        font-size: 1.6rem;
    }
    
    .menu-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-cta .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .menu-item-card {
        max-width: 100%;
    }
    
    .menu-item-image {
        height: 150px;
    }
    
    .menu-list-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-list-item .menu-item-tag {
        align-self: flex-start;
    }
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h4 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.menu-cta-section {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== NAMRATA CULINARY JOURNEY SECTION ===== */
.culinary-journey.premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8F4 0%, #F3E9DB 50%, #FAF8F4 100%);
    position: relative;
    overflow: hidden;
}

.culinary-journey.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(197, 163, 86, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 26, 26, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C5A356;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6C6C6C;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C5A356, transparent);
}

.divider-icon {
    margin: 0 20px;
    color: #C5A356;
    font-size: 1.2rem;
}

/* Navigation Styling */
.culinary-nav {
    margin: 40px 0;
    position: relative;
}

.nav-track {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(197, 163, 86, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #6C6C6C;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-item.active {
    border-color: #C5A356;
    color: #2C2C2C;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 163, 86, 0.2);
}

.nav-item.active::before {
    left: 0;
}

.nav-item:hover:not(.active) {
    border-color: #C5A356;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 163, 86, 0.15);
}

.nav-item i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-item:hover i {
    transform: scale(1.2);
}

/* Featured Specialty */
.featured-specialty {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border: 1px solid rgba(197, 163, 86, 0.1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-specialty:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    color: #2C2C2C;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(197, 163, 86, 0.3);
    backdrop-filter: blur(10px);
}

.featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #FAF8F4 100%);
}

.cuisine-tag {
    display: inline-block;
    background: rgba(139, 26, 26, 0.1);
    color: #8B1A1A;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C2C2C;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.featured-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6C6C6C;
    margin-bottom: 25px;
}

.featured-highlights h4 {
    margin-bottom: 15px;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.highlight {
    background: rgba(234, 240, 225, 0.5);
    padding: 10px 15px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C2C2C;
    text-align: center;
    border: 1px solid rgba(197, 163, 86, 0.2);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: #C5A356;
    color: #2C2C2C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 163, 86, 0.2);
}

.featured-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Button Styling */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    color: #2C2C2C;
    box-shadow: 0 5px 15px rgba(197, 163, 86, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 163, 86, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #C5A356;
    color: #C5A356;
}

.btn-outline:hover {
    background: #C5A356;
    color: #2C2C2C;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Specialty Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.specialty-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 163, 86, 0.1);
    backdrop-filter: blur(10px);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.specialty-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.specialty-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: white;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.overlay-content p {
    color: #E6D9A2;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.btn-explore {
    background: #C5A356;
    color: #2C2C2C;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: white;
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.card-dishes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dish {
    background: rgba(234, 240, 225, 0.5);
    padding: 6px 12px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #2C2C2C;
    border: 1px solid rgba(197, 163, 86, 0.2);
    transition: all 0.3s ease;
}

.dish:hover {
    background: #C5A356;
    transform: translateY(-2px);
}

/* CTA Section */
.culinary-cta {
    margin-top: 60px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 244, 0.9) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 163, 86, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="%23C5A356" d="M50,25c13.8,0,25-11.2,25-25S63.8-25,50-25S25-13.8,25,0S36.2,25,50,25z"/></svg>');
    background-size: 80px;
    animation: floatBackground 20s linear infinite;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C5A356 0%, #E6D9A2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2C2C2C;
    box-shadow: 0 10px 30px rgba(197, 163, 86, 0.3);
    animation: pulse 2s infinite;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2C2C2C;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #6C6C6C;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatBackground {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entrance Animations */
.specialty-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.specialty-card:nth-child(1) { animation-delay: 0.1s; }
.specialty-card:nth-child(2) { animation-delay: 0.2s; }
.specialty-card:nth-child(3) { animation-delay: 0.3s; }

.nav-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.6s ease forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .culinary-journey.premium {
        padding: 60px 0;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-track {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .featured-info {
        padding: 25px;
    }
    
    .featured-info h3 {
        font-size: 1.8rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--maroon);
}

.filter-btn:hover:not(.active) {
    background-color: var(--gray);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1/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(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.overlay-content p {
    color: var(--light-gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-view {
    background-color: var(--gold);
    color: var(--maroon);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view:hover {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow: auto;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: 5% auto;
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    padding: 10px 0;
    font-family: var(--subheading-font);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    transition: var(--transition);
    border-radius: 0 3px 3px 0;
    user-select: none;
    cursor: pointer;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--gold);
}

/* Clients Section */
.clients-section {
    background-color: var(--ivory);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin: 50px 0;
}

.client-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-logo::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--maroon);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--subheading-font);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}

.client-logo:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -45px;
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.clients-cta {
    text-align: center;
    margin-top: 40px;
}

.clients-cta p {
    margin-bottom: 20px;
    font-family: var(--subheading-font);
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.process-track {
    position: absolute;
    top: 0;
    left: 50px;
    right: 0;
    height: 100%;
}

.process-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: var(--gold-gradient);
    transform-origin: top;
    animation: growLine 1.5s ease-out forwards;
}

@keyframes growLine {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.process-items {
    position: relative;
    z-index: 2;
}

.process-item {
    display: flex;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeIn 0.5s ease-out forwards;
}

.process-item:nth-child(1) { animation-delay: 0.3s; }
.process-item:nth-child(2) { animation-delay: 0.6s; }
.process-item:nth-child(3) { animation-delay: 0.9s; }
.process-item:nth-child(4) { animation-delay: 1.2s; }
.process-item:nth-child(5) { animation-delay: 1.5s; }
.process-item:nth-child(6) { animation-delay: 1.8s; }
.process-item:nth-child(7) { animation-delay: 2.1s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.process-content {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-grow: 1;
}

.process-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--off-white);
}

.process-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.process-content p {
    color: var(--light-charcoal);
    margin-bottom: 0;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .client-logo {
        height: 80px;
        padding: 15px;
    }
    
    .client-logo img {
        max-height: 50px;
    }
    
    .process-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .process-content::before {
        left: 25px;
        top: -15px;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid var(--off-white);
        border-top: none;
    }
    
    .process-track {
        left: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--ivory);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fade 1s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

.testimonial-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--gold);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info span {
    font-family: var(--subheading-font);
    font-size: 14px;
    color: var(--gray);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
    background-color: var(--gold);
    color: var(--maroon);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-cta p {
    margin-bottom: 20px;
    font-family: var(--subheading-font);
}

.testimonials-cta .btn-outline {
    margin: 0 10px;
}

/* ===== SERVICES SECTION - SIMPLIFIED ===== */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card-simple {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-simple:hover::before {
    transform: scaleX(1);
}

.service-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--maroon);
}

.service-card-simple h3 {
    margin-bottom: 15px;
    color: var(--maroon);
}

.service-card-simple p {
    color: var(--light-charcoal);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ===== MENU SECTION ===== */
.menu-section {
    background-color: var(--ivory);
}

.menu-categories {
    margin: 40px 0;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--gold-gradient);
    color: var(--maroon);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.category-btn:hover:not(.active) {
    border-color: var(--gold);
    color: var(--maroon);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-content h3 {
    margin-bottom: 10px;
    color: var(--maroon);
    font-size: 1.3rem;
}

.menu-item-content p {
    color: var(--light-charcoal);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-price {
    display: inline-block;
    background: var(--gold);
    color: var(--maroon);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: var(--subheading-font);
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-cta {
    text-align: center;
    margin-top: 50px;
}

.menu-cta p {
    font-family: var(--subheading-font);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--maroon);
}

/* Add to your existing CSS file */

/* ===== SIMPLIFIED TESTIMONIALS ===== */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-charcoal);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    font-size: 1.5rem;
    position: absolute;
}

.testimonial-text::before {
    content: "\f10d";
    left: 0;
    top: -10px;
}

.testimonial-text::after {
    content: "\f10e";
    right: 0;
    bottom: -10px;
}

.testimonial-author {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-author h4 {
    color: var(--maroon);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-author span {
    font-family: var(--subheading-font);
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
}

.testimonials-cta p {
    font-family: var(--subheading-font);
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .testimonial-nav {
        gap: 15px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 45px;
        height: 45px;
    }
}


/* ===== CONTACT MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px 30px;
    background: var(--maroon-gradient);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.2);
    color: var(--gold);
}

.modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-quick {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-item i {
    background: var(--gold);
    color: var(--maroon);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--maroon);
}

.contact-item p {
    margin-bottom: 5px;
    color: var(--light-charcoal);
    font-size: 0.95rem;
}

.contact-form-quick h3 {
    margin-bottom: 20px;
    color: var(--maroon);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-height: 80vh;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .modal-body {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .category-nav {
        gap: 5px;
    }
    
    .category-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Instagram Section */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.insta-post {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-post:hover img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 26, 26, 0.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-likes, .insta-comments {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-family: var(--subheading-font);
    font-weight: 600;
}

.insta-likes i, .insta-comments i {
    margin-right: 8px;
}

.insta-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background-color: transparent;
    font-family: var(--subheading-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--maroon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    margin-bottom: 20px;
    font-family: var(--subheading-font);
}

/* Stats Section */
.stats-section {
    background: var(--maroon-gradient);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.stat-label {
    font-family: var(--subheading-font);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    background-color: var(--gold);
    color: var(--maroon);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-content p, .info-content address {
    margin-bottom: 10px;
    color: var(--light-charcoal);
    font-style: normal;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--maroon);
    font-family: var(--subheading-font);
    font-weight: 600;
    margin-top: 10px;
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.contact-map {
    height: 400px;
    margin-top: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--subheading-font);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-widget a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-widget i {
    font-size: 24px;
    margin-right: 8px;
}

/* Footer */
.footer {
    background: var(--maroon-gradient);
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--maroon);
    transform: translateY(-3px);
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a, .footer-services a {
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--maroon);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--maroon);
        margin: 5px 0;
        transition: var(--transition);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-list a {
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 10px;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .menu-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .prestige-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .prestige-contact, .prestige-social {
        width: 100%;
        justify-content: center;
    }
    
    .prestige-contact span {
        margin: 0 10px 10px 0;
    }
    
    .iso-badge {
        margin: 0 10px 10px 0;
    }
    
    .vip-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .chefs-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .vip-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-img {
        margin-right: 0;
    }
}

.navbar {
  opacity: 1 !important;
  visibility: visible !important;
}

