@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Design System Variables --- */
:root {
    --primary-blue: #3284af;
    --primary-dark: #062434;
    --secondary-teal: #21b8c9;
    --white: #ffffff;
    --light-bg: #f5f8fa;
    --gray-text: #8e9597;
    --dark-text: #1a2224;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-height: 140px;
}

/* --- Base Resets & Typography --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Utility Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header Layout --- */
.main-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-us {
    display: flex;
    align-items: center;
    gap: 12px;
}

.follow-us span {
    color: var(--gray-text);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: var(--gray-text);
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--white);
    background-color: var(--secondary-teal);
    transform: translateY(-2px);
}

.divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.15);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item i {
    color: var(--secondary-teal);
    font-size: 16px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 11px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-item a.contact-value:hover {
    color: var(--secondary-teal);
}

/* --- Main Navigation Bar --- */
.nav-section {
    background-color: var(--white);
    border-bottom: 1px solid rgba(6, 36, 52, 0.08);
    box-shadow: 0 2px 16px rgba(6, 36, 52, 0.07);
    position: relative;
    z-index: 900;
}

.nav-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    padding: 12px 0;
    flex-shrink: 0;
}

.logo-container img {
    height: 48px;
    width: auto;
    display: block;
}

/* Navigation Menu Wrapper — full-width flat row */
.nav-menu-bar {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-left: 0;
    flex-grow: 1;
    justify-content: flex-end;
    margin-bottom: 0;
    box-shadow: none;
    height: 64px;
}

/* Contact Us pill button */
.nav-utility-box {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0;
    clip-path: none;
    margin-left: 20px;
    border-radius: 0;
}

.nav-contact-btn {
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: var(--secondary-teal);
    border: 2px solid var(--secondary-teal);
    border-radius: 30px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-contact-btn:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(50, 132, 175, 0.25);
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 70%;
    display: flex;
    align-items: center;
    border-right: 1px dashed rgba(0, 0, 0, 0.08);
}

.nav-item:last-child {
    border-right: none;
}

.nav-link {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 14px;
    padding: 0px 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 12px;
    transition: var(--transition);
}

.nav-item:hover>.nav-link {
    color: var(--primary-blue);
}

.nav-item:hover>.nav-link i {
    transform: rotate(180deg);
}

/* Active Link State */
.nav-item.active>.nav-link {
    color: var(--primary-blue);
}

/* Underline Animation on Hover */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Avoid underline for dropdown items */
.dropdown-menu .nav-item::after {
    display: none;
}

/* --- Dropdown Menus --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 28px;
}



/* --- Mobile Menu Elements --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 24px;
    cursor: pointer;
    align-items: center;
}

/* Hide Mobile elements on desktop */
.mobile-menu-drawer {
    display: none;
}

.mobile-menu-backdrop {
    display: none;
}

/* --- Animations --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Premium Hero Banner Slider --- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 580px;
    background-color: var(--primary-dark);
    overflow: hidden;
}

/* --- Video Hero Banner --- */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 580px;
    background-color: var(--primary-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Full-cover background video */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark gradient overlay — same darkness as old slide overlay */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgb(0 0 0 / 25%) 50%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

/* Content sits above video and overlay */
.hero-video-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 80%) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    max-width: 820px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-subtitle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out forwards;
}

.slide-icon {
    color: var(--secondary-teal);
    font-size: 24px;
}

.slide-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.slide-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.slide-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.slide-btn {
    background-color: var(--white);
    color: var(--dark-text);
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.slide-btn:hover {
    background-color: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 184, 201, 0.3);
}

.slide-phone-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.slide-phone-icon:hover {
    border-color: var(--secondary-teal);
    background-color: var(--secondary-teal);
    transform: scale(1.05);
}

.slide-phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(6, 36, 52, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--secondary-teal);
    border-color: var(--secondary-teal);
    transform: translateY(-50%) scale(1.05);
}

.prev-arrow {
    left: 40px;
}

.next-arrow {
    right: 40px;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pxl-grass-divider {
    z-index: 3;
    position: absolute;
    bottom: -1px;
    /* Slight offset to prevent background gaps */
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url('../images/grass.svg');
    background-repeat: repeat-x;
    background-size: 466px 70px;
    color: #ffffff;
    pointer-events: none;
    opacity: 0.85;
}

/* --- Footer and CTA Wrapper --- */
.footer-cta-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}



