/* Base Styles & Variables */
:root {
    /* Colors */
    --bg: #ffffff;
    --surface: #f7fbff;
    --primary: #3b82f6;
    --primary-600: #2563eb;
    --accent: #60a5fa;
    --muted: #6b7280;
    --card: #ffffff;
    --glass: rgba(255, 255, 255, 0.6);
    --shadow: 0 10px 25px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --fs-sm: 0.9rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-xxl: 2.25rem;

    /* Spacing */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;

    /* Container */
    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--space-2);
    font-weight: 700;
}

h1 {
    font-size: var(--fs-xxl);
    color: #1f2937;
}

h2 {
    font-size: 2rem;
    color: #111827;
    text-align: center;
    margin-bottom: var(--space-3);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

p {
    margin-bottom: var(--space-2);
    color: var(--muted);
}

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

a:hover {
    color: var(--primary-600);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.col {
    flex: 1 1 100%;
}

.section {
    padding: var(--space-6) 0;
}

.section:nth-child(even) {
    background-color: var(--surface);
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: var(--space-4);
    font-size: var(--fs-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

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

.btn-ghost:hover {
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: var(--glass);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    max-width: 150px;
    height: auto;
    text-decoration: none;
}

/* Navigation */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.hamburger {
    position: relative;
    width: 1.5rem;
    height: 2px;
    background-color: #111827;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background-color: #111827;
    transition: var(--transition);
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.main-nav a {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

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

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
    }

    .main-nav[data-visible="true"] {
        right: 0;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: block !important;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 2rem;
    }

    .main-nav a {
        padding: 0.5rem 0;
    }
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    display: inline-block;
    color: #ffd700;
    font-size: 4rem;
    margin-top: 0.5rem;
}

.hero .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem auto 0;
    max-width: 500px;
}

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary {
    background: linear-gradient(45deg, #ff9a00, #ff6b00);
    border: none;
    color: white;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(45deg, #ff6b00, #ff9a00);
}

.hero .btn-ghost {
    background: transparent;
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1.25rem;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23f0f0f0" d="M30,10L50,30L70,10L90,30L70,50L90,70L70,90L50,70L30,90L10,70L30,50L10,30L30,10Z"/></svg>');
    opacity: 0.05;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.about-content {
    margin-top: 2rem;
    text-align: left;
    line-height: 1.8;
    color: #555;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content p span {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6b00;}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    transition: width 0.3s ease;
}

.feature:hover h3::after {
    width: 60px;
}

.feature p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.specialty-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.specialty-card.featured {
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    border: 1px solid rgba(255, 154, 0, 0.2);
    position: relative;
}

.specialty-card.featured::before {
    content: '★ Featured';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff9a00;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1) rotate(5deg);
}

.specialty-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.specialty-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    transition: width 0.3s ease;
}

.specialty-card:hover h3::after {
    width: 60px;
}

.specialty-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(45deg, #ff9a00, #ff6b00);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(45deg, #ff6b00, #ff9a00);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        margin-bottom: 5rem;
    }

    .about-image {
        flex: 1;
        min-width: 300px;
        margin-top: 1rem;
    }

    .about-intro {
        flex: 1;
        text-align: left;
        padding-top: 1rem;
    }

    .about h2 {
        text-align: left;
        margin-top: 0;
    }

    .about h2::after {
        left: 0;
        transform: none;
    }

    .about-content {
        margin-top: 2.5rem;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .feature {
        padding: 2.5rem 1.5rem;
    }

    .about-cta {
        padding: 3rem 2rem;
        margin-top: 4rem;
    }

    .about-cta h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-cta {
        padding: 3rem 2rem;
    }
}

/* Features Section */
.features {
    text-align: center;
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* Special Selection */
.special-selection {
    padding: 6rem 0;
    text-align: center;
}

.dishes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.dish-card {
    background: var(--card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.dish-content {
    padding: 1.5rem;
    text-align: left;
}

.dish-card h3 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.dish-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: var(--fs-sm);
}

.dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-weight: 700;
    color: #111827;
    font-size: 1.25rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.gallery-slider {
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}



.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

/* Removed .gallery-item:hover for Golden Memories */
.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.13);
}

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

@media (max-width: 1000px) {

    .gallery-item,
    .gallery-track {
        min-width: 220px;
        max-width: 220px;
    }
}

@media (max-width: 700px) {

    .gallery-item,
    .gallery-track {
        min-width: 90vw;
        max-width: 90vw;
    }

    .gallery-slider {
        max-width: 100vw;
    }
}


.gallery .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gallery h2 {
    font-size: 2.8rem;
    color: #222;
    margin: 0 auto 1.5rem;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.gallery h2 span {
    color: #ff6b00;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    border-radius: 2px;
}

/* About Page Styles */
.about-page-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.about-page-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-page-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-page-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    aspect-ratio: 4/3;
}

.about-page-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.about-page-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    text-align: center;
    font-weight: 600;
    color: #333;
    margin: 1rem 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-page-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-page-image {
        aspect-ratio: 4/3;
        max-width: 100%;
    }

    .about-page-image img {
        height: 100%;
    }
}

/* Hero About Section */
.hero-about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff9f5 0%, #f7fbff 100%);
    position: relative;
    overflow: hidden;
}

.hero-about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: auto;
}

.about-hero-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: center;
}

