/* =========================================
   Chill Caffé Theme - Main Styles
   =========================================
   1. CSS Variables
   2. Reset & Base
   3. Typography
   4. Utility Classes
   5. Components
      5.1 Buttons
      5.2 Navigation
   6. Landing Page Sections
      6.1 Hero
      6.2 Our Story
      6.3 Menu Preview
      6.4 Best Sellers
      6.5 Testimonials
   7. Footer
   8. Responsive Breakpoints
   ========================================= */

/* =========================================
   1. CSS Variables
   ========================================= */
:root {
    /* Colors */
    --color-primary: #B8A75D;
    --color-primary-hover: #a89650;
    --color-bg: #2c3f1c;
    --color-dark: rgba(0, 0, 0, 0.75);
    --color-darker: rgba(0, 0, 0, 0.85);
    --color-text: #333;
    --color-text-light: rgba(255, 255, 255, 0.8);
    --color-white: #fff;

    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Great Vibes', cursive;

    /* Effects */
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 12px rgba(184, 167, 93, 0.3);

    line-height: 1.6;
}

/* =========================================
   2. Reset & Base
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    overflow-x: hidden;
    background-color: var(--color-bg);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

section {
    margin: 0;
    padding: 0;
}

/* =========================================
   3. Typography
   ========================================= */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.1;
    color: #000;
}

h1, .h1 { font-size: clamp(2.75rem, 8vw, 8.125rem); }
h2, .h2 { font-size: clamp(2.5rem, 8vw, 5.625rem); line-height: 1.22; }
h3, .h3 { font-size: clamp(2.125rem, 5vw, 3.75rem); }
h4, .h4 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h5, .h5 { font-size: clamp(1.25rem, 5vw, 2rem); }
h6, .h6 { font-size: clamp(1.125rem, 5vw, 1.75rem); line-height: 1.3; }

.section-title-white {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle-fancy {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* =========================================
   4. Utility Classes
   ========================================= */
.section-divider {
    height: clamp(2rem, 5vw, 5rem);
    background-color: var(--color-bg);
}

.ls-xs { letter-spacing: 0.3rem; }
.ls-sm { letter-spacing: 0.5rem; }
.ls-xl { letter-spacing: 3.5rem; }

/* =========================================
   5. Components
   ========================================= */

/* --- 5.1 Buttons --- */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-gold-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: clamp(6px, 2.5vw, 14px) clamp(12px, 5vw, 28px);
    transition: var(--transition);
    font-size: clamp(0.65rem, 3vw, 1.1rem);
    border-width: clamp(1px, 0.5vw, 2.5px);
    min-width: clamp(90px, 25vw, 200px);
}

.btn-gold-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}

/* --- 5.2 Navigation --- */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
    top: 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    min-height: 70px;
}

.navbar-brand {
    flex: 1;
    font-size: clamp(1rem, 1.5vw, 1.6rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: clamp(1px, 0.15vw, 2px);
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 0.5vw, 0.5rem);
    white-space: nowrap;
    z-index: 1;
}

.navbar-logo {
    height: clamp(30px, 4vw, 50px);
    width: auto;
}

.coffee-logo {
    color: var(--color-primary);
    font-weight: 400;
}

.caffe-text {
    color: var(--color-white);
    font-weight: 400;
}

.navbar-collapse {
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
}

.navbar-nav.mx-auto {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    margin: 0;
    z-index: 2;
}

.navbar-nav .nav-item {
    margin: 0 clamp(0.1rem, 0.8vw, 1rem);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem clamp(0.4rem, 1vw, 1.2rem) !important;
    transition: var(--transition);
    font-size: clamp(0.65rem, 0.9vw, 0.95rem) !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
}

.navbar-nav.ml-auto {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0 !important;
    z-index: 1;
}

.navbar-nav.ml-auto .nav-item {
    margin: 0 clamp(0.1rem, 0.3vw, 0.5rem);
}

.navbar-nav.ml-auto .nav-link {
    font-size: clamp(0.7rem, 0.9vw, 0.95rem) !important;
    padding: 0.5rem clamp(0.3rem, 0.6vw, 0.8rem) !important;
}

.navbar-nav.ml-auto .nav-link i {
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
}

.navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(199, 161, 122, 0.3);
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(199, 161, 122, 0.2);
    color: var(--color-primary);
}

