/* =========================================================================
   HUMMUS BODEGA - CLASSIC ISRAELI THEME JAVASCRIPT
   WITH 3D INTERACTIVITY
   ========================================================================= */

:root {
    /* Color Palette */
    --green: #006847;
    --green-dark: #004d34;
    --green-light: #168a64;
    --yellow: #FFC425;
    --yellow-dark: #e5ab11;
    --yellow-light: #ffd052;

    --bg-white: #ffffff;
    --bg-light: #FBFAF8;

    --text-dark: #222222;
    --text-muted: #555555;
    --text-white: #ffffff;

    /* Fonts */
    --font-heading: 'Suez One', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --tr-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================== RESET & BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
    perspective: 1000px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 3rem;
}

.mt-12 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

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

.bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.bg-brand-green {
    background-color: var(--green);
    color: var(--text-white);
}

.bg-dark-green {
    background-color: var(--green-dark);
}

.bg-green {
    background-color: var(--green);
}

.bg-yellow {
    background-color: var(--yellow);
}

.text-white {
    color: var(--text-white) !important;
}

.text-green {
    color: var(--green) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.9rem;
}

.section-wrapper {
    padding: 6rem 0;
    position: relative;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--green);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ================== TYPOGRAPHY ================== */
.section-title {
    font-size: 3rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bg-brand-green .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}


/* ================== NOVEL 3D UTILS & ANIMATIONS ================== */

/* 1. SCROLL REVEALS */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s var(--tr-smooth);
}

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

.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(40px) translateZ(-50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) translateZ(0);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

/* 2. TILT CONTAINERS (for JS Hook) */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s, box-shadow 0.3s ease;
    will-change: transform;
}

/* Items within tilt containers that pop out in Z space */
.translate-z-text {
    transform: translateZ(40px);
    transition: transform 0.3s ease;
}

.translate-z-image {
    transform: translateZ(60px);
    transition: transform 0.3s ease;
}

.tilt-card:hover .translate-z-text {
    transform: translateZ(50px);
}

.tilt-card:hover .translate-z-image {
    transform: translateZ(80px);
}

/* 3. HOVERS (CSS Only) */
.hover-float {
    transition: transform 0.3s var(--tr-smooth);
}

.hover-float:hover {
    transform: translateY(-5px);
}

.hover-float-sm {
    transition: transform 0.3s var(--tr-smooth);
}

.hover-float-sm:hover {
    transform: translateY(-3px) scale(1.02);
}

.hover-3d-btn {
    transition: transform 0.3s var(--tr-smooth), box-shadow 0.3s var(--tr-smooth) !important;
}

.hover-3d-btn:hover {
    transform: translateY(-4px) translateZ(20px) scale(1.05) !important;
}

.hover-perspective-container {
    perspective: 1000px;
}

.hover-perspective {
    transition: transform 0.5s var(--tr-smooth);
    transform-style: preserve-3d;
}

.hover-perspective:hover {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
}

/* 4. STATIC ANIMATIONS (Continuous) */
.static-pulse {
    animation: staticPulse 3s infinite alternate ease-in-out;
}

@keyframes staticPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.float-animation {
    animation: floatingObj 6s infinite ease-in-out;
}

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

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

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

.pulse-on-hover {
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.brand-circle:hover .pulse-on-hover,
.loc-block:hover .pulse-on-hover {
    transform: scale(1.2) rotate(10deg);
}

.static-slide {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hover-green:hover .static-slide {
    transform: translateX(5px);
}


/* ================== BUTTONS ================== */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--green);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 104, 71, 0.3);
    border: 2px solid var(--green);
    cursor: pointer;
    z-index: 1;
}

.primary-btn:hover {
    background-color: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--text-white);
    box-shadow: 0 8px 25px rgba(0, 104, 71, 0.4);
}

.btn-yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 196, 37, 0.4);
}

.btn-yellow:hover {
    background-color: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--text-dark);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--green);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--bg-white);
}

.secondary-btn:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.ghost-btn {
    background-color: transparent;
    color: var(--green);
}

.ghost-btn:hover {
    background-color: var(--green);
    color: var(--text-white);
}

.buttons-holder .primary-btn,
.buttons-holder .secondary-btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.btn-white {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--green);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--green-dark);
}

.btn-square {
    border-radius: 4px;
}

/* ================== NAVIGATION ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--tr-smooth);
    padding: 1.5rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-img {
    height: 60px;
    transition: height 0.3s;
}

.scrolled .logo-img {
    height: 45px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--yellow);
}

.scrolled .nav-link:hover {
    color: var(--green);
}

.scrolled .nav-link::after {
    background-color: var(--green);
}

.scrolled .nav-link.order-nav::after {
    background-color: var(--yellow);
    width: 100%;
}

.brand-circle {
    background-color: var(--yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    margin: 5px 0;
    transition: 0.3s;
}

.scrolled .icon-bar {
    background: var(--text-dark);
}


/* ================== HERO SCENE ================== */
.hero-classic {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-slideshow {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -2;
    transition: transform 0.1s linear;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    transform-style: preserve-3d;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateZ(50px);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 2.5rem;
    font-weight: 500;
    transform: translateZ(30px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

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

    70% {
        box-shadow: 0 0 0 15px rgba(255, 196, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 196, 37, 0);
    }
}

.reveal-on-load {
    animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateY(80px) rotateX(15deg) translateZ(-100px);
    }

    100% {
        opacity: 1;
        transform: perspective(1000px) translateY(0) rotateX(0deg) translateZ(0);
    }
}

/* ================== SPLIT CONTENT ================== */
.content-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.swap-order .text-content {
    order: 2;
}

.swap-order .image-content {
    order: 1;
}

.classic-img-frame {
    position: relative;
    padding: 20px;
    transform-style: preserve-3d;
}

.classic-img-frame .frame-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--yellow);
    z-index: 0;
    border-radius: 10px;
}