.about-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 4/3;
}

.about-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.image100 img {
    width: 100%;
    height: 100%;
    object-fit: fill !important ;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.image100:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.about-hero-image:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.image-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
    color: #ffd700;
}

.image-overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-text {
    text-align: left;
    padding: 1rem 0;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.about-hero-text h2 span {
    color: #ff6b00;
    position: relative;
}

.about-hero-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-hero-text .about-content {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about-hero-text .about-content p {
    margin-bottom: 1rem;
}

.about-cta {
    margin-top: 2rem;
}

.about-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(45deg, #ff9a00, #ff6b00);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
    background: linear-gradient(45deg, #ff6b00, #ff9a00);
}

/* Responsive adjustments for hero-about */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .about-hero-text h2 {
        font-size: 2.2rem;
    }

    .about-hero-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-hero-images {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 4rem 0;
    }

    .about-hero-images {
        gap: 1rem;
    }

    .about-hero-image {
        max-width: 300px;
        aspect-ratio: 4/3;
    }

    .about-hero-text h2 {
        font-size: 2rem;
    }

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

    .image-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }

    .image-overlay h3 {
        font-size: 1rem;
    }

    .about-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.about-page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.about-page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-modern .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

    .about-page-features {
        grid-template-columns: 1fr;
    }
}

/* About Page Testimonials */
.about-testimonials {
    padding: 4rem 0;
    background-color: #fff;
}

.about-testimonials .section-header h2 {
    font-size: 2.5rem;
}

.testimonial-swiper .feedback-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.testimonial-swiper .feedback-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.contact-form-modern .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form-modern textarea {
    min-height: 150px;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 1rem;
    color: #555;
}

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

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

/* Page Title Styles */
.page-title {
    text-align: center;
    margin-top: 8rem;
    /* Increased space below header */
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #111827;
}

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

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 2;
}

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

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

/* Video Slideshow Section */
.video-slideshow {
    background: linear-gradient(135deg, #fffdfa 0%, #f7fbff 100%);
    padding: 5rem 0 3rem 0;
    position: relative;
    box-shadow: 0 2px 16px rgba(59, 130, 246, 0.07);
}

.video-slideshow .section-header {
    margin-bottom: 2.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2.5rem auto;
}

.video-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 0;
    min-height: 260px;
}


/* Social Icons Bar */
.social-icons-bar {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.7rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
    transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
    font-size: 1.5rem;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #3b5998 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #c4302b 100%);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.15);
    filter: brightness(1.12);
}

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

    .video-wrapper iframe {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .video-slideshow {
        padding: 2.5rem 0 1.5rem 0;
    }

    .video-wrapper iframe {
        height: 100%;
    }

    .video-swiper {
        max-width: 100vw;
    }

    .video-wrapper {
        min-height: 180px;
    }

    .social-icons-bar {
        gap: 1.1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--surface);
}

.testimonials .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials .section-header {
    text-align: center;
}

.testimonials h2 {
    text-align: center;
}

.testimonials .section-subtitle {
    text-align: center;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonials h2 {
    margin: 0 auto 1.5rem;
    text-align: center;
    display: block;
    width: 100%;
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
}

.testimonials .section-subtitle {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 600px;
    color: #6b7280;
    font-size: 1.25rem;
}

.testi-wrap {
    position: relative;
    max-width: 950px;
    margin: 3rem auto 0;
    overflow: visible;
}

.testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    width: 100%;
}