/* Unified Premium CTA Card Section */
.cta-card-section {
    padding: 80px 0px;
    position: relative;
    z-index: 10;
}

.cta-unified-card {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #f0f6f9;
    /* Soft, premium brand light blue-grey */
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 20px 45px rgba(6, 36, 52, 0.07);
    border: 1px solid rgba(33, 184, 201, 0.22);
    position: relative;
    overflow: hidden;
    gap: 50px;
}

/* Background graphics overlay */
.cta-unified-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/cta_spices.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.cta-text-content {
    flex: 1;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(33, 184, 201, 0.1);
    color: var(--secondary-teal);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(33, 184, 201, 0.15);
}

.cta-text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-text-content p {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}

.cta-quick-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.cta-action-item:hover {
    transform: translateY(-2px);
}

.cta-action-item .action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(33, 184, 201, 0.08);
    border: 1px solid rgba(33, 184, 201, 0.2);
    color: var(--secondary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.cta-action-item:hover .action-icon {
    background-color: var(--secondary-teal);
    color: var(--white);
    box-shadow: 0 0 15px rgba(33, 184, 201, 0.35);
}

.cta-action-item .action-text {
    display: flex;
    flex-direction: column;
}

.cta-action-item .action-label {
    font-size: 11px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cta-action-item .action-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.cta-form-content {
    width: 38%;
    background-color: var(--white);
    border: 1px solid rgba(6, 36, 52, 0.06);
    border-radius: 12px;
    padding: 35px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(6, 36, 52, 0.03);
}

.cta-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cta-form-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 25px;
}

.cta-subscribe-form {
    width: 100%;
}

.cta-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-input-group input {
    width: 100%;
    background-color: #f7fafc;
    border: 1px solid rgba(6, 36, 52, 0.12);
    border-radius: 6px;
    padding: 14px 20px;
    color: var(--dark-text);
    outline: none;
    font-family: var(--font-main);
    font-size: 14px;
    transition: var(--transition);
}

.cta-input-group input::placeholder {
    color: rgba(6, 36, 52, 0.4);
}

.cta-input-group input:focus {
    border-color: var(--secondary-teal);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(33, 184, 201, 0.15);
}

.cta-input-group button {
    background-color: var(--secondary-teal);
    color: var(--white);
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(33, 184, 201, 0.2);
}

.cta-input-group button:hover {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(50, 132, 175, 0.3);
    transform: translateY(-1px);
}

/* Footer main styling */
.footer-main {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.footer-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(6 36 52 / 70%) 0%, rgb(3 23 34 / 55%) 100%);
    z-index: 1;
}

.footer-content-container,
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h3.footer-col-title {
    font-size: 19px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
    position: relative;
    color: var(--white);
    padding-bottom: 8px;
}

.footer-column h3.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary-teal);
}

/* Column 1: Brand & Socials */
.brand-col .footer-logo-wrapper {
    margin-bottom: 10px;
}

.brand-col .footer-logo {
    max-height: 60px;
}

.brand-col .footer-brand-desc {
    font-size: 14px;
    color: #e1e5e6;
    line-height: 1.7;
    margin-bottom: 25px;
}

.brand-col .footer-social-row {
    display: flex;
    gap: 12px;
}

.brand-col .footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.brand-col .footer-social-btn:hover {
    background-color: var(--secondary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Column 2: Our Services/Links */
.services-col .footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-col .footer-links-list a {
    color: #e1e5e6;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.services-col .footer-links-list a:hover {
    color: var(--secondary-teal);
    padding-left: 6px;
}

/* Column 3: Our Contact */
.contact-col .footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-col .footer-contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-col .contact-icon-gold {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--secondary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-col .contact-text-item {
    font-size: 14px;
    color: #e1e5e6;
    line-height: 1.6;
}

/* Column 4: Blog Posts */
.blog-col .footer-blog-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-col .footer-blog-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-col .blog-thumb {
    width: 70px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-col .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-col .blog-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-col .blog-title-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    transition: var(--transition);
}

.blog-col .blog-title-link:hover {
    color: var(--secondary-teal);
}

.blog-col .blog-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-col .blog-date i {
    color: var(--secondary-teal);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #031722;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .footer-copyright-text {
    font-size: 14px;
    color: #e1e5e6;
}

.footer-bottom .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom .footer-bottom-links a {
    font-size: 14px;
    color: #e1e5e6;
    transition: var(--transition);
}

.footer-bottom .footer-bottom-links a:hover {
    color: var(--secondary-teal);
}

.footer-bottom .separator {
    color: rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* --- Video Statistics Section --- */
.video-stats-section {
    height: 220vh;
    /* Scroll track length */
    position: relative;
    background-color: var(--white);
}

.video-stats-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding-left: calc((100% - 1200px) / 2 + 20px);
    padding-right: 0;
    overflow: hidden;
}

@media (max-width: 1240px) {
    .video-stats-container {
        padding-left: 20px;
    }
}

.stats-text-col {
    width: 30%;
    flex-shrink: 0;
}

.stats-tag-badge {
    display: inline-block;
    background-color: rgba(33, 184, 201, 0.1);
    color: var(--secondary-teal);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.stats-main-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
}

.stats-highlight-link {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.stats-video-carousel-wrapper {
    flex-grow: 1;
    overflow: hidden;
}

.stats-video-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 0px 0px 30px 0px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-teal) rgba(6, 36, 52, 0.05);
}

.stats-video-card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
    flex-shrink: 0;
}

.card-top-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-align: center;
}

