/* --- 1. Variables & Global Reset --- */
/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Core Palette */
    --primary-color: #5b1f24;
    --primary-dark: #3a1114;
    --accent-color: #d6b25e;
    --accent-glow: rgba(214, 178, 94, 0.4);

    /* Typography & Text */
    --text-light: #fffcf7;
    --text-dark: #2c2420;
    --text-gray: #5d5550;

    /* Backgrounds */
    --bg-light: #fffcf7;
    --bg-medium: #f4efe6;
    --bg-white: #ffffff;

    /* Design Tokens */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(91, 31, 36, 0.08);
    --shadow-hover: 0 20px 40px rgba(91, 31, 36, 0.15);
    --border-radius-lg: 24px;
    --border-radius-pill: 100px;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-accent: rgb(247, 199, 35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

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

body {
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. Typography --- */
h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary-color);
}

p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* Tablet+ Font Size Increase */
@media (min-width: 768px) {
    p {
        font-size: 1.15rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* --- 3. Navbar (Sticky & Glassy) --- */
.navbar {
    background: rgba(91, 31, 36, 0.95);
    /* Semi-transparent Primary */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 20px;
}

.navbar nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar .logo {
    width: 100px;
}

/* .navbar .logo a{
    width: 100px;
    height: 100px;
} */
.navbar .logo img {
    height: 100px;
    width: auto;
    transition: var(--transition-fast);
    position: absolute;
    top: 5px;
    left: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    /* Logo border */
}

.navbar .logo img:hover {
    transform: scale(1.1) rotate(-10deg);
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar nav ul a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;

}

/* Center-out underline animation */
.navbar nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar nav ul a:hover::after,
.navbar nav ul a.active::after {
    width: 100%;
}



.navbar nav ul a.active {
    color: var(--accent-color);
}

/* CTA Button */
.navbar .cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .whatsapp {
    background: linear-gradient(135deg, var(--accent-color), #eecda3);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 178, 94, 0.3);

    svg {
        transition: all 0.8s ease-in;
    }
}

.navbar .whatsapp:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: whatsapp-pulse 1s infinite;
}

.navbar .whatsapp:hover svg {
    animation: whatsapp-wiggle 1s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes whatsapp-wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

svg {
    transform: rotateX(360deg);
}


/* Home Section */
.home {
    display: flex;
    margin: 5px 70px 70px 70px;
    justify-content: center;
    border-radius: 20px;
}

.home .container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Background image removed in favor of video, kept as fallback in HTML poster if needed, 
       but strictly we remove the url() here to rely on the video element */
    background-color: #000;
    /* Fallback color */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 25px;
    max-width: 100%;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
    /* Restore these for menu.html header which uses inline background-image */
    background-size: cover;
    background-position: center;
}

.home .container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home .bg {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 25px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    /* Increased contrast */
    backdrop-filter: blur(5px);
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home .text {
    color: white;
}

.home .text h3 {
    color: var(--bg-medium);
    font-size: 20px;
    padding-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home .text h1 {
    text-align: center;
    padding: 5px;
    font-size: 50px;
    color: var(--bg-medium);
    border-bottom: 5px solid var(--accent-color);
    padding-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- 4. Contact Form (Modern & Accessible) --- */
.home .text h1 {
    text-align: center;
    padding: 5px;
    font-size: 50px;
    color: var(--bg-medium);
    border-bottom: 5px solid var(--accent-color);
    /* Thinner, accent color */
    padding-bottom: 25px;
    /* Removed border-radius 45% on text block, looked odd */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home .form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: clamp(450px, 550px, 650px);
    z-index: 10;
}

.form-header h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

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

.form-group input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    height: 50px;
    border-radius: 20px;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.form-group input[type="submit"]:hover {
    background-color: #7a2b30;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* --- 5. About Us (Magazine Style) --- */
.about_us {
    padding: 100px 40px;
    background: var(--bg-light);
}

.about_us .container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Text Side */
.about_us .container .text {
    flex: 1;
}

.about_us .container .text h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 20px;
    border-left: 6px solid var(--accent-color);
}

.about_us .container .text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Image Side */
.about_us .container .image {
    flex: 1;
    position: relative;
}

.about_us .container .image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: -20px 20px 0 var(--accent-color), 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.about_us .container .image img:hover {
    transform: scale(1.02) translate(5px, -5px);
    box-shadow: -15px 15px 0 var(--primary-color), 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* --- 6. Why Choose Us (Grid & Cards) --- */
.choose_us {
    padding: 100px 40px;
    background: var(--bg-medium);
}

.choose_us .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.choose_us .container .text h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    border-left: none;
}

.choose_us .box_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Prevent overflow */
    gap: 30px;
    width: 100%;
}

@media (min-width: 992px) {
    .choose_us .box_container {
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 columns */
    }
}

.choose_us .box_container .box {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    /* Clickable */
}

/* Hidden Text for Mindmap Effect */
.choose_us .box_container .box p {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
    margin-top: 15px;
}

.choose_us .box_container .box.active p {
    display: block;
    max-height: 500px;
    /* Allow room for content */
    animation: fadeIn 0.4s ease forwards;
}

.choose_us .box_container .box.active p {
    animation: fadeIn 0.5s forwards;
}

/* Visual hint for clickable cards */
.choose_us .box_container .box::after {
    content: "Click to expand";
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.choose_us .box_container .box.active::after {
    display: none;
}

/* Tablet+ Visibility: Show text by default */
@media (min-width: 768px) {

    .choose_us .box_container .box p,
    .our_services .box p,
    .box2 .box p {
        display: block;
        opacity: 1;
        max-height: none;
        margin-top: 15px;
    }

    /* Hide the "Click to expand" hint on larger screens where text is visible */
    .choose_us .box_container .box::after {
        display: none;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.choose_us .box_container .box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.choose_us .box_container .box .svg {
    width: 80px;
    height: 80px;
    padding: 15px;
    background: var(--bg-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.choose_us .box_container .box:hover .svg {
    background: var(--primary-color);
    color: var(--accent-color);
}

.choose_us .box_container .box .box-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.choose_us .box_container .box .box-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* --- 7. Our Services (Modern Lists) --- */
.our_services {
    padding: 100px 40px;
    background: var(--bg-light);
}

.our_services .container {
    max-width: 1300px;
    margin: 0 auto;
}

.our_services .container .text h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
}

.our_services .box_container {
    display: flex;
    gap: 30px;
}

/* Big Column */
.our_services .box_container .box1 {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: none;
}

.our_services .box_container .box1 .box {
    padding: 30px;
    background: var(--bg-medium);
    border-radius: 16px;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our_services .box_container .box1 .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}




/* Small Column (Grid of 2) */
.our_services .box_container .box2 {
    flex: 1;
}

.our_services .box_container .box2 .box2-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.our_services .box_container .box2 .box2-container .box {
    flex: 1;
    background: var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
}


.our_services .box_container .box2 .box2-container .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transition: 0.5s;
    pointer-events: none;
}

.our_services .box_container .box2 .box2-container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(91, 31, 36, 0.4);
}

.our_services .box_container .box2 .box2-container .box:hover::before {
    opacity: 0.5;
}

/* --- Redesigned Service Cards (Full Image) --- */

.our_services .box_container .box1 .box,
.our_services .box_container .box2 .box2-container .box {
    position: relative;
    height: 380px;
    overflow: hidden;
    padding: 0;
    background: #000;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* 2. Background Image */
.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

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

/* 3. Text Overlay Content */
.card-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, var(--primary-color) 40%, transparent 100%);
    /* Increased gradient coverage for readability */
    padding: 20px;
    color: white;
    width: 100%;
    text-align: left;
    transform: translateY(0);
    max-height: 60%;
    /* Prevent covering full image */
    overflow-y: auto;
    /* Scroll if text is too long */
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    cursor: pointer;
    /* Interactive: Collapse by default */
    height: auto;
    min-height: auto;
}

/* Hide details by default for Mindmap effect */
.card-content p,
.card-content .sample-menu,
.card-content .price-tag {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

/* Show details when active */
.box.active .card-content p,
.box.active .card-content .sample-menu,
.box.active .card-content .price-tag {
    display: block;
    opacity: 1;
    max-height: 500px;
    animation: fadeIn 0.4s ease forwards;
}

.box.active .card-content {
    background: linear-gradient(to top, var(--primary-color) 90%, transparent 100%);
}

/* Titles & Text */
.card-content h3 {
    color: white;
    font-size: 1.7rem !important;
    /* Enforce consistent size */
    margin-bottom: 8px;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.card-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.06rem;
    /* Enforce consistent size */
    margin-bottom: 10px;
    line-height: 1.5;
    /* Removed truncation to show full text */
}

/* --- 8. Text-First Hero Section (Split Layout) --- */
.hero-text {
    padding: 120px 20px 60px;
    /* Reduced vertical padding */
    background-color: var(--bg-light);
    background-image:
        radial-gradient(circle at 85% 15%, rgba(214, 178, 94, 0.12) 0%, transparent 50%),
        /* Soft gold glow */
        radial-gradient(circle at 15% 85%, rgba(91, 31, 36, 0.04) 0%, transparent 50%);
    /* Soft maroon glow */
    background-size: 100% 100%, 100% 100%;
    /* Removed pattern sizing */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    /* Taller to accommodate form */
    text-align: left;
    /* Align text left for split view */
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.decor-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.03;
    stroke-width: 1px;
}

.decor-top-left {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    transform: rotate(15deg);
}

.decor-bottom-right {
    bottom: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    transform: rotate(-15deg);
}

.hero-text .container {
    max-width: 1200px;
    /* Wider container for split layout */
    display: flex;
    flex-direction: row;
    /* Split Layout */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-split .hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-split .hero-form-wrapper {
    flex: 0 0 400px;
    /* Fixed width form */
    width: 400px;
}

.hero-form-wrapper form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-form-wrapper p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: none;
    padding: 0;
    text-align: left;
    /* Explicitly align left */
}

.hero-text .subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 0;
    /* Align left naturally */
    line-height: 1.6;
    text-align: left;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 25px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Align start */
    opacity: 0.9;
}

.cta-row.mobile-only {
    display: none;
    /* Hide by default on desktop */
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 35px;
    /* Match btn-primary roughly */
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 31, 36, 0.15);
}

/* Reassurance Bar */
.reassurance-bar {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    /* Increased weight */
    color: var(--text-dark);
    /* Darker text for premium feel */
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.reassurance-item span {
    font-size: 1.4rem;
}

.reassurance-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    /* Premium icon color */
    stroke-width: 2px;
}

/* --- 9. Testimonials Section (New) --- */
.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-medium);
}

.testimonials-section .container .text h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 15px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

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

.testimonial-card .stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card .review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.reviewer .avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer .info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0;
}

.reviewer .info span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- 10. Footer --- */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Brand Col */
.links {
    margin-left: 100px;
}

.footer-col.brand .logo img {
    max-width: 150px;
    margin-bottom: 20px;
    opacity: 1;
}

.footer-col.brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Links Col */
.footer-col.links ul {
    list-style: none;
}

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

.footer-col.links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-size: 1.1rem;
    display: inline-block;
}