.testi-card {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .testi-card {
        min-width: 50%;
    }
}

@media (min-width: 1200px) {
    .testi-card {
        min-width: 33.33%;
    }
}

.testi-inner {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.09), 0 1.5px 5px rgba(0, 0, 0, 0.04);
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testi-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    overflow: hidden;
    border: 4px solid #ff6b00;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.07);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-quote {
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    background: #fff7f1;
    border-radius: 12px;
    padding: 1.3rem 1.2rem 1.3rem 2.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.04);
    font-size: 1.1rem;
}

.testi-quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: #ff6b00;
    position: absolute;
    left: 0.7rem;
    top: 0.6rem;
    opacity: 0.7;
}

.testi-author {
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.testi-role {
    color: #6b7280;
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}

.testi-rating {
    color: #f59e0b;
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.t-prev,
.t-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    font-size: 1.3rem;
    color: #ff6b00;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.08);
}

.t-prev {
    left: -3.5rem;
}

.t-next {
    right: -3.5rem;
}

.t-prev:hover,
.t-next:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffe1ca;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #fff7f1;
}

.dot.active {
    background-color: #ff6b00;
    border-color: #ffb97a;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testi-inner {
        padding: 2rem 0.7rem 1.7rem 0.7rem;
    }

    .t-prev,
    .t-next {
        left: 0;
        right: 0;
        top: 100%;
        transform: none;
        margin-top: 1.2rem;
        position: static;
    }

    .testi-wrap {
        max-width: 100%;
    }
}

.some-class {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonials h2 {
    margin: 0 auto 1.5rem;
    text-align: center;
    display: block;
    width: 100%;
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
}

.testimonials .section-subtitle {
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 600px;
    color: #6b7280;
    font-size: 1.25rem;
}

.testi-wrap {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    overflow: visible;
}

.testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    width: 100%;
}

.testi-card {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.testi-inner {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.09), 0 1.5px 5px rgba(0, 0, 0, 0.04);
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testi-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    overflow: hidden;
    border: 4px solid #ff6b00;
    box-shadow: 0 2px 10px rgba(255, 107, 0, 0.07);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-quote {
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    background: #fff7f1;
    border-radius: 12px;
    padding: 1.3rem 1.2rem 1.3rem 2.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.04);
    font-size: 1.1rem;
}

.testi-quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: #ff6b00;
    position: absolute;
    left: 0.7rem;
    top: 0.6rem;
    opacity: 0.7;
}

.testi-author {
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.testi-role {
    color: #6b7280;
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}

.testi-rating {
    color: #f59e0b;
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.t-prev,
.t-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    font-size: 1.3rem;
    color: #ff6b00;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.08);
}

.t-prev {
    left: -3.5rem;
}

.t-next {
    right: -3.5rem;
}

.t-prev:hover,
.t-next:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffe1ca;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #fff7f1;
}

.dot.active {
    background-color: #ff6b00;
    border-color: #ffb97a;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testi-inner {
        padding: 2rem 0.7rem 1.7rem 0.7rem;
    }

    .t-prev,
    .t-next {
        left: 0;
        right: 0;
        top: 100%;
        transform: none;
        margin-top: 1.2rem;
        position: static;
    }

    .testi-wrap {
        max-width: 100%;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .contact-form {
        padding: 1.5rem;
    }
}


/* Testimonials Carousel */
.testimonial-swiper {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
    padding-bottom: 2.5rem;

}

.swiper-wrapper {
    align-items: center;
}

.feedback-box {


    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(59, 130, 246, 0.12), 0 1px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    transition: transform 0.18s, box-shadow 0.18s;
}

.feedback-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.feedback-box:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}


/* Golden Memories Section - Custom Layout */
.memories-custom-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.memories-row-top {
    display: flex;
    gap: 2rem;
}

.memory-large {
    flex: 0.8;
    min-width: 120px;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.13), 0 2px 8px rgba(0, 0, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.memory-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.memory-large:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.18), 0 4px 16px rgba(0, 0, 0, 0.13);
}

.memory-vertical-group {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr;
    gap: 1.2rem;
    flex: 1;
    justify-content: space-between;
    height: 100%;
}

.memory-row {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    width: 100%;
}

.memory-small {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    min-width: 120px;
    min-height: 120px;
    transition: transform 0.18s, box-shadow 0.18s;
}