.stats-video-card-box {
    width: 100%;
    height: 420px;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(6, 36, 52, 0.08);
    border: 1px solid rgba(6, 36, 52, 0.06);
    transition: var(--transition);
}

.stats-video-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 36, 52, 0.15);
}

.stats-video-card-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(6 36 52 / 0%) 50%, rgb(3 23 34 / 80%) 100%);
    z-index: 1;
}

.card-video-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-stat-number {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.card-stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Home About Us Detail Section --- */

.home-about-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0px 80px;
}

.home-about-section .bg-about-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.home-about-section .container {
    position: relative;
    z-index: 1;
}

.home-about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(6 36 52 / 65%);
    z-index: 0;
}

.about-header-block {
    text-align: center;
    margin-bottom: 70px;
}

.about-header-block h2 {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
}

.about-header-quote {
    font-size: 17px;
    color: #e4e8e9;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-split-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-media-col {
    width: 55%;
}

.about-details-col {
    width: 45%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-main-img {
    width: 100%;
    border-radius: 120px 20px 120px 20px;
    box-shadow: 0 15px 35px rgba(6, 36, 52, 0.08);
    display: block;
}

/* Video variant — maintain aspect ratio and crop to fill */
.about-video {
    object-fit: cover;
    object-position: center;
    height: 500px;

}

.about-floating-box {
    position: absolute;
    top: -30px;
    right: 30px;
    background-color: #fff;
    padding: 30px 35px;
    border-radius: 40px 10px 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(6, 36, 52, 0.25);
    color: var(--white);
}

.floating-box-icon {
    color: var(--secondary-teal);
    font-size: 22px;
    margin-bottom: 10px;
}

.floating-box-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: #062434;
}

.floating-box-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #062434;
    text-align: center;
}

.about-sub-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.about-leaf-icon {
    color: var(--secondary-teal);
    font-size: 16px;
}

.about-script-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: var(--secondary-teal);
}