.footer-col.links ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Slightly more visible separator */
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* --- 11. Responsive Styles --- */
/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
@media only screen and (max-width: 968px){
    
}

/* Tablet & Mobile */
@media (max-width: 968px) {

    /* 0. Navbar Wrapper: Disable Sticky */
    .navbar {
        position: sticky;
        top: 0;
    }

    /* 1. Navbar: Reordered Layout (Hamburger Left, Logo Center, WhatsApp Right) */
    .navbar header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        /* Push items to extremes */
        padding: 10px 20px;
        /* Slightly more horizontal padding */
        gap: 0;
        position: relative;
        /* For absolute centering of logo */
    }

    .hamburger {
        display: flex;
        order: 1;
        /* First position */
        margin: 0;
        z-index: 10;
    }

    .navbar .logo {
        order: 2;
        /* Second - Center */
        transform: translateX(-50%);
    }

    .navbar .logo img {
        max-height: 50px;
        width: auto;
        margin-right: clamp(0px, 30px, 100px);
        position: relative;

    }

    .navbar .cta {
        order: 3;
        /* Third - Right */
        margin: 0;
    }

    /* Push nav out of normal flow */
    .navbar nav {
        order: 99;
    }

    /* WhatsApp Button Mobile Optimization - Icon Only */
    .navbar .cta a {
        padding: 8px 10px !important;
        font-size: 0 !important;
        /* Hide text */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 44px;
        /* WCAG Min touch target */
        height: 44px;
        /* WCAG Min touch target */
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .navbar .cta a svg {
        margin: 0 !important;
        width: 20px;
        height: 20px;
    }

    .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        /* Dark background for mobile menu */
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        text-align: center;
        border-radius: 0 0 20px 20px;
    }

    .navbar nav.active {
        display: block;
        /* Show when active */
    }

    .navbar nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow-y: auto;
        max-height: 80vh;
    }

    /* Scroll indicator for menu */
    .navbar nav ul::-webkit-scrollbar {
        width: 4px;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar nav ul::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 4px;
    }

    .navbar nav ul a {
        font-size: 1.2rem;
        color: white;
        display: block;
        padding: 10px 0;
    }

    /* CTA in nav dropdown - commented out to preserve header layout */
    \n
    /* .navbar .cta { width: 100%; display: flex; justify-content: center; } */

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        text-align: center;
        box-shadow: none;
        transform: none;
        padding: 10px;
        display: none;
    }

    .dropdown-parent:hover .dropdown-menu {
        display: block;
    }

    /* 2. Hero Section: Stacked Content */
    .home {
        margin: 20px 20px 60px 20px;
        /* Reduced margins */
    }

    .home .bg {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
    }

    .home .text {
        text-align: center;
        width: 100%;
    }

    .home .text h1 {
        font-size: 2.2rem;
        /* Smaller title */
        border-bottom: 3px solid var(--accent-color);
        padding-bottom: 15px;
        padding-right: 0;
        /* Reset padding */
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .home .form {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    /* 3. About Us: Stacked Content */
    .about_us {
        padding: 60px 20px;
    }

    .about_us .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about_us .container .text h1 {
        font-size: 2.5rem;
        border-left: none;
        border-bottom: 4px solid var(--accent-color);
        padding-left: 0;
        padding-bottom: 15px;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .about_us .container .text p {
        text-align: center;
        /* Center text for mobile */
        font-size: 1rem;
    }

    .about_us .container .image {
        width: 100%;
    }

    /* 4. Service Section Responsive - Revert to Stacked */
    .our_services .box_container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-top: 20px;
    }

    /* Restore Flex Blocks */
    .our_services .box_container .box1,
    .our_services .box_container .box2,
    .our_services .box_container .box2 .box2-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .our_services .box_container .box1 .box,
    .our_services .box_container .box2 .box2-container .box {
        width: 100%;
        height: 250px;
        /* Default height */
        flex: none;
    }

    /* Increase height for last two boxes (Packed Meals, etc.) */
    .our_services .box_container .box2 .box2-container .box {
        height: 350px;
        /* Taller */
    }

    /* Smaller Font Size for Mobile */
    .card-content h3 {
        font-size: 1.1rem !important;
    }

    .card-content p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }

    /* 5. Menu Header Text Cleanup */
    .home .content h3 {
        display: none;
        /* Hide H3 on mobile */
    }

    /* 6. Why Choose Us - Compact Accordion */
    .choose_us .box_container .box {
        padding: 20px;
        /* Reduced padding */
        min-height: auto;
    }

    .choose_us .box_container .box .svg {
        width: 50px;
        /* Smaller Icon */
        height: 50px;
        padding: 10px;
        margin-bottom: 15px;
    }

    .links {
        margin-left: 0px;
    }

}