.green-accent {
    background-color: var(--green) !important;
}

.classic-img-frame img {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    width: 100%;
    display: block;
}

.shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ================== CATERING BANNER ================== */
.section-title-catering {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--bg-white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle-catering {
    font-size: 1.8rem;
    font-family: 'Caveat', cursive, sans-serif;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.catering-text {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ================== PARALLAX ORDER ================== */
.parallax-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.parallax-overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 104, 71, 0.85);
    /* Green overlay */
    z-index: 2;
}

.classic-hero-card {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.05);
    /* very subtle */
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-left: 5px solid var(--yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ================== TRUCK ================== */
.info-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
    font-weight: 500;
}

.icon-yellow {
    color: var(--yellow);
    font-size: 1.4rem;
}

/* ================== JOBS ================== */
.job-card {
    max-width: 800px;
    padding: 4rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================== REVIEWS ================== */
.reviews-bg {
    background-color: #f7f3da;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l5 25 25 5-25 5-5 25-5-25-25-5 25-5 5-25z' fill='none' stroke='%23ebe3c1' stroke-width='1.5'/%3E%3Cpath d='M15 15l30 30M15 45l30-30' stroke='%23ebe3c1' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    padding: 6rem 0;
}

.section-title-reviews {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #2b2b2b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle-reviews {
    font-size: 1.8rem;
    font-family: 'Caveat', cursive, sans-serif;
    color: #444;
    margin-bottom: 1.5rem;
}

.active-reviewer-info {
    font-size: 1.1rem;
    color: #2b2b2b;
}

.active-reviewer-info .stars {
    color: #D58217;
    margin-left: 5px;
    font-size: 0.9rem;
}

.reviews-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    height: 150px;
    /* Reduced height, text only */
    gap: 1.5rem;
}

.slider-viewport-clean {
    width: 100%;
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s var(--tr-smooth);
}

.review-card-clean {
    min-width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-clean p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #D58217;
    font-weight: 800;
    line-height: 1;
}

.quote-mark-left {
    align-self: flex-start;
    margin-top: -10px;
}

.quote-mark-right {
    align-self: flex-end;
    margin-bottom: -20px;
}

.nav-arrow-clean {
    background: transparent;
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: none;
    transition: all 0.3s;
    flex-shrink: 0;
    margin: 0;
}

.nav-arrow-clean:hover {
    background: transparent;
    color: #D58217;
    transform: scale(1.1);
}

.reviews-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-dots {
    display: flex;
    gap: 12px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border: 1px solid #333;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.review-dot.active {
    background: #333;
}

.reviews-play-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.reviews-play-btn:hover {
    color: #D58217;
}


/* ================== MAP & CONTACT ================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.contact-details {
    padding-top: 2rem;
}

.location-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loc-block {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.loc-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.inline-btn {
    color: var(--green);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hover-green:hover {
    color: var(--green-dark);
}

.map-wrapper {
    width: 100%;
    min-height: 450px;
    display: flex;
    /* Helps child height: 100% resolve against min-height */
}

.map-container {
    width: 100%;
    flex: 1;
    /* Takes up all available height in flex map-wrapper */
    border-radius: 12px;
    pointer-events: none;
    /* Make map fully non-interactive from a css level too */
}

.border-radius-lg {
    border-radius: 12px;
}

.overflow-hidden {
    overflow: hidden;
}

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

/* ================== FOOTER & MOBILE NAV ================== */
.main-footer {
    text-align: center;
    padding: 4rem 0;
}

.flex-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    perspective: 500px;
}

.bottom-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav-list {
    display: flex;
    list-style: none;
}

.bottom-nav-list li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.bottom-nav-list li:last-child {
    border: none;
}

.bottom-link {
    display: block;
    padding: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 991px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .swap-order .text-content {
        order: 1;
    }

    .swap-order .image-content {
        order: 2;
    }

    .catering-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-toggle {
        display: block;
    }

    .icon-bar {
        background: var(--bg-white);
    }

    .scrolled .icon-bar {
        background: var(--text-dark);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        padding: 6rem 2rem 2rem;
        transform: translateY(-100%);
        transition: 0.4s ease;
        opacity: 0;
        z-index: -1;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-link {
        color: var(--text-dark);
        font-size: 1.2rem;
    }

    .nav-link::after {
        bottom: -5px;
    }

    .bottom-navbar {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }

    .review-card {
        padding: 2rem 1rem;
    }

    .review-card p {
        font-size: 1.1rem;
    }

    .hidden-xs {
        display: none !important;
    }
}