.navbar-toggler {
    border-color: rgba(184, 167, 93, 0.5);
    padding: 0.5rem 0.75rem;
    position: relative;
    z-index: 1051;
    background-color: rgba(0, 0, 0, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 167, 93, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28184, 167, 93, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded="true"] {
    background-color: rgba(184, 167, 93, 0.2);
    border-color: var(--color-primary);
}

/* =========================================
   6. Landing Page Sections
   ========================================= */

/* --- 6.1 Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-3 {
    background-position: center 60%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(1rem, 2.5vw, 2rem);
}

/* Hero Social Icons */
.hero-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: clamp(1rem, 2.5vw, 2rem);
    position: relative;
    z-index: 10;
}

.social-icon {
    width: clamp(32px, 5vw, 48px);
    height: clamp(32px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: clamp(8px, 1.5vw, 15px);
}

.hero-indicators .indicator {
    width: clamp(10px, 1.4vw, 14px);
    height: clamp(10px, 1.4vw, 14px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.hero-indicators .indicator:hover {
    background-color: rgba(199, 161, 122, 0.7);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

.hero-indicators .indicator.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Shared Content Box --- */
.our-story-box,
.menu-content-box,
.best-sellers-box {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, calc(10% + 1.5vw), calc(10% + 3rem));
}

/* Testimonials unified wrapper */
.testimonials-findus-wrapper {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.testimonials-box {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, calc(10% + 1.5vw), calc(10% + 3rem));
    padding-bottom: 0;
}

/* --- 6.2 Our Story Section --- */
.our-story-section {
    position: relative;
    overflow: hidden;
}

.our-story-text-col {
    background-color: var(--color-bg);
}

.our-story-image-col {
    background-color: var(--color-bg);
    background-size: cover;
    background-position: center 55%;
    min-height: clamp(350px, 50vw, 600px);
    margin-left: clamp(1.5rem, calc(10% + 1.5vw), calc(10% + 3rem));
    margin-right: -10%;
}

.our-story-mobile-img {
    display: none;
}

.our-story-content {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: -10%;
    margin-right: 10%;
    z-index: 2;
}

.our-story-title {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.our-story-text {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* --- 6.3 Menu Preview Section --- */
.menu-text-col {
    background-color: var(--color-bg);
    z-index: 10;
}

.menu-image-col {
    background-color: var(--color-bg);
    min-height: clamp(350px, 50vw, 600px);
    z-index: 1;
}

.menu-images {
    height: 100%;
    min-height: clamp(350px, 50vw, 600px);
    display: flex;
    margin-right: clamp(1.5rem, calc(10% + 1.5vw), calc(10% + 3rem));
}

.menu-image-item {
    flex: 1;
    overflow: hidden;
}

.menu-coffee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-image-item:nth-child(1) .menu-coffee-img {
    object-position: 80% center;
}

.menu-image-item:nth-child(2) .menu-coffee-img {
    object-position: 30% center;
}

.menu-content {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: -10%;
    margin-left: 10%;
    z-index: 2;
}

.menu-title {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.menu-description {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* --- 6.4 Best Sellers Section --- */
.best-sellers-section {
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.seller-item {
    transition: transform 0.3s ease;
}

.seller-item img {
    width: 100%;
    height: clamp(200px, 25vw, 300px);
    object-fit: cover;
}

.seller-item:hover {
    transform: translateY(-10px);
}

.seller-name {
    font-weight: 300;
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    transition: color 0.3s ease;
    margin-top: clamp(0.5rem, 1.2vw, 1rem);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
}

.seller-item:hover .seller-name {
    color: var(--color-primary);
}

/* --- 6.5 Testimonials Section --- */
.testimonials-section {
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 0;
}

.sellers-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 0.5rem 0;
    width: 100%;
    overflow: hidden;
}

.review-screenshot-wrapper {
    position: relative;
    max-width: 900px;
    border: 3px solid #a89650;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: block;
}

.review-slide {
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    z-index: 5;
    transform: translateX(0) scale(1);
    pointer-events: none;
}

.review-slide.prev-1 { opacity: 0.7; z-index: 4; transform: translateX(-22%) scale(0.85); pointer-events: auto; }
.review-slide.prev-2 { opacity: 0.5; z-index: 3; transform: translateX(-40%) scale(0.7); pointer-events: auto; }
.review-slide.prev-3 { opacity: 0.3; z-index: 2; transform: translateX(-55%) scale(0.55); pointer-events: auto; }
.review-slide.next-1 { opacity: 0.7; z-index: 4; transform: translateX(22%) scale(0.85); pointer-events: auto; }
.review-slide.next-2 { opacity: 0.5; z-index: 3; transform: translateX(40%) scale(0.7); pointer-events: auto; }
.review-slide.next-3 { opacity: 0.3; z-index: 2; transform: translateX(55%) scale(0.55); pointer-events: auto; }

.review-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Reviews Carousel Controls */
.reviews-carousel-controls {
    display: none;
}

.review-control-btn {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    z-index: 101;
}

.review-control-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* =========================================
   7. Footer
   ========================================= */

/* Footer Layout */
.footer {
    background-color: #000;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border-top: 1px solid rgba(184, 167, 93, 0.15);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 calc(50% * 0.1);
    padding: 0 clamp(1.5rem, calc(10% + 1.5vw), calc(10% + 3rem));
}

/* Footer Contact (Left) */
.footer-contact {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.footer-contact-item {
    margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* Footer Center (Logo) */
.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.footer-logo-link:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.diverzity-logo {
    max-width: clamp(140px, 18vw, 200px);
    height: auto;
}

/* Footer Terms (Right) */
.footer-terms {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-terms-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem 0;
    white-space: nowrap;
}

.footer-terms-link i {
    color: var(--color-primary);
    font-size: clamp(0.8rem, 1.1vw, 1rem);
}

.footer-terms-link:hover {
    color: var(--color-primary);
}

/* --- Terms of Use Modal/Popup --- */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
}

.terms-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.terms-modal-content {
    background-color: rgba(0, 0, 0, 0.95);
    margin: 0;
    padding: 0;
    border: 2px solid var(--color-primary);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(184, 167, 93, 0.3);
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.terms-modal-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(184, 167, 93, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terms-modal-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.terms-modal-close {
    background: none;
    border: 2px solid rgba(184, 167, 93, 0.5);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.terms-modal-close:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: rotate(90deg);
}

/* Modal Body */
.terms-modal-body {
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Custom Scrollbar */
.terms-modal-body::-webkit-scrollbar {
    width: 8px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0;
}

.terms-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-hover);
}

/* Language Switch */
.terms-language-switch {
    display: flex;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.terms-lang-btn {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(184, 167, 93, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.terms-lang-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.terms-lang-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

/* Terms Content */
.terms-content {
    line-height: 1.8;
}

.terms-content h3 {
    color: var(--color-primary);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.terms-content h3:first-of-type {
    margin-top: 0;
}

.terms-content h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.terms-content p {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.terms-content ul li {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.terms-content ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.terms-content a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-content a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

.terms-effective-date {
    color: var(--color-primary);
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

/* Terms Table */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
}

.terms-table thead {
    background-color: rgba(184, 167, 93, 0.2);
}

.terms-table th {
    color: var(--color-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: clamp(0.6rem, 1.2vw, 0.8rem);
    border: 1px solid rgba(184, 167, 93, 0.3);
    text-align: left;
}

.terms-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(0.6rem, 1.2vw, 0.8rem);
    border: 1px solid rgba(184, 167, 93, 0.2);
}

.terms-table tbody tr:hover {
    background-color: rgba(184, 167, 93, 0.05);
}

.terms-content hr {
    border: none;
    border-top: 1px solid rgba(184, 167, 93, 0.3);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.terms-footer-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    line-height: 1.6;
}

/* =========================================
   8. Responsive Breakpoints
   ========================================= */

/* --- Desktop: Fixed background for hero --- */
@media (min-width: 992px) {
    .hero-slide {
        background-attachment: fixed;
    }
}

/* --- Large Desktop (min-width: 1200px) --- */
@media (min-width: 1200px) {
    .testimonials-findus-wrapper {
        margin-left: calc(50% * 0.1);
        margin-right: calc(50% * 0.1);
    }

    .reviews-content-area {
        padding: 1rem 0 clamp(2rem, 5vw, 4rem);
        overflow: hidden;
    }
}

/* --- Large Screens (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .navbar .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .review-screenshot-wrapper {
        max-width: 750px;
    }

    .review-slide.prev-3,
    .review-slide.next-3 {
        display: none;
    }

    .review-slide.prev-1 { transform: translateX(-26%) scale(0.82); }
    .review-slide.next-1 { transform: translateX(26%) scale(0.82); }
    .review-slide.prev-2 { opacity: 0.3; transform: translateX(-45%) scale(0.65); }
    .review-slide.next-2 { opacity: 0.3; transform: translateX(45%) scale(0.65); }
}

/* --- Medium-Large Screens (851px - 1199px) --- */
@media (max-width: 1199px) and (min-width: 851px) {
    .testimonials-findus-wrapper {
        margin: 0 2rem;
    }

    .reviews-content-area {
        padding: 1rem 0 clamp(2rem, 5vw, 4rem);
        overflow: hidden;
    }

}

/* --- Medium Screens (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .review-slide.prev-2,
    .review-slide.next-2,
    .review-slide.prev-3,
    .review-slide.next-3 {
        display: none;
    }

    .review-slide.prev-1 { transform: translateX(-30%) scale(0.78); }
    .review-slide.next-1 { transform: translateX(30%) scale(0.78); }
}

/* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
    .navbar-brand {
        flex: none;
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-collapse {
        display: none !important;
        position: fixed;
        top: clamp(85px, calc(8vh + 25px), 110px);
        right: 1rem;
        max-height: calc(100vh - clamp(85px, calc(8vh + 25px), 110px) - 1rem);
        width: calc(100vw - 2rem);
        max-width: 340px;
        background-color: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(10px);
        padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1049;
        flex-direction: column;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        display: flex !important;
        transform: translateX(0);
    }

    .navbar-nav.mx-auto {
        position: static;
        transform: none;
        flex-direction: column;
        margin: clamp(0.5rem, 1.5vw, 1rem) 0;
    }

    .navbar-nav.ml-auto {
        flex-direction: column;
        margin: clamp(0.5rem, 1.5vw, 1rem) 0;
        margin-left: 0 !important;
    }

    .navbar-nav .nav-item {
        margin: clamp(0.25rem, 0.8vw, 0.5rem) 0;
    }

    .navbar-nav .nav-link {
        font-size: clamp(0.8rem, 1.2vw, 0.95rem) !important;
        padding: clamp(0.4rem, 0.8vw, 0.5rem) clamp(0.8rem, 1.5vw, 1.2rem) !important;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        margin-top: 0;
    }

    .navbar-nav .dropdown-item {
        font-size: clamp(0.75rem, 1.1vw, 0.9rem);
        padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
    }

    /* Section Layouts */
    .our-story-section .container-fluid,
    .menu-section .container-fluid {
        padding: 0;
    }

    .our-story-section .row,
    .menu-section .row {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .our-story-text-col,
    .menu-text-col {
        position: relative;
        width: 100%;
        background-color: transparent;
        order: 1;
        padding: 0;
    }

    .our-story-section .row > div:first-child {
        order: 2;
        width: 100%;
        padding: 0;
    }

    .menu-image-col {
        order: 2;
        padding: 0;
        margin: 0;
        width: 100%;
        min-height: auto;
        background-color: transparent;
    }

    .our-story-image-col {
        position: relative;
        width: auto;
        min-height: auto;
        margin: 0 2rem;
        background-image: none;
    }

    .our-story-mobile-img {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center 55%;
    }

    .menu-images {
        min-height: 300px;
        margin: 0 2rem;
        width: auto;
    }

    .our-story-content,
    .menu-content {
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
    }

    .our-story-box,
    .menu-content-box,
    .best-sellers-box {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 2.5rem 2rem;
        margin: 0 2rem;
    }

    .review-slide.prev-1 { transform: translateX(-35%) scale(0.75); }
    .review-slide.next-1 { transform: translateX(35%) scale(0.75); }

    .terms-modal-content {
        width: 95%;
        max-height: 85vh;
    }
}

/* --- Mobile (max-width: 850px) --- */
@media (max-width: 850px) {
    .testimonials-findus-wrapper {
        margin: 0 2rem;
    }

    .testimonials-box {
        padding: 2.5rem 2rem 0;
    }

    .reviews-content-area {
        padding: 0 0 3rem;
        min-height: 3rem;
        position: relative;
    }

    .reviews-carousel {
        position: relative;
        min-height: auto;
    }

    .review-slide.prev-1,
    .review-slide.prev-2,
    .review-slide.prev-3,
    .review-slide.next-1,
    .review-slide.next-2,
    .review-slide.next-3 {
        display: none;
        opacity: 0;
        pointer-events: none;
    }

    .review-slide.active {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .reviews-carousel-controls {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 0;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        z-index: 10;
    }

    .review-control-btn {
        display: flex;
        pointer-events: auto;
    }

    .review-control-prev {
        position: absolute;
        left: 1rem;
    }

    .review-control-next {
        position: absolute;
        right: 1rem;
    }
}

/* --- Small Tablet (676px - 850px) --- */
@media (max-width: 850px) and (min-width: 676px) {
    .reviews-carousel-controls {
        position: absolute;
        top: 50%;
        left: 1rem;
        right: 1rem;
        width: auto;
        height: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 100;
    }

    .review-control-prev,
    .review-control-next {
        position: relative;
        left: auto;
        right: auto;
    }
}

/* --- Small Mobile (max-width: 675px) --- */
@media (max-width: 675px) {
    .reviews-carousel {
        position: static;
    }

    .reviews-carousel-controls {
        position: absolute;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 3rem;
        transform: none;
        display: flex;
        justify-content: space-between;
        z-index: 100;
    }

    .review-control-prev {
        position: static;
        margin-left: 1rem;
    }

    .review-control-next {
        position: static;
        margin-right: 1rem;
    }

    .review-screenshot-wrapper {
        min-height: 0;
        height: auto;
        width: 100%;
    }
}

/* --- Tablet and below - disable animations (max-width: 1024px) --- */
@media (max-width: 1024px) {
    /* Disable animations - only show on desktop */
    .hero-content {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Mobile (max-width: 576px) --- */
@media (max-width: 576px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-toggler {
        padding: 0.5rem 0.7rem;
        font-size: 1.2rem;
        border: 2px solid rgba(184, 167, 93, 0.7);
    }

    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }

    .navbar-collapse {
        width: clamp(220px, 40vw, 260px);
        max-width: 50vw;
        padding: clamp(1.5rem, 2.5vw, 2rem) clamp(0.75rem, 1.5vw, 1rem);
    }

    .our-story-box,
    .menu-content-box,
    .best-sellers-box {
        padding: 2rem 1.5rem;
        margin: 0 1.5rem;
    }

    .our-story-image-col,
    .menu-images {
        margin: 0 1.5rem;
    }

    .testimonials-findus-wrapper {
        margin: 0 1.5rem;
    }

    /* Footer Responsive - Mobile */
    .footer-wrapper {
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .footer-contact {
        order: 1;
        flex: none;
        text-align: center;
    }

    .footer-terms {
        order: 2;
        flex: none;
        justify-content: center;
    }

    .footer-center {
        order: 3;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .terms-modal-content {
        width: 100%;
        height: auto;
        max-height: 100vh;
        border: none;
    }

    .terms-modal-header {
        padding: clamp(0.8rem, 2vw, 1rem);
    }

    .terms-modal-title {
        font-size: clamp(1rem, 2vw, 1.1rem);
        letter-spacing: clamp(0.5px, 0.8vw, 1px);
    }

    .terms-modal-close {
        width: clamp(32px, 6vw, 35px);
        height: clamp(32px, 6vw, 35px);
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    }

    .terms-modal-body {
        padding: clamp(1rem, 3vw, 1.5rem);
        max-height: 60vh;
    }

    .terms-language-switch {
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        gap: clamp(0.3rem, 0.8vw, 0.5rem);
    }

    .terms-lang-btn {
        padding: clamp(0.35rem, 0.8vw, 0.4rem) clamp(0.8rem, 2vw, 1rem);
        font-size: clamp(0.8rem, 1.3vw, 0.85rem);
    }

    .terms-table {
        font-size: clamp(0.7rem, 1.2vw, 0.75rem);
        display: block;
        overflow-x: auto;
    }

    .terms-table th,
    .terms-table td {
        padding: clamp(0.4rem, 0.8vw, 0.5rem) clamp(0.3rem, 0.6vw, 0.4rem);
    }
}

/* --- Extra Small Mobile (max-width: 400px) --- */
@media (max-width: 400px) {
    .navbar-brand {
        font-size: 1rem;
        gap: 0.25rem;
    }

    .navbar-logo {
        height: 35px;
    }

    .navbar .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .our-story-box,
    .menu-content-box,
    .best-sellers-box {
        padding: 1.5rem 1rem;
        margin: 0 1rem;
    }

    .our-story-image-col,
    .menu-images {
        margin: 0 1rem;
    }

    .testimonials-findus-wrapper {
        margin: 0 1rem;
    }

    .diverzity-logo {
        max-width: clamp(120px, 30vw, 130px);
    }

    .terms-modal-header {
        position: relative;
    }

    .terms-modal-title {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .terms-modal-close {
        position: absolute;
        top: 50%;
        right: 0.5rem;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .terms-language-switch {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .terms-lang-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}