/* --- 12. Menu Page Styles --- */
.menu-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.menu-category {
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    font-family: 'DM Sans', serif;
    /* Use a more elegant font if available, fallback to DM Sans */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-category h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two distinct columns for desktop */
    column-gap: 80px;
    /* Large gap between columns */
    row-gap: 30px;
}

.menu-item {
    background: transparent;
    padding: 0 0 15px 0;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-fast);
    border: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
    /* Dotted separator */
    position: relative;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: none;
    border-color: var(--accent-color);
}

.menu-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
    font-family: 'DM Sans', serif;
}

.menu-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

/* --- Menu Navigation Index --- */
.menu-index-container {
    position: sticky;
    top: 60px;
    /* Adjust based on navbar height which is approx 66px, tweaked for gap */
    background: var(--bg-light);
    z-index: 900;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.menu-index {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.index-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.index-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91, 31, 36, 0.2);
}

/* Mobile Adjustments for Menu */
@media (max-width: 768px) {
    .menu-index-container {
        top: 0;
        /* Reset sticky top for mobile if header changes */
        padding: 15px 0;
        overflow-x: auto;
        white-space: nowrap;
        background: var(--bg-light);
    }

    .menu-index {
        justify-content: flex-start;
        /* Align left for scrolling */
        flex-wrap: nowrap;
        /* Prevent wrapping */
        padding-bottom: 5px;
        /* Space for scrollbar if any */
    }

    .menu-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 30px;
    }

    .menu-category h2 {
        font-size: 2rem;
    }

    .menu-section {
        padding: 60px 20px;
    }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 31, 36, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #7a2b30;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 31, 36, 0.4);
    color: white;
}