.memory-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.memory-small:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.16), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.memories-row-bottom {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.memory-wide {
    flex: 1;
    min-width: 220px;
    max-width: 340px;
    min-height: 220px;
    aspect-ratio: 1.3/1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.memory-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.memory-wide:hover {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.16), 0 2px 8px rgba(0, 0, 0, 0.10);
}

@media (max-width: 1100px) {
    .memories-row-top {
        flex-direction: column;
    }

    .memory-large,
    .memory-vertical-group {
        width: 100%;
        min-width: 0;
        aspect-ratio: unset;
    }
}

@media (max-width: 700px) {
    .memories-custom-layout {
        gap: 1.2rem;
    }

    .memories-row-bottom {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .memory-wide {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .memories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .memories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.memory-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.11);
    transition: transform 0.18s, box-shadow 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 180px;
}

.memory-box:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.22), 0 4px 16px rgba(0, 0, 0, 0.14);
}

.memory-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.memory-box {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(59, 130, 246, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.memory-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.memory-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.centered-heading {
    text-align: center;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.07), 0 1.5px 5px rgba(0, 0, 0, 0.04);
    padding: 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.contact {
    padding: 6rem 0;
    background: #f5f9ff;
}

.contact .container {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.centered-heading {
    text-align: center;
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    font-weight: 800;
    color: #222;
    background: none;
    box-shadow: none;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(59, 130, 246, 0.07), 0 1.5px 5px rgba(0, 0, 0, 0.04);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.contact h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    font-weight: 800;

    /* Testimonials Section Background Fix */
    .testimonials-section {
        background: linear-gradient(135deg, #e0e7ff 0%, #f5f9ff 60%, #c7d2fe 100%);
        width: 100vw;
        min-height: 100vh;
        padding: 60px 0;
        text-align: center;
        box-sizing: border-box;
        margin-left: calc(-50vw + 50%);
    }

    margin: 0 auto;

    border-radius: 16px;

    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7fafc;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b00;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #ff6b00;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #ff9a00;
}

@media (max-width: 600px) {
    .contact-form {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        border-radius: 8px;
        padding: 0.7rem 5vw;
        box-shadow: none;
    }

    .contact h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.6rem 0.7rem;
        border-radius: 6px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .contact-form button {
        font-size: 1rem;
        padding: 0.7rem;
        border-radius: 6px;
    }
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: var(--fs-base);
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: var(--fs-sm);
    margin-top: 0.25rem;
    display: none;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-success {
    background-color: #d1fae5;
    color: #065f46;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    display: none;
}

.form-success p {
    margin: 0;
    color: #065f46;
    font-weight: 500;
}

/* Star Rating */
.rating-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: #d1d5db;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type="radio"]:checked~label {
    color: #f59e0b;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

#why-choose-us .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

#why-choose-us h2 {
    font-size: 2.8rem;
    color: #222;
    margin: 0 auto 1.5rem;
    position: relative;
    display: block;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

#why-choose-us h2 span {
    color: #ff6b00;
    position: relative;
}

#why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    border-radius: 2px;
}

#why-choose-us .section-subtitle {
    color: #666;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    display: block;
}

.features-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item.highlight {
    border: 1px solid rgba(255, 107, 0, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item.highlight .icon-wrapper {
    background: linear-gradient(135deg, #ff9a00, #ff6b00);
    color: white;
    border-color: transparent;
}

.feature-item.highlight h3 {
    color: #ff6b00;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ff6b00;
    border: 1px dashed rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .icon-wrapper {
    background: linear-gradient(135deg, #ff9a00, #ff6b00);
    color: white;
    transform: rotate(5deg) scale(1.1);
    border-color: transparent;
}

.feature-item i {
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b00;
    transition: width 0.3s ease;
}

.feature-item:hover h3::after {
    width: 100%;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: #ff6b00;
    transition: transform 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.1);
}

.stat-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .features-simple {
        gap: 1.5rem;
    }

    .feature-item {
        min-width: 220px;
        padding: 2rem 1.5rem;
    }

    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 4rem 0;
    }

    #why-choose-us h2 {
        font-size: 2.2rem;
    }

    .features-simple {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .feature-item {
        width: 100%;
        max-width: 400px;
        padding: 2rem;
    }

    .feature-item.highlight {
        transform: none;
    }
}

/* Special Selection - Beverages */
.special-selection {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.special-selection .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.special-selection h2 {
    font-size: 2.8rem;
    color: #222;
    margin: 0 auto 1.5rem;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
}

.special-selection h2 span {
    color: #ff6b00;
    position: relative;
}

.special-selection h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9a00, #ff6b00);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: block;
}

.beverages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.beverage-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.beverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.1);
    border: 2px solid #ff6b00;
}

.beverage-card.highlight {
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
    position: relative;
}

.beverage-card.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #ff6b00;
    border-radius: 15px;
    pointer-events: none;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        border-color: rgba(255, 107, 0, 0.7);
    }

    50% {
        border-color: rgba(255, 107, 0, 1);
    }

    100% {
        border-color: rgba(255, 107, 0, 0.7);
    }
}

