/* ==========================================================================
   GLOBAL VARIABLES
   ========================================================================== */
:root {
    --primary-color: #d4a373;
    /* Gold/Earth tone */
    --primary-dark: #b08d55;
    --secondary-color: #2c3e50;
    /* Dark Blue/Slate */
    --background-color: #fdfdfd;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
a.logo {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5em 3em;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* ==========================================================================
   SHARED UI COMPONENTS (Buttons, Header, Footer)
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.btn-text:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Header & Nav */
.header {
    height: var(--header-height);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo img {
    width: 70px;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}



.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
}

.btn-book {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    display: none !important;
}

.btn-book:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Page Hero (Shared sub-pages) */
.page-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--header-height);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}



/* NAV WRAPPER */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NAV LIST */
.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

/* HAMBURGER */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: var(--text-color);
    border-radius: 4px;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 992px) {

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        width: 100%;
        background: var(--card-bg);
        box-shadow: 0 15px 40px var(--shadow-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.active {
        max-height: 600px;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 18px;
    }

    /* Dropdown fix for mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}






/* Footer (Shared) */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color)); */
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 3em;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    margin: 0;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before,
.footer-services a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    transform: translateX(3px);
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-hours li {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.footer-hours li span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    padding-right: 60px;
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* ==========================================================================
   HOME PAGE SECTIONS (index.html)
   ========================================================================== */

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white) !important;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Why Choose Us (Also on About) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.feature-card {
    padding: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon-box {
    color: var(--primary-color);
}

/* About Brief Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;

}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: auto;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

/* Home-2 */
.home-two .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Services Brief Section */
.services {
    background-color: var(--section-bg-alt, #fcfcfc);
}

.services-grid {
    display: grid;
    margin-top: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    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);
    border: 1px solid var(--border-color, #eee);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
    background: var(--white);
    color: var(--primary-color);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.icon-box {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    background: var(--gray-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .btn-text {
    align-self: center;
    margin-top: auto;
}

@keyframes cardShake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.service {
    text-align: center;
}

.service h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Our Process Section */
.process-section {
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

/* .process-step::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40px;
    right: -25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
} */

.process-step:last-child::after {
    display: none;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Detail Page Specifics */
.service-content-header {
    margin-bottom: 40px;
}

.service-content-header .tag {
    background: rgba(212, 163, 115, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.service-content-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.7;
}

.service-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-main-image:hover img {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(44, 62, 80, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.service-features-grid .feature-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color, #eee);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-features-grid .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-features-grid .feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(212, 163, 115, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.service-features-grid .feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.service-features-grid .feature-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
}

.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid var(--border-color, #eee);
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: var(--gray-light);
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-links a.active,
.sidebar-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(10px);
}

.sidebar-cta {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta .cta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.sidebar-cta h3 {
    color: #fff;
    margin-bottom: 15px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.full-width {
    width: 100%;
}

/* Culinary Gallery Section (Home Page Exclusive) */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.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 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}


/* Testimonials Section */
.testimonials {
    background: #f9fafc;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 38%);
    transition: 0.35s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgb(0 0 0 / 50%);
}

.quote-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quote {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stars {
    color: #FFC107;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Service Areas Section */
.service-areas {
    background-color: #fdfdfd;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content {
    padding: 25px;
}

.area-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.area-content p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Contact Section Refined */
/* .contact {
    background-color: #f9f9f9;
} */

.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact-banner.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-header p {
    opacity: 0.8;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    font-size: 1.5rem;
    background: rgba(212, 163, 115, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-item:hover .icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.info-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.info-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-links-contact {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.2);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

.social-links-contact a i {
    transition: transform 0.3s ease;
}

.social-links-contact a:hover i {
    transform: rotate(360deg);
}

.contact-form-container {
    padding: 60px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.15);
    transform: translateY(-2px);
}

.contact-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4a373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    appearance: none;
}

/* Office Hours Grid */
.office-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.hours-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.hours-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.hours-card p {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.hours-card span {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.hours-card.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hours-card.active h4,
.hours-card.active p,
.hours-card.active span {
    color: white;
}

/* Map Style */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Promotional Ads Styles */
.ads-section {
    background-color: var(--background-color);
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ad-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Animations Staggering */
.fade-in.up:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-in.up:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-in.up:nth-child(3) {
    transition-delay: 0.3s;
}

.ad-card.highlight {
    background: linear-gradient(135deg, var(--white) 0%, #fffbf2 100%);
    border: 2px solid var(--primary-color);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 30px var(--shadow-color);
    }

    50% {
        box-shadow: 0 10px 40px rgba(212, 163, 115, 0.3);
    }

    100% {
        box-shadow: 0 10px 30px var(--shadow-color);
    }
}

.ad-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.ad-card:hover .ad-icon {
    transform: scale(1.2) translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ad-card:hover .ad-badge {
    padding: 5px 60px;
    transition: padding 0.3s ease;
}

.ad-card .ad-icon {
    transition: transform 0.4s ease;
}

.ad-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.ad-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ad-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ad-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.ad-link:hover {
    letter-spacing: 1px;
    color: var(--primary-dark);
    transform: translateX(10px);
}

.map-section-standalone {
    margin-top: 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.map-container:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    transition: transform 0.6s ease;
}

.map-container:hover iframe {
    transform: scale(1.05);
}

.ad-link:hover {
    letter-spacing: 1px;
}


.no-padding-top {
    padding-top: 0;
}


/* ==========================================================================
   ABOUT US PAGE (about.html)
   ========================================================================== */

/* Mission, Sustainability, Awards */
.mission-vision .about-grid,
.sustainability .about-grid {
    align-items: center;
}

.awards-grid .award-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* Team Section */
.team-section {
    background-color: #f9fafc;
}

/* ==========================================================================
   MENU PAGE (menu.html)
   ========================================================================== */

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 15px;
}

/* ==========================================================================
   SERVICES & BLOG GRID (Shared Styles)
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

/* Detail Pages Sidebar Layout */
.page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.sidebar {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

/* ==========================================================================
   DASHBOARD PAGES (user-dashboard & admin-dashboard)
   ========================================================================== */

/* Shared Dashboard Components */
.dashboard-wrapper,
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar,
.admin-sidebar {
    width: 280px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px 20px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
}

.service-sidebar {
    top: 100px;
    width: 100%;
    height: fit-content;
}

.service-sidebar h3 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-brand,
.admin-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.sidebar-brand span,
.admin-brand span {
    color: var(--primary-color);
}

.sidebar-menu,
.admin-menu {
    flex-grow: 1;
}

.sidebar-link,
.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.sidebar-link:hover,
.admin-menu-link:hover,
.sidebar-link.active,
.admin-menu-link.active {
    background: rgba(212, 163, 115, 0.1);
    color: var(--primary-color);
}

.sidebar-footer,
.admin-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-container,
.admin-main {
    flex-grow: 1;
    padding: 40px;
    background: var(--section-bg-alt);
    /* overflow-y: auto; */
}

.dashboard-header,
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.dashboard-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    min-width: 0;
}

.dashboard-title-area div {
    min-width: 0;
}

.header-actions {
    display: flex;
    align-items: center;
}

.dashboard-header h1,
.admin-header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.user-profile,
.admin-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.user-avatar,
.admin-avatar {
    width: 450px;
    /* Note: HTML uses 45 or letters, but CSS uses fixed size containers */
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.admin-main .stat-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.admin-main .stat-card .label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
}

.admin-main .stat-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.admin-main .stat-card .trend {
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-info h3 {
    font-size: 1.8rem;
    margin: 0;
}

.stat-info p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
}

/* User Dashboard Specific */
.user-dashboard-body {
    background-color: var(--background-color);
}

.countdown-box {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.timer-unit span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.dashboard-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow-x: auto;
}

.dashboard-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.recent-bookings {
    width: 100%;
    border-collapse: collapse;
}

.recent-bookings th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--border-color);
    color: var(--light-text);
}

.recent-bookings td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border-color);
}

.status {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-confirmed {
    background: #d1e7dd;
    color: #0f5132;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.progress-bar-reward {
    height: 10px;
    background: var(--border-color);
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill-reward {
    height: 100%;
    background: var(--primary-color);
    width: 75%;
    /* Default, overridden in HTML */
}

.loyalty-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.cuisine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cuisine-tag {
    background: var(--section-bg-alt);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cuisine-tag:hover {
    background: var(--primary-color);
    color: white;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-item {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.notif-icon {
    font-size: 1.5rem;
}

.notif-text p {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.notif-text span {
    font-size: 0.75rem;
    color: var(--light-text);
}

.draft-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.draft-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.draft-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.draft-info p {
    font-size: 0.8rem;
    color: var(--light-text);
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.75rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm:hover {
    background: var(--primary-color);
}

.category-tags .tag {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-tags .tag:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

.category-tags .tag.active {
    background: var(--secondary-color) !important;
    color: #fff !important;
    transform: scale(1.1);
}

.payment-card {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.payment-row.highlight {
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 700;
}

.text-success {
    color: #27ae60;
}

.text-danger {
    color: #e74c3c;
}

/* Dashboard Sidebar Toggle & Responsive Styles */
.sidebar-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--secondary-color);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background: var(--gray-light);
    color: var(--primary-color);
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Admin Dashboard Specific */
.admin-dashboard-body {
    background-color: var(--background-color);
}

.admin-sidebar {
    background: var(--secondary-color);
}

.section-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow-x: auto;
}

.section-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.revenue-chart {
    height: 250px;
    background: var(--section-bg-alt);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 90%;
    gap: 10px;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    background: rgba(212, 163, 115, 0.3);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bar.active,
.bar:hover {
    background: var(--primary-color);
}

.bar span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bar:hover span,
.bar.active span {
    opacity: 1;
}

.bar-label {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--light-text);
    font-weight: 600;
}

.dish-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dish-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.dish-item:last-child {
    border-bottom: none;
}

.dish-rank {
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 10px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-low {
    background: #fff3cd;
    color: #856404;
}

.status-critical {
    background: #f8d7da;
    color: #721c24;
}

.status-on-site {
    background: #d4edda;
    color: #155724;
}

.trend-up {
    color: #2ecc71;
}

.trend-down {
    color: #e74c3c;
}

.admin-grid-complex {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* Page Specific Banners */
.blog-hero {
    height: 50vh;
    background: url('../images/blog-banner.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.contact-banner {
    background-image: url('../images/contact-banner.avif');
}

/* ==========================================================================
   GLOBAL UTILITIES & ANIMATIONS
   ========================================================================== */

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.left {
    transform: translateX(-50px);
}

.right {
    transform: translateX(50px);
}

.up {
    transform: translateY(50px);
}

/* Image Hover Effects */
.hover-effect {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.hover-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.img-placeholder.hover-effect {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}


/* ==========================================================================
   Login & Register Styles
   ========================================================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: url('../images/login-banner.avif') center/cover no-repeat;
    position: relative;
}

.back-home {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    z-index: 10;
}

.back-home:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.auth-container {
    background: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.8s ease;
}

.auth-toggle {
    display: flex;
    background: var(--section-bg-alt);
    padding: 5px;
    border-bottom: 1px solid var(--border-color);
}

.toggle-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    font-weight: 700;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 12px;
}

.toggle-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.auth-form-wrapper {
    padding: 0 30px;
    position: relative;
}

.auth-form-content {
    display: none;
    animation: slideIn 0.4s ease;
}

.auth-form-content.active {
    display: block;
}

.auth-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    /* margin: 0; */
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    /* margin-bottom: 8px; */
    font-family: var(--font-heading);
}

.auth-header p {
    color: var(--light-text);
    font-size: 0.85rem;
}

.auth-header {
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--section-bg-alt);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-me input {
    width: 20px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.auth-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

.form-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
}

.form-footer span {
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="dark"] .toggle-btn.active {
    background: #252525;
}

/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */

/* Blog Hero Section */
.blog-hero {
    height: 80vh;
    background: url('../images/blog-banner.avif');
    background-size: cover;
    background-position: top;
    /* background-attachment: fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    opacity: 0.5;
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.blog-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Blog Categories Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.category-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
}

/* Blog Layout */
.blog-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: start;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

/* Blog Card - Premium Design */
.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px var(--shadow-color);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--light-text);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h5 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.75rem;
    /* color: var(--light-text); */
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--secondary-color);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px var(--shadow-color);
}

.featured-post .blog-card-image {
    height: 100%;
    min-height: 400px;
}

.featured-post .blog-card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), #c99a5c);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-badge i {
    font-size: 0.8rem;
}

.featured-post h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.featured-post p {
    font-size: 1.05rem;
    -webkit-line-clamp: 4;
}

/* Blog Sidebar */

.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    /* THIS FIXES STICKY */
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 10;
}


.sidebar-widget {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 50px var(--shadow-color);
}

.sidebar-widget h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--background-color);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 44px;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Categories Widget */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--background-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(5px);
}

.category-item span:last-child {
    background: var(--card-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-item:hover span:last-child {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-info h5 {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-item:hover .recent-post-info h5 {
    color: var(--primary-color);
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.recent-post-info span i {
    color: var(--primary-color);
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: var(--background-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Newsletter Widget */
.newsletter-widget p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-widget .newsletter-form {
    position: relative;
}

.newsletter-widget .newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    background: none;
    color: var(--text-color);
    margin-bottom: 15px;
}

.newsletter-widget .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-widget .newsletter-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-widget .newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
}

/* ==========================================================================
   BLOG DETAIL PAGE STYLES
   ========================================================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 60px;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.blog-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.blog-detail-hero:hover .blog-detail-hero-bg {
    transform: scale(1.02);
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.blog-detail-hero .blog-card-category {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-detail-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail-meta .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-meta .author-avatar {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
}

.blog-detail-meta .author-name {
    font-weight: 600;
    font-size: 1rem;
}

.blog-detail-meta .author-role {
    font-size: 0.85rem;
    opacity: 0.8;
}

.blog-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.blog-detail-meta .meta-item i {
    color: var(--primary-color);
}

/* Blog Detail Content */
.blog-detail-section {
    padding: 80px 0;
    background: var(--background-color);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    align-items: start;
}

.blog-article {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.blog-article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.blog-article-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    position: relative;
    padding-left: 20px;
}

.blog-article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-article-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.blog-article-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.blog-article-content img {
    width: 100%;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.blog-article-content blockquote {
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.1), rgba(212, 163, 115, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 30px 40px;
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    position: relative;
}

.blog-article-content blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0 20px 30px;
}

.blog-article-content li {
    margin-bottom: 12px;
    color: var(--light-text);
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-tags span {
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.share-section span {
    font-weight: 600;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.author-box-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.author-box-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-box-content .author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-box-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.comments-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
    resize: vertical;
    min-height: 150px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.comment-form button {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
}

/* Blog Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Recipe Info Box - Detail Page */
.recipe-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    background: var(--gray-light);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

.recipe-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.recipe-info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.recipe-info-item div {
    display: flex;
    flex-direction: column;
}

.recipe-info-item strong {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

.recipe-info-item span {
    color: var(--light-text);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Chef Details Section */
.chef-details-section {
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.chef-profile {
    display: flex;
    align-items: center;
    gap: 30px;
}

.chef-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    padding: 3px;
    background: #fff;
}

.chef-info h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.chef-designation {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chef-info p {
    color: #000;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
}

/* Related Posts Details */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--secondary-color);
    text-align: justify;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

/* Main Menu Section */
.menu-section {
    background: var(--background-color);
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 90vh;
}

.menu-split-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.menu-left-book {
    flex: 1.8;
    min-width: 0;
}

.menu-right-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    /* padding-top: 40px; */
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-book-hero {
    width: 100%;
    height: 600px;
    position: relative;
    perspective: 2500px;
}

.book-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.book {
    /* Width of one physical sheet */
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Central Spine - Anchored to the left of the book container */
.book::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 100%;
    left: -6px;
    top: 0;
    background: linear-gradient(to right, #8d6e3f, #ac8551, #8d6e3f);
    transform: rotateY(-90deg);
    transform-origin: right;
    z-index: 5;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1), z-index 0s linear 0.6s;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.book-page.active {
    background-image: url(/assets/images/book.jpg);
}

/* Cursor change on last page */
.book.at-end .book-page {
    cursor: not-allowed;
}

.book-page.flipped {
    transform: rotateY(-180deg);
}

.page-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    padding: 35px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Page content backgrounds - Forced White for internal pages */
.page-content.front,
.page-content.back {
    background: #ffffff !important;
}

.page-content.back {
    transform: rotateY(180deg);
}

/* Exception for the Front Cover */
#page1 .page-content.front {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/book.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    color: #fff;
    /* border: 4px solid #ac8551; */
}

/* Right Panel Aesthetic Refinements */
.service-highlight h3 {
    font-size: 2.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.service-highlight p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-panel {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.category-panel h4 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud .tag {
    cursor: pointer;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.tag-cloud .tag.active,
.tag-cloud .tag:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

.menu-cta {
    background: linear-gradient(135deg, var(--secondary-color), #2a3a4a);
    padding: 35px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
}

.menu-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Paper Texture overlay */
.page-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    opacity: 0.05;
    pointer-events: none;
}

/* Page content elements */
.page-item-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cover Text Styling - Locked for both modes */
.menu-title {
    font-family: var(--font-heading);
    color: #ffffff !important;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.menu-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    line-height: 1.6;
}

.menu-note {
    margin-top: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

.page-item-details {
    text-align: center;
}

.page-item-details h4 {
    font-size: 1.6rem;
    color: #2c3e50 !important;
    /* Fixed dark color for readability on white pages */
    margin-bottom: 10px;
}

.page-item-details .menu-description {
    color: #ffffff !important;
}

.page-item-details p {
    font-size: 0.95rem;
    color: #020000 !important;
    /* Dark gray for readability on white pages */
    margin-bottom: 8px;
    line-height: 1.5;
}

.page-item-info {
    font-size: 0.82rem;
    color: #070707;
    background: #f9f9f9;
    padding: 6px 10px;
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 12px;
    text-align: left;
    font-style: italic;
}

.page-item-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.page-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cover Styling */
#page1 .page-content.front {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../assets/images/book.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#page1 .page-content.back {
    background: #ffffff !important;
}

/* Navigation Tags */
.menu-category-nav {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.category-tags {
    display: flex;
    gap: 15px;
}

.category-tags .tag {
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tags .tag.active {
    background: var(--primary-color);
    color: #fff;
}


.service-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
    transition: all 0.3s ease;
}

.service-info-item:hover {
    transform: translateX(10px);
}

.service-info-item i {
    font-size: 1.5rem;
    padding-top: 5px;
}

.service-info-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.service-info-item p {
    color: var(--light-text);
    line-height: 1.5;
}

.chef-note-mini:hover {
    background: rgba(var(--primary-rgb), 0.05) !important;
}

/* Page Navigation Shadows & Texture */
.book-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent 15%, transparent 85%, rgba(0, 0, 0, 0.05));
    z-index: 5;
    pointer-events: none;
}

/* 404 page */
.error-section {
    padding: 150px 20px 100px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.error-text {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* coming soon page */

.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.coming-soon-container {
    max-width: 800px;
    width: 100%;
    z-index: 2;
}

.coming-soon-logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.coming-soon-logo img {
    height: 90px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.coming-soon-content h1 {
    font-size: 4.5rem;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 20px;
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

.countdown-item span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4a373;
    /* Using var(--primary-color) equivalent */
}

.countdown-item label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.coming-soon-newsletter {
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.coming-soon-newsletter h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.coming-soon-form {
    display: flex;
    gap: 15px;
}

.coming-soon-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 25px;
    border-radius: 12px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.coming-soon-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4a373;
}

.coming-soon-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

.coming-soon-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2rem;
    color: #ffffff;
}

.coming-soon-social a:hover {
    background: #d4a373;
    transform: translateY(-8px) rotate(8deg);
    border-color: #d4a373;
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}






/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    .admin-grid-complex {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        display: none;
    }

    .menu-split-container {
        flex-direction: column;
        height: auto !important;
        padding-bottom: 50px;
    }

    .menu-left-book {
        flex: 0 0 100%;
        height: 600px;
        margin-bottom: 60px;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-split-container {
        gap: 0px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .sidebar,
    .admin-sidebar {
        width: 240px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

}

@media (max-width: 992px) {
    .process-step::after {
        display: none;
    }

    .menu-book-hero {
        height: 500px;
    }

    /* .blog-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    } */

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        background-color: var(--white);
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        /* Limit width for a cleaner drawer look */
        height: calc(100vh - var(--header-height));
        padding: 40px 20px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 10px 0 10px 20px;
        box-shadow: none;
        background: transparent;
        border-left: 2px solid var(--primary-color);
        margin-top: 5px;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 900px) {
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post .blog-card-image {
        height: 300px;
    }

    .featured-post .blog-card-content {
        padding: 30px;
    }

    .featured-post h3 {
        font-size: 1.5rem;
    }

    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-detail-hero h1 {
        font-size: 2rem;
    }

    .blog-article {
        padding: 30px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-info {
        padding: 40px;
        order: 2;
    }

    .contact-form-container {
        padding: 40px;
        order: 1;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .ads-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Services Responsive */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .book.is-closed {
        transform: translateX(0);
        /* Center single page */
    }

    .areas-grid,
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .menu-book-hero {
        max-width: 500px;
    }

    .book {
        width: 100%;
        max-width: 400px;
    }

    .menu-left-book {
        height: 550px;
        perspective: 1800px;
    }

    .book {
        width: 100%;
        max-width: 450px;
    }

    .book.is-closed {
        transform: translateX(0);
        /* Center single page */
    }

    .menu-book-hero {
        max-width: 500px;
    }

    .page-content {
        padding: 30px 20px;
    }

    .book-page {
        width: 100%;
        left: 0;
        right: auto;
    }

    .page-item-image {
        height: 250px;
    }

    .page-item-details h4 {
        font-size: 1.4rem;
    }

    .menu-right-info {
        padding: 0 15px;
    }

    /* Services & Detail Responsive */
    /* .services-grid {
        grid-template-columns: 1fr;
    } */

    .service-main-image img {
        height: 300px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .recipe-info-box {
        grid-template-columns: 1fr 1fr;
    }

    .chef-profile {
        flex-direction: column;
        text-align: center;
    }

    .chef-info p {
        margin: 0 auto;
    }

    .blog-sidebar {
        display: none !important;
    }

    .blog-article {
        padding: 0;
        box-shadow: none;
        background: none;
        border: none;
    }

    .sidebar-toggle {
        display: flex;
    }

    .sidebar,
    .admin-sidebar {
        position: fixed;
        left: -280px;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        height: 100vh;
    }

    .sidebar.active,
    .admin-sidebar.active {
        left: 0;
    }

    .sidebar-close {
        display: block;
    }

    .main-container,
    .admin-main {
        padding: 20px;
    }

    .dashboard-header,
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-actions {
        width: 100%;
        justify-content: right;
        display: flex;
        flex-direction: row-reverse;
    }

    .section {
        padding: 2em 2em;
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
    }

    .footer-brand,
    .footer-links,
    .footer-hours,
    .footer-newsletter {
        width: 100%;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    /* Timeline Mobile */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-container {
        padding: 40px 30px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-categories {
        gap: 8px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }

    .share-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-hours,
    .footer-newsletter {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-hours h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    /* Services Detail Mobile Fixes */
    .service-content-header h2 {
        font-size: 2rem;
    }

    .service-main-image img {
        height: 250px;
    }

    .sidebar-box,
    .sidebar-cta {
        padding: 25px 20px;
    }

    .service-detail-section .container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .recipe-info-box {
        grid-template-columns: 1fr;
    }

    .menu-left-book {
        height: 520px;
        perspective: 1500px;
    }

    .page-content {
        padding: 20px 15px;
    }

    .page-item-image {
        height: 200px;
        margin-bottom: 15px;
    }

    .page-item-details h4 {
        font-size: 1.25rem;
    }

    .page-item-details p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .page-item-info {
        font-size: 0.78rem;
        padding: 4px 8px;
        margin-bottom: 10px;
    }

    .page-item-price {
        font-size: 1.25rem;
    }

    .order-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .menu-split-container {
        padding-bottom: 30px;
    }

    /* Services Detail Small Mobile Fixes */
    .service-content-header h2 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .service-features-grid .feature-item {
        padding: 15px;
    }

    .menu-cta {
        padding: 10px;
    }
}