/* Footer Flex Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
}

.footer-bottom>p {
    margin: 0;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 30px;
    }

    .watermark-wrapper {
        position: static;
        transform: none;
        justify-content: center;
        width: 100%;
    }
}

/* --- V&M Creations Watermark --- */
.logo-essential {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter bg for footer */
    padding: 8px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo-essential .vm {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
    margin-bottom: 3px;
    display: block;
    transition: all 0.3s ease;
}

.logo-essential .creations {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-color);
    margin-top: 2px;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-essential:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.logo-essential:hover .vm {
    border-bottom-color: #ffffff;
    text-shadow: 0 0 10px rgba(214, 178, 94, 0.6);
}


/* --- Page Transitions --- */
body {
    /* Ensure body has a background so fade looks right, 
       but for color transition we might need an overlay */
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

/* Create a pseudo-element for the color transition layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

body.fade-out::before {
    opacity: 1;
}


.logo-essential:hover .creations {
    letter-spacing: 9px;
    color: #ffffff;
}

/* --- New Footer Elements --- */

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Toast Notification --- */
#toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#toast-notification.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

/* Back to top styles moved to css/back_to_top.css */

/* --- Responsive Adjustments for Split Hero --- */
@media (max-width: 992px) {
    .hero-text {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
        text-align: center;
        /* Center on mobile */
    }

    .hero-text .container {
        flex-direction: column;
        /* Stack vertically on tablet/mobile */
        gap: 40px;
    }

    .hero-split .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 2.8rem;
    }

    .hero-text .subheadline {
        text-align: center;
        margin: 0 auto;
    }

    .trust-strip {
        justify-content: center;
    }

    .reassurance-bar {
        justify-content: center;
    }

    .hero-split .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        /* Limit width on mobile */
    }

    /* Show mobile CTA if needed, but form is there so maybe not essential. 
       Keeping it hidden as user has form immediately below */
    .cta-row.mobile-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .trust-strip {
        font-size: 0.9rem;
        flex-direction: row;
        /* Allow wrap */
        gap: 10px;
    }

    .trust-strip span {
        display: inline-block;
    }

    .reassurance-bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-form-wrapper form {
        padding: 20px;
    }
}

/* --- Toast Notification --- */
#toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #333;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    justify-content: center;
}

#toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#toast-notification.success {
    background-color: #2ecc71;
}

#toast-notification.error {
    background-color: #e74c3c;
}