.beverage-img {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.beverage-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b00;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beverage-info {
    padding: 1.5rem;
    text-align: center;
}

.beverage-info h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.beverage-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 50px;
}

.beverage-price {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.beverage-card:hover .beverage-price {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

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

    .beverage-img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .special-selection {
        padding: 4rem 0;
    }

    .beverages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .special-selection h2 {
        font-size: 2.2rem;
    }

    .beverage-img {
        height: 350px;
    }
}

/* Footer */

/* Testimonials Carousel */
.testimonial-swiper {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
    padding-bottom: 2.5rem;
}

.swiper-wrapper {
    align-items: center;
}

.feedback-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(59, 130, 246, 0.12), 0 1px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    width: 240px;
    height: 240px;
    margin: 0 auto;
    transition: transform 0.18s, box-shadow 0.18s;
}

.feedback-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.feedback-box:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.site-footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #9ca3af;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact address {
    font-style: normal;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-contact p {
    margin: 0.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1f2937;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #030712;
    padding: 1.5rem 0;
    text-align: center;
    color: #9ca3af;
    font-size: var(--fs-sm);
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* Responsive Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-inner {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }

    .hero-left {
        flex: 1;
        text-align: left;
        margin: 0;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-right {
        flex: 1;
    }

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

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

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
        justify-items: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem 2rem 1rem;
    }

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

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .col-6 {
        flex: 0 0 calc(50% - var(--space-3));
    }

    .about .row {
        align-items: center;
    }

    .about-text {
        padding-right: 2rem;
    }

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

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

@media (min-width: 1200px) {
    .dishes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
        justify-items: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem 2rem 1rem;
    }


    .gallery-item:first-child {
        font-size: 1.5rem;
    }

    /* Utility Classes */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

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

    .mt-1 {
        margin-top: var(--space-1);
    }

    .mt-2 {
        margin-top: var(--space-2);
    }

    .mt-3 {
        margin-top: var(--space-3);
    }

    .mt-4 {
        margin-top: var(--space-4);
    }

    .mt-5 {
        margin-top: var(--space-5);
    }

    .mt-6 {
        margin-top: var(--space-6);
    }

    .mb-1 {
        margin-bottom: var(--space-1);
    }

    .mb-2 {
        margin-bottom: var(--space-2);
    }

    .mb-3 {
        margin-bottom: var(--space-3);
    }

    .mb-4 {
        margin-bottom: var(--space-4);
    }

    .mb-5 {
        margin-bottom: var(--space-5);
    }

    .mb-6 {
        margin-bottom: var(--space-6);
    }

    /* Add to Cart Button Modern UI */
    .add-to-cart-btn {
        display: block;
        margin: 1.1rem auto 0 auto;
        padding: 0.7rem 2.1rem;
        background: linear-gradient(90deg, #ff6b00 0%, #ffb347 100%);
        color: #fff;
        font-size: 1.07rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        box-shadow: 0 2px 12px rgba(255, 107, 0, 0.09);
        cursor: pointer;
        letter-spacing: 1px;
        transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    }

    .add-to-cart-btn:hover {
        background: linear-gradient(90deg, #ffb347 0%, #ff6b00 100%);
        transform: translateY(-3px) scale(1.045);
        box-shadow: 0 8px 24px rgba(255, 107, 0, 0.18);
    }

    .modern-menu-card {
        width: 100%;
        max-width: 420px;
    }

    /* Menu Box Slide-up Animation */
    .modern-menu-card {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.7s cubic-bezier(.77, 0, .18, 1), transform 0.7s cubic-bezier(.77, 0, .18, 1);
    }

    .modern-menu-card.show {
        opacity: 1;
        transform: none;
    }

}