:root {
    --font-oswald: 'Oswald', sans-serif;
    --font-poly: 'Poly', serif;
    --color-lime: #02A708;
    --color-dark: #1f2937;
    --color-black: #0A0A0A;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-300: #d1d5db;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-lime-100: #ecfccb;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* --- Global Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: var(--font-oswald);
    color: var(--color-black);
}

.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 4.1875rem; /* 67px */
    padding-bottom: 4.1875rem; /* 67px */
}

.section-gray {
    background-color: var(--color-gray-50);
}

.rounded-section {
    border-top-left-radius: 6.25rem; /* 100px */
    border-top-right-radius: 6.25rem; /* 100px */
    margin-top: 4rem;
}

.section-bordered-top {
    border-top: 1px solid var(--color-gray-300);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-lime { color: var(--color-lime); }

.section-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 3.125rem; /* 50px */
    line-height: 4rem; /* 64px */
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.section-subtitle {
    margin-top: 1rem;
    color: var(--color-gray-600);
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-poly);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
}
.section-subtitle.short {
    max-width: 42rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-button {
    margin-top: 3rem;
}

/* --- Buttons --- */
.btn {
    font-weight: 400;
    padding: 1.02rem 2.2rem;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-family: var(--font-poly);
}
.btn:hover {
    transform: scale(1.05);
}
.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}
.btn-dark:hover {
    background-color: var(--color-gray-800);
}
.btn-lime {
    background-color: var(--color-lime);
    color: var(--color-white);
    text-decoration: none;
}
.btn-lime:hover {
    background-color: #000000; /* lime-300 */
}

/* --- Header --- */
.header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--color-gray-100);
}
.top-banner {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-icon {
    height: 40px;
    width: auto;
    color: var(--color-lime);
    transform: scaleX(-1);
}
.logo-icon-inner {
    margin-left: -0.75rem;
    transform: scaleX(1);
}
.logo-text {
    margin-left: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-oswald);
    letter-spacing: 0.05em;
}
.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.main-nav a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--color-lime);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.icon-button {
    padding: 0.5rem;
    border-radius: 9999px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}
.icon-button:hover {
    background-color: var(--color-gray-100);
}
.icon-button svg {
    height: 1.5rem;
    width: 1.5rem;
    color: var(--color-gray-700);
}

/* --- Hero Section --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.75rem;
    font-family: var(--font-oswald);
    text-transform: uppercase;
    line-height: 1;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-text p {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--color-black);
    max-width: 28rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-buttons .btn-lime:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.hero-section {
    padding-top: 0; 
    padding-bottom: 0; /* Touch both header and bottom section */
    background-color: #F2F2F2;
}

/* --- Hero Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollUp {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes scrollUpTrack2 {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes scrollDown {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

@keyframes scrollDownTrack2 {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- Railway Track Hero Layout (Vertical Parallel) --- */
.hero-railway-grid {
    display: flex;
    flex-direction: row; /* 3 tracks side-by-side */
    gap: 20px; /* Original horizontal gap restored for desktop */
    width: fit-content;
    height: 640px; /* Accommodate two 310px visible images + 20px gap */
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    padding: 0 1rem;
    margin-top: 0;
}

.track {
    display: flex;
    flex-direction: column; /* Images stack vertically */
    width: 188px;
    height: fit-content;
    position: relative;
    /* Gap removed in favor of margin-bottom for mathematical loop perfection */
    opacity: 1; /* Reset opacity for continuous motion */
    will-change: transform;
    backface-visibility: hidden;
}

.track .bogie {
    margin-bottom: 20px; /* Original vertical gap restored for desktop */
}

/* Pause animations on hover of the grid */
.hero-railway-grid:hover .track {
    animation-play-state: paused;
}

/* Staggered scrolling directions and durations */
.track-1 {
    animation: scrollDown 20s linear infinite;
}

.track-2 {
    animation: scrollUpTrack2 25s linear infinite;
}

.track-3 {
    animation: scrollDown 22s linear infinite;
    animation-delay: -5s; /* Stagger start position */
}

/* Outer tracks: 145px top/bottom, 310px middle. Total 640px with gaps */
.track-2 {
    justify-content: flex-start;
}

.bogie {
    flex: 0 0 310px;
    width: 188px;
    height: 310px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.bogie:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.bogie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.bogie:hover img {
    transform: scale(1.1);
}

/* Border radius smoothing removed for continuous scroll consistency */
.track .bogie,
.track .bogie img {
    border-radius: 20px;
}


/* --- How It Works Section --- */
.how-it-works-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding-left: 0!important; /* Align image to very left edge */
}

.how-it-works-image {
    position: relative;
    display: flex;
    justify-content: flex-start; /* Align image to the left */
    align-items: center;
    width: fit-content; /* Shrink container to image width so bg centers on image */
}

.how-it-works-image .main-meal-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 56rem; /* Further increased to fill more screen space */
    margin-left: 0; /* Ensure flush left */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
    cursor: zoom-in;
}
.how-it-works-image:hover .main-meal-image {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.image-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%; /* Increased from 65% to 85% */

    height: auto;
    transform: translate(-50%, -50%); /* Center it */
    z-index: 0;
    opacity: 1; /* Reset opacity */
    /* Remove background properties */
}
.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.step-icon img {
    height: 4rem; /* Increased size for better visibility */
    width: 4rem;
    display: block;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes infinite-zoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
}

.step:hover .step-icon img {
    transform: scale(1.1) rotate(5deg);
}
.step {
    display: flex;
    flex-direction: column; /* Stack vertically: Icon -> Heading -> Description */
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease;
    cursor: default;
}
.step:hover {
    transform: translateX(10px);
}
.step h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
}
.step p {
    margin-top: 0.5rem;
    color: var(--color-gray-600);
    font-size: 1.125rem; /* 18px */
}

/* --- Menu Explorer Section --- */
.menu-explorer-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.menu-category img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-category:hover img {
    transform: scale(1.05);
}
.menu-category {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.menu-category:hover {
    transform: translateY(-8px);
}
.menu-category h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    text-transform: uppercase;
}
.menu-category p {
    margin-top: 0.5rem;
    color: var(--color-black);
}