.about-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.about-desc-text {
    font-size: 16px;
    color: #e4e8e9;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-divider-line {
    border: none;
    border-top: 1px dotted rgba(6, 36, 52, 0.15);
    margin: 30px 0;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-checklist .check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--secondary-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.about-checklist .check-text {
    font-size: 16px;
    font-weight: 600;
    color: #e4e8e9;
}

.about-read-more-btn {
    background-color: var(--secondary-teal);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(33, 184, 201, 0.2);
}

.about-read-more-btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* --- Video Play Button (Hero Slider) --- */
.video-play-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.play-circle {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.play-circle i {
    color: #ffffff;
    font-size: 18px;
    margin-left: 4px;
    /* optical offset for play icon */
}

.video-play-trigger:hover .play-circle {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
}

/* Ripple rings */
.play-ripple {
    position: absolute;
    top: 50%;
    left: 32px;
    /* half of 64px circle */
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: videoRipple 2s ease-out infinite;
    pointer-events: none;
}

.play-ripple-2 {
    animation-delay: 1s;
}

@keyframes videoRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

.play-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.video-play-trigger:hover .play-label {
    color: var(--secondary-teal);
}

/* --- Video Modal Overlay --- */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(3, 20, 32, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 960px;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-modal-overlay.active .video-modal-inner {
    transform: translateY(0) scale(1);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-modal-close:hover {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
}

.video-modal-frame {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .nav-link {
        padding: 24px 12px;
        font-size: 13px;
    }

    .nav-menu-bar {
        margin-left: 20px;
        padding-left: 15px;
    }
}

@media (max-width: 900px) {
    .top-bar-right {
        display: none;
        /* Hide contacts on small screen, keep social */
    }

    .top-bar .container {
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu-bar {
        display: none;
        /* We will handle mobile navigation menu separately */
    }

    .nav-section {
        padding: 15px 0;
    }

    .nav-section .container {
        padding-right: 20px;
    }

    /* Mobile Drawer Menu */
    .mobile-menu-drawer {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        z-index: 2000;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.25);
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        overflow-y: auto;
    }

    .mobile-menu-drawer.active {
        left: 0;
    }

    .mobile-menu-close {
        align-self: flex-end;
        background: none;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }

    .mobile-nav-link {
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0 0 15px;
    }

    .mobile-dropdown-menu.active {
        display: flex;
    }

    .mobile-dropdown-menu a {
        color: var(--gray-text);
        font-size: 14px;
        font-weight: 500;
    }

    .mobile-dropdown-menu a:hover {
        color: var(--secondary-teal);
    }

    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        display: none;
    }

    .mobile-menu-backdrop.active {
        display: block;
    }



    /* Mobile Unified CTA Card */
    .cta-card-section {
        padding: 50px 15px 0 15px;
        margin-bottom: -45px;
    }

    .cta-unified-card {
        flex-direction: column;
        padding: 40px 25px;
        gap: 35px;
    }

    .cta-text-content h2 {
        font-size: 26px;
        text-align: center;
    }

    .cta-text-content p {
        text-align: center;
        margin-bottom: 25px;
    }

    .cta-badge {
        margin: 0 auto 15px auto;
    }

    .cta-quick-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-action-item {
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .cta-form-content {
        width: 100%;
        padding: 25px 20px;
        text-align: center;
    }

    .cta-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spacer-col {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Mobile Hero Slider */
    .hero-slider-section,
    .hero-video-section {
        height: 65vh;
        min-height: 480px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }

    .slide-action-row {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .slide-subtitle {
        font-size: 22px;
    }

    /* Mobile Home Features */
    .home-features-section {
        margin-top: -30px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .features-wrapper-card {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 0 20px 0;
    }

    .feature-item-col {
        border-right: none;
        border-bottom: 1px dashed rgba(6, 36, 52, 0.12);
        padding: 30px 20px;
    }

    .feature-item-col:last-child {
        border-bottom: none;
        padding-bottom: 10px;
    }

    /* Mobile Statistics Card */
    .stat-card-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 15px 0;
    }

    .stat-item-col {
        border-right: none;
        border-bottom: 1px dashed rgba(33, 184, 201, 0.15);
        padding: 50px 10px 30px 10px;
        min-height: auto;
    }

    .stat-item-col:last-child {
        border-bottom: none;
    }

    /* Mobile Home About Section */
    .home-about-section {
        padding: 50px 0;
    }

    .about-header-block {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .about-header-block h2 {
        font-size: 26px;
    }

    .about-split-row {
        flex-direction: column;
        gap: 50px;
        padding: 0 15px;
    }

    .about-media-col,
    .about-details-col {
        width: 100%;
    }

    .about-main-img {
        border-radius: 60px 15px 60px 15px;
    }

    .about-floating-box {
        padding: 15px 20px;
        top: -15px;
        right: -15px;
    }

    .about-floating-box .floating-box-number {
        font-size: 26px;
    }

    .about-main-title {
        font-size: 24px;
    }

    /* Mobile Video Statistics Section */
    .video-stats-section {
        padding: 60px 0;
    }

    .video-stats-container {
        flex-direction: column;
        gap: 35px;
        padding: 0 15px;
    }

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

    .stats-main-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .stats-video-carousel-wrapper {
        width: 100%;
    }

    .stats-video-carousel {
        padding: 10px 5px 25px 5px;
        gap: 20px;
    }
}

/* ============================================================
   GARDEN TO TABLE — PROCESS SECTION (reference-matched)
   ============================================================ */

.gtt-section {
    background-color: var(--white);
    padding: 80px 0 70px;
    overflow: hidden;
}

/* --- Header --- */
.gtt-header {
    text-align: center;
    margin-bottom: 50px;
}

.gtt-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

/* --- Body: relative container --- */
.gtt-body {
    position: relative;
    width: 1160px;
    margin: 0 auto;
    height: 700px;
}

/* Product image — 600×600 circle, center=(300,350), radius=300 */
/* SVG draws the circle border — no box-shadow ring here to avoid double lines */
.gtt-product-img {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -300px;
    /* center Y = 350px */
    width: 600px;
    height: 600px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
}

@keyframes gttFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* SVG arc overlay */
.gtt-arc-svg {
    position: absolute;
    inset: 0;
    width: 1160px;
    height: 700px;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

/* Full-circle draw animation  (circumference = 2π × 300 ≈ 1885) */
.gtt-arc-path {
    stroke-dasharray: 1885;
    stroke-dashoffset: 1885;
    animation: drawGttArc 2.2s ease forwards 0.3s;
}

@keyframes drawGttArc {
    to {
        stroke-dashoffset: 0;
    }
}

/* Dots appear one by one */
.gtt-dot {
    opacity: 0;
}

.gtt-dot-1 {
    animation: gttDotIn 0.35s ease forwards 0.7s;
}

.gtt-dot-2 {
    animation: gttDotIn 0.35s ease forwards 1.0s;
}

.gtt-dot-3 {
    animation: gttDotIn 0.35s ease forwards 1.3s;
}

.gtt-dot-4 {
    animation: gttDotIn 0.35s ease forwards 1.6s;
}

.gtt-dot-5 {
    animation: gttDotIn 0.35s ease forwards 1.9s;
}

@keyframes gttDotIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Individual steps: absolutely positioned along the arc ---
   Circle: center=(300,350), r=300
   Dots (right semicircle, dy = ±290, ±155, 0):
     dot1 (377, 60)   dot2 (557,195)  dot3 (600,350)
     dot4 (557,505)   dot5 (377,640)
   Step left = dot_x + 40px gap;  step top = dot_y − 32px
   ----------------------------------------------------------- */
.gtt-step {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 4;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gtt-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.gtt-step-1 {
    top: 30px;
    left: 500px;
    transition-delay: 0.7s;
}

.gtt-step-2 {
    top: 163px;
    left: 630px;
    transition-delay: 0.9s;
}

.gtt-step-3 {
    top: 290px;
    left: 670px;
    transition-delay: 1.1s;
}

.gtt-step-4 {
    top: 420px;
    left: 620px;
    transition-delay: 1.3s;
}

.gtt-step-5 {
    top: 580px;
    left: 500px;
    transition-delay: 1.5s;
}

/* Dark-green icon circle */
.gtt-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(33, 184, 201, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.gtt-step:hover .gtt-icon {
    background: var(--primary-dark);
    transform: scale(1.08);
}

/* Icon animations */
.gtt-icon-grow {
    animation: gttGrow 2.5s ease-in-out infinite;
}

.gtt-icon-harvest {
    animation: gttHarvest 3s ease-in-out infinite;
}

.gtt-icon-process {
    animation: gttSpin 4s linear infinite;
}

.gtt-icon-quality {
    animation: gttPop 2.5s ease-in-out infinite;
}

.gtt-icon-dispatch {
    animation: gttFloat2 3s ease-in-out infinite;
}

@keyframes gttGrow {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.18) translateY(-3px);
    }
}

@keyframes gttHarvest {

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

    30% {
        transform: rotate(-15deg);
    }

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

@keyframes gttSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gttPop {

    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.2);
    }

    65% {
        transform: scale(1.12);
    }
}

@keyframes gttFloat2 {

    0%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(5px);
    }

    70% {
        transform: translateX(-3px);
    }
}

/* Step text */
.gtt-step-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.gtt-step:hover .gtt-step-text h3 {
    color: var(--secondary-teal);
}

.gtt-step-text p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .gtt-body {
        width: 100%;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-bottom: 40px;
    }

    .gtt-product-img {
        position: static;
        margin-top: 0;
        width: 240px;
        height: 240px;
        animation: none;
    }

    .gtt-arc-svg {
        display: none;
    }

    .gtt-step {
        position: static;
        opacity: 1;
        transform: none;
    }
}

.certificate-marquee {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track img {
    height: 90px;
    /* Adjust logo height */
    width: auto;
    flex-shrink: 0;
    transition: transform .3s;
}

.marquee-track img:hover {
    transform: scale(1.08);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.certificate-marquee:hover .marquee-track {
    animation-play-state: paused;
}