/* --- Create Box Section --- */
.create-box-container {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.create-box-step {
    background-color: var(--color-white);
    padding: 3rem; /* 48px */
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.create-box-step:hover {
    transform: translateY(-5px);
    border-color: var(--color-lime);
    box-shadow: 0 15px 30px -5px rgba(2, 167, 8, 0.1);
}
.step-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}
.step-number {
    font-family: 'Seaweed Script', cursive;
    font-weight: 400;
    font-size: 3.125rem; /* 50px */
    line-height: 4rem; /* 64px */
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-lime);
}
.step-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.625rem; /* 10px gap */
}
.step-info p {
    font-family: var(--font-poly);
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-gray-500);
}
.step-options {
    display: flex;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}
.step-options span { color: var(--color-lime); }
.option-btn {
    padding: 0.25rem 1rem;
    border-radius: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-500);
    font-family: var(--font-oswald);
    font-weight: 400; /* Regular weight for inactive */
    font-size: 1.5rem; /* 24px */
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
}
.option-btn.active {
    color: #727272;
    font-weight: 700; /* Bold weight for active */
}

/* --- Popular Dishes Section --- */
.popular-dishes-grid {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 4rem;
    transform: rotate(-0.49deg);
}
.dish-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    border: 1px solid transparent;
}
.dish-item:hover {
    background-color: var(--color-gray-50);
    border-color: var(--color-gray-200);
    transform: scale(1.02);
}
.dish-item:nth-child(even) {
    transform: translateY(4px);
}
.dish-item:nth-child(even):hover {
    transform: translateY(4px) scale(1.02);
}
.dish-title {
    order: 2; /* Heading comes after price */
}
.dish-title h3 {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
}
.dish-price {
    font-size: 1.25rem;
    font-weight: 700;
    order: 1; /* Price comes first */
    text-align: right;
    padding-bottom: 0.5rem;
    border-bottom: 2px dotted var(--color-black);
    margin-bottom: 0.5rem;
}
.dish-item p {
    color: var(--color-black);
    margin-top: 0.25rem;
    order: 3;
}

/* --- FAQ Section --- */
.faq-title { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.faq-title .logo-icon-right { transform: scaleX(1); }
.faq-container { max-width: 48rem; margin: 0 auto; }
.faq-item { padding: .8rem 0; }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 2px solid var(--color-black);
    padding-bottom: 1rem;
    cursor: pointer;
}
.faq-question h3 {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0%;
}
.faq-chevron {
    transition: transform 0.3s;
}
.faq-answer {
    margin-top: 1rem;
    color: var(--color-black);
    padding-right: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-family: var(--font-poly);
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0%;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: max-content; /* Adjust as needed */ }
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-slide-in {
    animation: fadeSlideIn 0.5s ease-out forwards;
}

/* Scroll Animation Utilities */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }



/* --- Testimonials Section --- */
.testimonials-wrapper {
    margin-top: 3rem;
    position: relative;
    width: fit-content;
    margin: 3rem auto 0;
}
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem 2rem 0 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-top: 2.5rem;
    width: 292px;
    height: 320px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card img {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    object-fit: cover;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.star-rating {
    display: flex;
    margin-top: 1.75rem; /* Space for image + 20px gap */
    margin-bottom: .6rem;
}
.star-rating svg {
    width: 18px;
    height: 17px;
}
.testimonial-card p {
    color: var(--color-black);
    flex-grow: 1;
    font-family: var(--font-poly);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
.testimonial-author {
    margin-bottom: 30px;
}
.testimonial-author p:first-child {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.testimonial-author p:last-child {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    border: 1px solid var(--color-gray-300);
    transition: background-color 0.2s;
    display: flex;
    cursor: pointer;
    display: none; /* Hidden on mobile */
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.carousel-btn svg { width: 18px; height: 14px; }
.carousel-btn.prev { left: -94px; background-color: var(--color-white); color: var(--color-lime);border-color: var(--color-lime); }
.carousel-btn.next { right: -94px; background-color: var(--color-lime); color: var(--color-white); border-color: var(--color-lime); }
.carousel-btn:hover { background-color: var(--color-gray-100); }
.carousel-btn.next:hover { background-color: var(--color-white); border-color: var(--color-lime); }
.carousel-btn.next:hover svg path { stroke: var(--color-black); }


/* --- Newsletter Section --- */
.newsletter-box {
    background-color: var(--color-lime);
    color: var(--color-black);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-carbon.png');
    opacity: 0.1;
}
.newsletter-content { position: relative; z-index: 10; }
.newsletter-content h2 {
    font-family: var(--font-oswald);
    text-transform: uppercase;
    font-size: 2.25rem;
    color: var(--color-white);
}
.newsletter-content p {
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
}
.newsletter-form {
    margin-top: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(0,0,0,0.2);
    box-shadow: var(--shadow-lg);
}
.newsletter-form svg {
    display: none;
}
.newsletter-form input {
    width: 100%;
    padding: 0.5rem;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
}
.newsletter-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-black);
    color: var(--color-gray-300);
}
.footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}
.footer .logo { justify-content: center; }
.footer .logo-text { color: var(--color-white); }
.footer-links h4 {
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}
.footer-links li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--color-lime);
}
.footer-links svg {
    height: 1.25rem;
    width: 1.25rem;
    color: var(--color-lime);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-links a svg { height: 1.5rem; width: 1.5rem; color: inherit; }
.footer-bottom {
    margin-top: 4rem;
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.footer-bottom a {
    margin-top: 0.5rem;
    text-decoration: none;
    color: inherit;
}
.footer-bottom a:hover {
    color: var(--color-white);
}

/* --- Responsive Media Queries --- */
@media (min-width: 768px) {


    .main-nav { display: flex; }
    .hero-section { padding-top: 0; padding-bottom: 0; }
    .hero-grid { display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
    .hero-text { flex: 1; text-align: left; }
    .hero-railway-grid { margin-right: 0; }
    .hero-text p { margin-left: 0; }
    .hero-buttons { justify-content: flex-start; }
    .how-it-works-grid { grid-template-columns: 1fr 1fr; }
    .menu-explorer-grid { grid-template-columns: repeat(2, 1fr); }
    .popular-dishes-grid { grid-template-columns: 1fr 1fr; }
    /* .testimonials-grid { grid-template-columns: repeat(3, 1fr); } Removed for flex layout */
    .carousel-btn { display: flex; }
    .newsletter-box { padding: 4rem; }
    .newsletter-content h2 { font-size: 3rem; }
    .newsletter-form { flex-direction: row; }
    .newsletter-form svg { display: block; height: 1.5rem; width: 1.5rem; color: var(--color-gray-500); margin: 0 0.75rem; }
    .newsletter-form input { text-align: left; }
    .newsletter-form .btn { width: auto; margin-top: 0; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); text-align: left; }
    .footer .logo { justify-content: flex-start; }
    .footer-links li { justify-content: flex-start; }
    .social-links { justify-content: flex-start; }
    .footer-bottom { flex-direction: row; }
    .footer-bottom a { margin-top: 0; }
}

@media (min-width: 1024px) {
    .menu-explorer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- V2 Header Styles --- */
.header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}

.main-nav-v2 {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
}
.main-nav-v2 a {
    text-decoration: none;
    color: var(--color-black);
    font-family: var(--font-oswald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.main-nav-v2 a:hover {
    color: var(--color-lime);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-actions a.login-link {
    text-decoration: none;
    color: var(--color-black);
    font-family: var(--font-oswald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.header-actions a.login-link:hover {
    color: var(--color-lime);
}
.mobile-only-actions {
    display: none;
}
.signup-btn {
    font-family: var(--font-oswald);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 13px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--color-black);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mid-range Responsive Header (Prevent logo crowding) */
@media (min-width: 1025px) and (max-width: 1180px) {
    .main-nav-v2 {
        gap: 1.25rem;
    }
    .main-nav-v2 a, .header-actions a.login-link {
        font-size: 0.8375rem;
    }
    .header-actions {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

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

    /* Prevent Hero Railway Grid Cutoff */
    .hero-railway-grid {
        height: 530px;
        gap: 15px;
    }

    .track {
        width: 155px;
    }

    .bogie {
        flex: 0 0 255px;
        width: 155px;
        height: 255px;
    }
}

/* Mobile Header Refinements */
@media (max-width: 1024px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .rounded-section {
        margin-top: 2.5rem;
    }

    .popular-dishes-grid {
        margin-top: 2.5rem;
    }

    .header-content-v2 {
        padding: 0.75rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav-v2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 5rem 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .main-nav-v2.active {
        right: 0;
    }

    .main-nav-v2 a {
        font-size: 1.125rem;
        width: 100%;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--color-gray-100);
    }

    .header-actions {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 0.75rem;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
        margin-right: 1.25rem;
    }
    
    .header-actions .signup-btn {
        width: auto;
        padding: 0.5rem 0.75rem;
        font-size: 11px;
    }

    .hero-railway-grid {
        gap: 10px; /* Balanced reduction for tablet */
    }

    .bogie {
        height: 240px;
        flex: 0 0 240px;
        margin-bottom: 10px; /* Balanced reduction for tablet */
    }


    .header-actions .login-link {
        font-size: 12px;
    }

    .mobile-only-actions {
        display: none;
    }

    /* How It Works Tablet Optimization */
    .how-it-works-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 2rem;
        align-items: flex-start;
    }

    .how-it-works-steps {
        gap: 2rem;
        padding-top: 2rem;
    }

    .step {
        gap: 1rem;
    }

    .mobile-menu-toggle {
        order: 3;
        margin-left: 1rem;
    }
    @media (max-width: 470px) {
        .section-padding {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .rounded-section {
            margin-top: 1.5rem;
        }

        .popular-dishes-grid {
            margin-top: 1.5rem;
        }

        .header-content-v2 > .header-actions {
            display: none;
        }
        
        .main-nav-v2 .mobile-only-actions {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 1rem;
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--color-gray-100);
            margin-right: 0;
        }
        
        .main-nav-v2 .mobile-only-actions .signup-btn {
            width: 100%;
            padding: 0.8rem;
            font-size: 13px;
        }

        .main-nav-v2 .mobile-only-actions .login-link {
            font-size: 14px;
        }

        .hero-railway-grid {
            gap: 5px; /* Balanced reduction for XS mobile */
        }

        .bogie {
            height: 140px;
            flex: 0 0 140px;
            margin-bottom: 5px; /* Balanced reduction for XS mobile */
        }
    }



    .hero-section {
        padding-top: 5rem; /* Space from sticky header */
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-railway-grid {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 0;
        margin-left: 0;
        position: relative;
        left: 0;
        display: flex; /* Ensure tracks align correctly */
    }

    .track {
        flex: 1;
        width: auto;
        max-width: none;
    }

    .bogie {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .rounded-section {
        margin-top: 2rem;
    }

    .popular-dishes-grid {
        margin-top: 2rem;
    }

    .logo img {
        height:50px;
    }

    /* Proportional Font Reductions */
    .hero-text h1 {
        font-size: 2.5rem; /* Reduced from 3.75rem */
    }
    
    .hero-text p {
        font-size: 1.125rem; /* Reduced from 1.25rem */
    }

    .section-title {
        font-size: 2rem; /* Reduced from 3.125rem */
        line-height: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem; /* Reduced from 18px */
        line-height: 1.5rem;
    }

    .btn {
        font-size: 1rem; /* Reduced from 1.125rem */
        padding: 0.8rem 1.5rem;
    }

    .step h3, 
    .menu-category h3, 
    .dish-title h3, 
    .faq-question h3 {
        font-size: 1.25rem; /* Reduced from 1.5rem / 24px */
    }

    .step p, 
    .faq-answer, 
    .testimonial-card p,
    .newsletter-content-v2 p {
        font-size: 0.9375rem; /* Reduced from 1.125rem / 18px */
    }

    .step-number {
        font-size: 2.5rem; /* Reduced from 3.125rem */
    }

    .newsletter-content-v2 h2 {
        font-size: 2.25rem; /* Reduced from 3rem */
    }

    .footer-brand {
        font-size: 1.5rem; /* Reduced from 1.75rem */
    }

    /* Hero Railway Grid Mobile Optimization */
    .hero-grid {
        gap: 2rem;
        padding-top: 1rem;
    }

    .hero-railway-grid {
        height: 340px;
        gap: 8px; /* Balanced reduction for mobile */
        padding-left: 0;
        width: 100%;
        max-width: none;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }

    .track {
        flex: 1;
        max-width: none;
        width: auto;
        gap: 0;
    }

    .bogie {
        width: 100%;
        height: 180px;
        flex: 0 0 180px;
        margin-bottom: 8px; /* Balanced reduction for mobile */
        border-radius: 12px;
    }

    .bogie img {
        border-radius: 12px;
    }

    /* Proportional Bogie Heights removed to maintain 310px consistency */

    /* How It Works Mobile Optimization */
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-it-works-image {
        justify-content: center;
        width: 100%;
    }

    .how-it-works-image .main-meal-image {
        border-radius: 20px;
    }

    .how-it-works-steps {
        margin-top: 3rem;
        padding: 0 1rem;
        gap: 2.5rem;
    }

    .step {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        text-align: left;
    }

    .step-icon img {
        height: 3.5rem;
        width: 3.5rem;
        flex-shrink: 0;
    }

    /* Create Box Mobile Optimization */
    .create-box-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-info {
        width: 100%;
    }

    .step-info p {
        text-align: left;
    }

    /* XS Mobile How It Works Refinement */
    @media (max-width: 514px) {
        .step {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .step-icon img {
            height: 4rem;
            width: 4rem;
        }
    }
    
    .step-options {
        width: 100%;
        justify-content: space-between; 
        flex-wrap: wrap; 
        gap: 1rem;
    }

    .section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    /* Testimonial Arrows Mobile */
    /* Testimonial Arrows Mobile */
    .carousel-btn {
        display: flex; /* Show buttons */
        width: 36px;
        height: 36px;
        top: 55%; /* Align visually with center of card body (accounting for top image) */
        bottom: auto;
        transform: translateY(-50%);
        z-index: 20;
        background-color: var(--color-white); /* Ensure visibility */
        border: 1px solid var(--color-gray-300);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .testimonials-wrapper {
        padding-bottom: 0; 
        position: relative; /* Ensure wrapping context */
    }
    
    .carousel-btn.prev {
        left: -1.25rem; /* Sit just on the edge/outside */
        right: auto;
        margin-right: 0;
    }
    
    .carousel-btn.next {
        right: -1.25rem;
        left: auto;
        margin-left: 0;
    }
    
    /* Ensure svg colors are correct */
    .carousel-btn.prev svg path { stroke: var(--color-lime); }
    .carousel-btn.next svg path { stroke: var(--color-lime); } /* Ensure visibility */
    .carousel-btn.next { background-color: var(--color-white); border-color: var(--color-gray-300); }

    /* Newsletter Mobile Optimization */
    .newsletter-section-v2 {
        margin-bottom: -10rem; /* Reduced overlap */
        padding: 0 0rem; /* Side padding */
    }

    .newsletter-box-v2 {
        padding: 3rem 1.5rem; /* Reduced padding */
    }

    .newsletter-content-v2 h2 {
        font-size: 1.5rem;
    }

    .input-group-v2 {
        flex-direction: column;
        border: none; /* Remove outer border */
        padding: 0;
        gap: 1rem;
    }

    .input-group-v2 svg {
        display: none; /* Hide icon to save space/clean up */
    }

    .input-group-v2 input {
        width: 100%;
        background-color: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
    }

    .btn-submit-v2 {
        width: 100%;
        border-radius: 8px;
        padding: 1rem;
    }
    
    /* Adjust Footer for Mobile Overlap */
    .footer-v2 {
        padding-top: 13rem; /* 3rem + 10rem overlap */
    }
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* --- V2 Footer Styles --- */
.footer-v2 {
    background-color: #F9F9F5; /* Light cream beige */
    padding: 4rem 0;
    border-top: 1px solid var(--color-gray-100);
}
.footer-brand {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-black);
    margin-bottom: 2rem;
    text-transform: capitalize;
}
.footer-nav-v2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    font-family: var(--font-poly);
}
.footer-nav-v2 a {
    text-decoration: none;
    color: var(--color-gray-600);
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-nav-v2 a:hover {
    color: var(--color-lime);
}

.footer-copyright {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    font-family: var(--font-poly);
}
.footer-copyright a {
    color: inherit;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* --- V2 Newsletter Refinements & Overlap --- */
.newsletter-section-v2 {
    padding-bottom: 0 !important; /* Remove bottom padding to let box hang */
    background-color: transparent; /* Be transparent to avoid white block covering footer */
    position: relative;
    z-index: 20; /* Ensure on top of footer */
    margin-bottom: -15rem; /* Force section to pull footer up by 15rem (approx 75% overlap) */
}

.newsletter-box-v2 {
    background-image: linear-gradient(#02A708E5, #02A708E5), url('./images/form-bg.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    /* Removed margin-bottom from here to use section margin */
}

.newsletter-content-v2 h2 {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 3rem; /* 48px */
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.newsletter-content-v2 p {
    color: var(--color-white);
    font-family: var(--font-poly);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 3rem auto;
    opacity: 0.9;
}

.newsletter-form-v2 {
    display: flex;
    justify-content: center;
}

.input-group-v2 {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    width: 600px; /* Specific width per design */
    max-width: 100%;
}

.input-group-v2 svg {
    margin: 0 1rem;
    flex-shrink: 0;
}

.input-group-v2 input {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-poly);
    font-size: 1.125rem;
    flex-grow: 1;
    outline: none;
}

.input-group-v2 input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.btn-submit-v2 {
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-poly); /* Or serif based on screenshot? "Submit" usually straightforward */
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit-v2:hover {
    background-color: #333;
}

/* Adjust V2 Footer to accommodate overlap */
.footer-v2 {
    padding-top: 19rem; /* 4rem original + 15rem overlap compensation */
}

/* --- Mobile Overrides (Placed at end to ensure priority) --- */
@media (max-width: 1024px) {
    .newsletter-content-v2 h2 {
        font-size: 1.5rem;
    }

    .newsletter-section-v2 {
        margin-bottom: -10rem;
    }
    
    .footer-v2 {
        padding-top: 13rem;
    }
    
    .input-group-v2 {
        flex-direction: column;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .input-group-v2 svg {
        display: none;
    }
    
    .input-group-v2 input {
        width: 100%;
        text-align: center;
        background-color: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        padding: 1rem;
        border-radius: 8px;
    }
    
    .btn-submit-v2 {
        width: 100%;
        border-radius: 8px;
        padding: 1rem;
    }
    
    .newsletter-box-v2 {
        padding: 3rem 1.5rem;
    }
}

/* --- Desktop Specific (>= 1025px) --- */
@media (min-width: 1025px) {
    .container {
        padding-left: 3.75rem; /* 60px */
        padding-right: 3.75rem; /* 60px */
    }
}

/* --- Tablet Specific Fixes (768px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-btn {
        display: flex;
        top: 55%;
        background-color: var(--color-white);
        border: 1px solid var(--color-gray-300);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 20;
    }
    
    .carousel-btn.prev {
        left: -1.75rem; /* Close to card */
        right: auto;
    }
    
    .carousel-btn.next {
        right: -1.75rem;
        left: auto;
    }
    
    .testimonials-wrapper {
        position: relative;
    }
}
.newsletter-form-v3 {
    width: 100%;
    max-width: 100%;
}

.newsletter-form-v3 .input-group-v3 {
    position: relative;
}

.newsletter-form-v3 .input-group-v3 p {
    margin: 0;
    padding: 0.5rem;
    display: flex;
    align-items: stretch;
    background: transparent;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.newsletter-form-v3 .input-group-v3 svg {
    flex-shrink: 0;
    align-self: center;
    margin-left: 20px;
    margin-right: 15px;
    fill: white;
}

.newsletter-form-v3 .input-group-v3 .wpcf7-form-control-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.newsletter-form-v3 .input-group-v3 input[type="email"] {
    flex: 1;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.newsletter-form-v3 .input-group-v3 input[type="email"]::placeholder {
    color: white;
    font-size: 16px;
    opacity: 1;
}

.newsletter-form-v3 .btn-submit-v3 {
    background: #000;
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    border-radius: 0;
    margin: 0;
    flex-shrink: 0;
    align-self: stretch;
}

.newsletter-form-v3 .btn-submit-v3:hover {
    background: #333;
}

/* Hide the spinner */
.newsletter-form-v3 .wpcf7-spinner {
    display: none;
}

/* Hide validation messages */
.newsletter-form-v3 .wpcf7-not-valid-tip {
    display: none;
}

.newsletter-form-v3 .wpcf7-response-output {
    margin: 10px 0 0 0;
    padding: 10px;
    border-radius: 4px;
}
.newsletter-form-v3 {
    display: flex;
    justify-content: center;
}
.wpcf7-response-output {
    color: #fff;
    border-color: #fff!important;
}
.hero-buttons a, .section-button a {
    text-decoration: unset;
}
/* Mobile-specific styles */
@media (max-width: 768px) {
  .newsletter-form-v3 .input-group-v3 p {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .newsletter-form-v3 .input-group-v3 svg {
    align-self: center;
    margin-bottom: 4px;
  }
  
  .newsletter-form-v3 .wpcf7-form-control-wrap {
    width: 100%;
    position: relative;
  }
  
  .newsletter-form-v3 .wpcf7-form-control-wrap input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  .newsletter-form-v3 .btn-submit-v3 {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  .newsletter-form-v3 .wpcf7-spinner {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Focus states for better UX */
  .newsletter-form-v3 .wpcf7-form-control-wrap input[type="email"]:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  }
  .btn.btn-lime.signup-btn {
	color: #fff;
}
}
@media (min-width: 1024px) {
    .header-actions {
        margin-left: 1rem;
    }
}
/* --- How It Works Page Styles --- */

/* Hero Section */
.how-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
    background-color: var(--color-white);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

.how-hero .section-title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-family: var(--font-oswald);
}

.how-hero .section-subtitle {
    font-size: 1.25rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-family: var(--font-poly);
    z-index: 10;
    color: #0A0A0A;
}

/* Floating Veggies - REMOVED per user request */

/* Features Section */
.feature-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 40px;
    padding: 0;
}

.feature-image img {
    width: 512px;
    max-width: 512px;
    height: auto;
    max-height: 354px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Border Colors */
.feature-image.border-red {
    border: 20px solid #E32619; /* Red from buttons */
}
.feature-image.border-pink {
    border: 20px solid #BF5687; /* Pink from buttons */
}
.feature-image.border-lime {
    border: 20px solid #B0C929; /* Lime from buttons */
}
.feature-image.border-teal {
    border: 20px solid #2B9394; /* Teal from buttons */
}
.feature-image.border-none {
    border: none;
    border-radius: 12px;
}
.feature-image.border-none img {
     border-radius: 12px;
}

.feature-text {
    flex: 1;
    text-align: left;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-desc  {
    font-family: var(--font-poly);
    font-size: 1.125rem ; /* 18px */
    color: var(--color-black);
    line-height: 1.6;
}

/* Custom Buttons */
.btn-red {
    background-color: #EF4444; 
    color: white;
    box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.39);
}
.btn-red:hover {
    background-color: #DC2626;
    transform: translateY(-2px);
}

.btn-pink {
    background-color: #D946EF; /* Fuschia 500 */
    color: white;
    box-shadow: 0 4px 14px 0 rgba(217, 70, 239, 0.39);
}
.btn-pink:hover {
    background-color: #C026D3; /* Fuschia 600 */
    transform: translateY(-2px);
}

.btn-teal {
    background-color: #06B6D4; /* Cyan 500 */
    color: white;
    box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.39);
}
.btn-teal:hover {
    background-color: #0891B2; /* Cyan 600 */
    transform: translateY(-2px);
}

/* FAQ Logo Icon Adjustment */
.faq-title .logo-icon {
    display: inline-block;
    vertical-align: middle;
}


/* Responsive - How It Works Page (feature-specific only) */
@media (max-width: 1024px) {
    /* Hero */
    .how-hero {
        min-height: 65vh;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .how-hero .section-title { font-size: 3rem; }
    .how-hero .section-subtitle { font-size: 1.125rem; max-width: 34rem; }

    /* Features */
    .feature-container { gap: 3rem; }
    .feature-row { gap: 2rem; }
    .feature-title { font-size: 2rem; }
    .feature-desc { font-size: 1rem; line-height: 1.5; }
    .feature-image img {
        width: 420px;
        max-width: 420px;
        max-height: 300px;
    }
    .feature-image.border-red,
    .feature-image.border-pink,
    .feature-image.border-lime,
    .feature-image.border-teal {
        border-width: 16px;
    }
    .feature-text .btn {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .how-hero {
        min-height: 50vh;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .how-hero .section-title { font-size: 2.25rem; margin-bottom: 1rem; }
    .how-hero .section-subtitle { font-size: 1rem; max-width: 28rem; line-height: 1.5; }
    .hero-veggies { display: none; }

    /* Features */
    .feature-container { gap: 2.5rem; }
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .feature-row.feature-reverse {
        flex-direction: column;
    }
    .feature-text {
        align-items: center;
        text-align: center;
    }
    .feature-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    .feature-desc {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .feature-image {
        border-radius: 24px;
    }
    .feature-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 14px;
    }
    .feature-image.border-red,
    .feature-image.border-pink,
    .feature-image.border-lime,
    .feature-image.border-teal {
        border-width: 12px;
        border-radius: 26px;
    }
    .feature-text .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .how-hero {
        min-height: 40vh;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .how-hero .section-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .how-hero .section-subtitle { font-size: 0.9375rem; max-width: 100%; padding: 0 0.5rem; }

    /* Features */
    .feature-container { gap: 2rem; }
    .feature-title { font-size: 1.5rem; }
    .feature-desc { font-size: 0.875rem; }
    .feature-image.border-red,
    .feature-image.border-pink,
    .feature-image.border-lime,
    .feature-image.border-teal {
        border-width: 8px;
        border-radius: 20px;
    }
    .feature-image img {
        border-radius: 12px;
    }
    .feature-text .btn {
        font-size: 0.9375rem;
        padding: 0.7rem 1.25rem;
    }
    .feature-text { gap: 1rem; }
}
.feature-text a {
    text-decoration: unset;
}

/* --- FAQ Page Styles --- */

/* Hero */
.faq-page-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.faq-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2026/02/9689153-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.faq-page-hero .section-title {
    font-size: 3.25rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
    font-family: var(--font-oswald);
    text-transform: uppercase;
}

/* Search Bar */
.faq-search-bar {
    display: flex;
    align-items: center !important;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: transparent;
    border: 1px solid #333;
    border-radius: 0 !important;
    height: 54px !important;
    overflow: hidden;
    padding: 5px !important; /* Create the gap from the borders */
}

.faq-search-bar svg {
    margin-left: 1rem;
    flex-shrink: 0;
    color: #555;
}

.faq-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.9rem 1rem;
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0;
    background: transparent;
    color: #0A0A0A;
}

.faq-search-bar input::placeholder {
    color: #0A0A0A;
    opacity: 1; /* Ensure color is visible */
}

.faq-search-bar .btn {
    border-radius: 0 !important;
    width: 167px !important;
    height: 44px !important; /* 54px total height - 10px vertical padding */
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem;
    border: none !important;
    flex-shrink: 0;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-poly);
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    transform: none !important; /* Disable global hover scale effect */
}

.faq-search-bar .btn:hover {
    background: #333;
}

/* Grid Container with border */
.faq-grid-container {
    /* border: 1px solid #ddd; */
    border-radius: 16px;
    box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.25);
    background: var(--color-white);
}

/* Categories Grid */
.faq-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

/* Divider logic using pseudo-elements instead of borders to support gaps and dynamic height */
.faq-category-card {
    position: relative;
    background: transparent;
}

/* Vertical Line Segments */
.faq-category-card:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    background: #727272;
    z-index: 1;
}

.faq-category-card:nth-child(1)::after { top: 1.5rem; bottom: 0; }
.faq-category-card:nth-child(3)::after { top: 0; bottom: 1.5rem; }

/* Horizontal Line Segments */
.faq-category-card:nth-child(-n+2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #727272;
    z-index: 1;
}

.faq-category-card:nth-child(1)::before { left: 1.5rem; right: 0; }
.faq-category-card:nth-child(2)::before { left: 0; right: 1.5rem; }

/* Category Card */
.faq-category-card {
    background: transparent;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.faq-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-category-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
}

/* FAQ List */
.faq-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-category-item {
    font-family: var(--font-poly);
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.45;
}

.faq-category-item.faq-hidden-item {
    display: none;
}

.faq-item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-item-header:hover .faq-category-question {
    color: #02A708;
}

.faq-arrow-icon {
    flex-shrink: 0;
    margin-top: 0.4rem;
    transition: transform 0.3s ease;
}

.faq-category-item.faq-item-active .faq-arrow-icon {
    transform: rotate(90deg);
}

.faq-category-question {
    flex: 1;
}

.faq-item-answer {
    display: none;
    padding: 0.5rem 0 0.25rem 1.5rem;
}

.faq-category-item.faq-item-active .faq-item-answer {
    display: block;
}

.faq-answer-content {
    font-family: var(--font-poly);
    font-size: 0.875rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}

.faq-answer-content p {
    margin: 0 0 1rem 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* View All */
.faq-view-all-btn {
    background: none;
    border: none;
    color: #02A708;
    font-family: var(--font-poly);
    font-size: 1.125rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    margin-top: 1.25rem;
    display: inline-block;
    transition: color 0.2s;
}

.faq-view-all-btn:hover {
    color: #028a06;
    text-decoration: underline;
}

/* FAQ Modal */
.faq-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.faq-modal-overlay.faq-modal-open {
    display: flex;
}

.faq-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.faq-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-modal-header h3 {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0;
}

.faq-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    transition: color 0.2s;
}

.faq-modal-close:hover {
    color: #000;
}

.faq-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-modal-item {
    font-family: var(--font-poly);
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.45;
}

.faq-modal-item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-modal-item-header:hover .faq-category-question {
    color: #02A708;
}

.faq-modal-item.faq-modal-item-active .faq-arrow-icon {
    transform: rotate(90deg);
}

.faq-modal-item-answer {
    display: none;
    padding: 0.5rem 0 0.25rem 1.5rem;
}

.faq-modal-item.faq-modal-item-active .faq-modal-item-answer {
    display: block;
}

.faq-modal-item-answer p {
    font-family: var(--font-poly);
    font-size: 0.875rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - FAQ Page */
@media (max-width: 1024px) {
    .faq-page-hero {
        min-height: 40vh;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    .faq-page-hero .section-title {
        font-size: 2.75rem;
    }
    .faq-category-card {
        padding: 2rem;
    }
    .faq-category-title {
        font-size: 1.25rem;
    }
    .faq-category-item {
        font-size: 1rem;
    }
    .faq-view-all-btn {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-page-hero {
        min-height: 35vh;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .faq-page-hero .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    .faq-search-bar {
        max-width: 100%;
    }
    .faq-search-bar .btn {
        padding: 0.9rem 1.5rem;
    }

    /* Single column layout */
    .faq-categories-grid {
        grid-template-columns: 1fr;
    }

    /* Hide all divider lines on mobile */
    .faq-categories-grid::after,
    .faq-categories-grid::before,
    .faq-category-card::after,
    .faq-category-card::before {
        display: none !important;
    }

    .faq-category-card {
        padding: 1.5rem;
    }

    .faq-category-title {
        font-size: 1.125rem;
    }
    .faq-category-item {
        font-size: 0.9375rem;
    }
    .faq-view-all-btn {
        font-size: 0.9375rem;
    }
    .faq-modal {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-page-hero {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 2rem;
    }
    .faq-page-hero .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    .faq-search-bar {
        max-width: 100%;
    }
    .faq-search-bar svg {
        display: block; /* Ensure icon is visible */
    }
    .faq-search-bar input {
        padding: 0.75rem 0.5rem;
        font-size: 16px; /* Slightly smaller for mobile if needed */
    }
    .faq-search-bar .btn {
        width: 120px !important; /* Slightly smaller button for mobile */
        height: 44px !important;
    }

    .faq-grid-container {
        border-radius: 10px;
    }
    .faq-category-card {
        padding: 1.25rem;
    }
    .faq-category-title {
        font-size: 1.2rem;
    }
    .faq-category-item {
        font-size: 0.875rem;
    }
    .faq-category-icon img {
        width: 22px;
        height: 18px;
    }
    .faq-view-all-btn {
        font-size: 0.875rem;
    }
    .faq-modal {
        padding: 1rem;
        max-height: 90vh;
    }
    .faq-modal-overlay {
        padding: 0.75rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Hero */
.contact-page-hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
}

.contact-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2026/02/9689153-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.contact-page-hero .section-title {
    font-size: 3.75rem; /* 60px */
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-family: var(--font-oswald);
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-family: var(--font-poly);
    font-size: 1.25rem; /* 20px */
    color: #0A0A0A;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Contact Content Grid */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left - Form Side */
.contact-form-title {
    font-family: var(--font-oswald);
    font-size: 3.125rem; /* 50px */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    color: var(--color-black);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1.5px solid #222;
    border-radius: 2px;
    padding: 0.9rem 1rem;
    background: #fff;
    transition: border-color 0.2s;
}

.contact-field:focus-within {
    border-color: #000;
}

.contact-field svg {
    flex-shrink: 0;
    color: #333;
}

.contact-field input,
.contact-field textarea {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-poly);
    font-size: 1rem;
    color: #222;
    background: transparent;
    resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #666;
}

.contact-field-textarea {
    align-items: flex-start;
    min-height: 140px;
}

.contact-field-textarea svg {
    margin-top: 0.2rem;
}

.contact-send-btn {
    align-self: flex-start;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-oswald);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.contact-send-btn:hover {
    background: #333;
}

/* Contact Form 7 Overrides */
.contact-cf7-wrap .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-cf7-wrap .wpcf7-form p {
    margin: 0;
}

.contact-cf7-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-cf7-wrap input[type="text"],
.contact-cf7-wrap input[type="email"],
.contact-cf7-wrap textarea {
    width: 100%;
    border: 1.5px solid #222;
    border-radius: 2px;
    padding: 0.9rem 1rem 0.9rem 3.25rem;
    font-family: var(--font-poly);
    font-size: 1rem;
    color: #222;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 0.75rem center;
    background-size: 24px 24px;
    outline: none;
    transition: border-color 0.2s;
}

.contact-cf7-wrap input[type="text"] {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12C14.4752 12 16.5 9.97495 16.5 7.5C16.5 5.02505 14.4752 3 12 3C9.52477 3 7.5 5.02505 7.5 7.5C7.5 9.97495 9.52477 12 12 12ZM12 14.25C9.01884 14.25 3 15.7688 3 18.75V21H21V18.75C21 15.7688 14.9812 14.25 12 14.25Z' fill='black'/%3E%3C/svg%3E");
}

.contact-cf7-wrap input[type="email"] {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4C2.895 4 2.01 4.895 2.01 6L2 18C2 19.105 2.895 20 4 20H20C21.105 20 22 19.105 22 18V6C22 4.895 21.105 4 20 4ZM20 8L12 13L4 8V6L12 11L20 6V8Z' fill='%230A0A0A'/%3E%3C/svg%3E");
}

.contact-cf7-wrap textarea {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM8 10V12H16V10H8Z' fill='%230A0A0A'/%3E%3C/svg%3E");
    background-position: 0.75rem 0.9rem;
    resize: none;
    min-height: 160px;
}

.contact-cf7-wrap input[type="text"]:focus,
.contact-cf7-wrap input[type="email"]:focus,
.contact-cf7-wrap textarea:focus {
    border-color: #000;
}

.contact-cf7-wrap input::placeholder,
.contact-cf7-wrap textarea::placeholder {
    color: #666;
}

.contact-cf7-wrap input[type="submit"] {
    align-self: flex-start;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-poly);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.contact-cf7-wrap input[type="submit"]:hover {
    background: #333;
}

.contact-cf7-wrap .wpcf7-response-output {
    border: 1.5px solid #222 !important;
    border-radius: 2px;
    font-family: var(--font-poly);
    font-size: 0.875rem;
    color: #222;
    background: #f5f5f5;
    padding: 0.75rem 1rem;
}

/* Right - Info Cards Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-info-container {
    border: 1px solid #ddd;
    border-radius: 16px;
    box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #02A7081A;
    padding: 1.75rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    flex-shrink: 0;
    padding-top: 0.25rem;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card-title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-black);
    margin: 0;
    line-height: 1;
}
.contact-info-icon img {
    height: 24px;
}

.contact-info-card-desc {
    font-family: var(--font-poly);
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.5;
    margin: 0;
}

.contact-info-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 0.75rem 1.75rem;
    font-size: 16px;
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-poly);
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #02A708;
    color: #fff;
}

/* FAQ CTA Section */
.contact-faq-cta {
    padding-bottom: 5rem;
}

.contact-faq-cta .newsletter-box-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact-faq-cta .contact-faq-cta-title {
    font-family: var(--font-oswald);
    font-size: 3.125rem; /* 50px */
    font-weight: 700;
    color: #fff;
    line-height: 4rem; /* 64px */
    text-transform: capitalize;
    letter-spacing: 0;
    margin: 0;
    text-align: left;
}

.contact-faq-cta .newsletter-content {
    flex: 1;
}

.contact-faq-cta-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-poly);
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-faq-cta-btn:hover {
    background: #222;
}




/* --- Redesigned Terms and Conditions --- */
.terms-conditions-page {
    background-color: #fff;
}

.terms-layout-section {
    padding-top: 0;
}

.terms-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    align-items: start;
}

.terms-sidebar {
    position: sticky;
    top: 100px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 60px 40px;
    background-color: #F2F2F2;
    border-right: 1px solid #eee;
}

.terms-sidebar::-webkit-scrollbar {
    width: 0px; /* Hide scrollbar for a cleaner look if possible, or keep it 4px */
}

.terms-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.terms-sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.terms-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-nav ul li {
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.terms-nav ul li a {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: 20px;
    color: #0A0A0A;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    text-transform: capitalize;
    display: block;
    padding-right: 0;
}

.terms-nav ul li a:hover, .terms-nav ul li a.nav-highlight {
    color: #02A708;
}

.terms-nav ul li a.nav-highlight {
    color: var(--color-lime);
    font-weight: 600;
}

.terms-nav ul li a.nav-highlight::after {
    content: '';
    position: absolute;
    right: -40px; /* Aligns with the sidebar edge since padding is 40px */
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background-color: #02A708;
}

.terms-main {
    padding: 60px;
    background-color: #fff;
}

.terms-page-title {
    font-family: var(--font-oswald);
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.terms-body section {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.terms-body h3 {
    font-family: var(--font-oswald);
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.terms-body p {
    font-family: var(--font-poly);
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.highlight-box {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.highlight-box h3 {
    color: #2e7d32;
    margin-top: 0;
}

.terms-footer-action {
    margin-top: 60px;
    padding-bottom: 40px;
}

.btn-terms-get-started {
    display: inline-block;
    background-color: #02A708;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 4px;
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-terms-get-started:hover {
    background-color: #028a06;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .terms-grid {
        grid-template-columns: 300px 1fr;
    }
    .terms-sidebar {
        padding: 40px 24px;
    }
    .terms-main {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    /* Stack layout vertically */
    .terms-grid {
        grid-template-columns: 1fr;
    }

    /* Sidebar becomes a horizontal scrollable nav strip */
    .terms-sidebar {
        position: static;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px 16px;
        background-color: #F2F2F2;
        border-right: none;
        border-bottom: 3px solid #e0e0e0;
        /* Hide scrollbar on mobile for cleaner look */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .terms-sidebar::-webkit-scrollbar {
        display: none;
    }

    /* Nav items become a horizontal chip list */
    .terms-nav ul {
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        width: max-content;
        padding-bottom: 4px;
    }

    .terms-nav ul li {
        margin-bottom: 0;
        text-align: left;
        flex-shrink: 0;
    }

    .terms-nav ul li a {
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        text-transform: capitalize;
        color: #0A0A0A;
        padding: 8px 16px;
        background: #fff;
        border-radius: 50px;
        border: 1.5px solid #e0e0e0;
        white-space: nowrap;
        display: inline-block;
        line-height: 1.2;
        transition: all 0.2s;
    }

    .terms-nav ul li a:hover,
    .terms-nav ul li a.nav-highlight {
        color: #fff;
        background: #02A708;
        border-color: #02A708;
    }

    /* Remove the vertical green indicator on mobile */
    .terms-nav ul li a.nav-highlight::after {
        display: none;
    }

    /* Content area clean spacing */
    .terms-main {
        padding: 0;
    }

    .terms-page-title {
        font-size: 28px;
        margin-bottom: 28px;
        line-height: 1.1;
        padding-top: 24px;
    }

    .terms-body section {
        margin-bottom: 32px;
        scroll-margin-top: 80px;
    }

    .terms-body h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .terms-body p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .highlight-box {
        padding: 20px;
        border-radius: 10px;
        margin: 28px 0;
    }
}

@media (max-width: 480px) {
    .terms-page-title {
        font-size: 24px;
    }
    .terms-main {
        padding: 0;
    }
    .terms-nav ul li a {
        font-size: 13px;
        padding: 7px 14px;
    }
}