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

:root {
    --primary: #1f6e30;      /* Agri Green */
    --secondary: #f15a29;    /* Sam Orange-Red from PNG logo */
    --primary-light: #2d9d45;
    --secondary-light: #ff7b52;
    --dark: #1a1a1a;
    --light: #f8faf7;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}

/* Header/Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    padding: 0.75rem 5%;
    box-shadow: var(--shadow-md);
}

.logo-container {
    background: var(--white);
    padding: 10px 25px 40px;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%); /* Zespri Slanted Box */
    margin-top: -10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .logo-container {
    padding: 8px 15px 25px;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.scrolled .nav-links a {
    color: var(--dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.buy-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
}

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

.logo-container {
    position: relative;
    height: 140px; 
    width: 280px; /* Increased width to prevent clipping */
    background: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    /* Wider leaf shape to accommodate the brand name */
    clip-path: polygon(0 0, 100% 0, 100% 60%, 45% 100%, 0 60%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: -2rem; 
    z-index: 1;
}

.navbar.scrolled .logo-container {
    height: 70px;
    width: 180px;
    clip-path: none; 
    background: transparent;
    margin-left: 0;
    padding-top: 0;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 90%; /* Ensure it stays within bounds */
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 0 0.8rem;
    height: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.nav-links a:hover {
    color: var(--white);
    background: var(--primary);
}

.navbar.scrolled .nav-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
    height: 100%;
    transition: background 0.3s ease;
}

.has-dropdown:hover {
    background: #1f6e30;
}

.has-dropdown > a {
    position: relative;
    z-index: 1010;
}

.has-dropdown:hover > a {
    color: white !important;
    text-shadow: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 220px;
    background: #1f6e30;
    list-style: none;
    padding: 1rem 0 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1005;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    width: 100%;
    display: block;
    padding: 0;
}

.dropdown-menu a {
    color: white !important;
    padding: 0.7rem 2rem !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    background: transparent !important;
    text-transform: none !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    padding-left: 2.5rem !important;
    font-weight: 600 !important;
}

/* Specific styling for the first item in dropdown to look like a header if needed, 
   but in the image they are just links. */

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 250px; /* Balanced width */
}

.buy-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon {
    font-size: 1.2rem;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    color: white;
}

.hero-content h1 {
    color: white;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

.discover-more {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1f6e30;
    padding: 1.2rem 4rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.discover-more:hover {
    background: var(--primary);
    color: white;
}

.hero-tagline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(31, 110, 48, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Section: Who We Are */
.section {
    padding: 100px 5%;
}

.who-we-are {
    background: var(--white);
    position: relative;
}

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

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.grid.reverse {
    direction: rtl;
}

.grid.reverse > * {
    direction: ltr;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: #f8faf7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    border-top: 5px solid var(--secondary); /* Matches 'Sam' Red */
}

.experience-badge strong {
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1;
}

.experience-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #718096;
    margin-top: 0.5rem;
    text-align: center;
}

/* Highlights Section */
.highlights-section {
    background: #f0f4f0;
    padding: 120px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.premium-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.premium-highlight-card {
    background: var(--white);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image-bg {
    height: 180px;
    overflow: hidden;
}

.card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-highlight-card:hover .card-image-bg img {
    transform: scale(1.1);
}

.premium-highlight-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.75rem;
    position: relative;
    z-index: 1;
}

.premium-highlight-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

/* Infrastructure */
.infrastructure {
    background: var(--white);
}

.facility-features {
    list-style: none;
    margin: 2rem 0;
}

.facility-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.accreditation-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.acc-badge {
    background: #f0f4f0;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(31, 110, 48, 0.2);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Highlights Grid */
.highlights {
    background: #f0f4f0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(31, 110, 48, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #4a5568;
}

/* Accreditations */
.accreditations {
    background: var(--white);
    padding: 60px 5%;
    border-top: 1px solid #eee;
}

.accreditations-title {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #718096;
    margin-bottom: 3rem;
}

.accreditation-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.7;
    filter: grayscale(1);
    transition: var(--transition);
}

.accreditation-logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.accreditation-tag {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    border: 2px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 110, 48, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 0.75rem;
}

.product-info p {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 0;
}

/* Journey Timeline */
.journey {
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.journey .section-label {
    color: var(--primary-light);
}

.journey .section-title {
    color: var(--white);
}

.journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journey-steps {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% - 20px);
    background: rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.parallax-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
}

.parallax-image img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -10%;
}

/* Global Presence Map */
.global-presence {
    background: #f8faf7;
}

.global-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.g-stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.g-stat span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 700;
    text-transform: uppercase;
}

.styled-map-container {
    background: rgba(31, 110, 48, 0.05);
    height: 400px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.dot span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
}

.dot.active {
    background: var(--secondary); /* Matches 'Sam' Red */
    width: 16px;
    height: 16px;
}

.dot.uk { top: 30%; left: 45%; }
.dot.europe { top: 35%; left: 52%; }
.dot.middle-east { top: 45%; left: 60%; }
.dot.asia { top: 50%; left: 75%; }
.dot.india { top: 55%; left: 68%; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

/* Footer Styles */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-logo img {
    height: 60px;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* Mobile Sidebar Styling - Zespri Style */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 2000;
    transition: var(--transition);
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
}

.mobile-sidebar.active {
    right: 0;
    visibility: visible;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-sidebar.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: relative;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #b4d433; /* Zespri Lime Green */
    padding: 2.5rem;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.close-sidebar {
    background: transparent;
    border: none;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    font-family: Arial, sans-serif; /* For a clean X */
    font-weight: 300;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.sidebar-links a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.sidebar-links .buy-btn {
    background: var(--white);
    color: #b4d433;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    margin-top: 2rem;
    font-size: 1.1rem;
    box-shadow: none;
}

/* Mobile Toggle Button - Zespri Style */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px; /* Increased gap for better definition */
    background: #ed1c24; /* Zespri Red */
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 0; /* Square button */
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    width: 20px; /* Slightly shorter lines like the image */
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsive Utilities (At the end to ensure override) */
@media (max-width: 1024px) {
    .container { padding: 0 5%; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .journey-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .parallax-image {
        height: 400px;
    }

    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important; /* Force display */
        visibility: visible !important;
        background: transparent !important; /* Transparent mobile header */
        backdrop-filter: none;
        padding: 1rem 5%;
        z-index: 9999 !important; /* Maximum z-index */
    }
    
    .navbar.scrolled {
        background: var(--white) !important;
        backdrop-filter: blur(10px);
    }

    .logo img {
        height: 65px; /* Significantly larger logo */
    }

    .logo-container {
        padding: 15px 20px 45px;
        margin-top: -10px;
        clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
        border-radius: 0;
    }

    .buy-link span {
        display: none; /* Hide text on mobile, keep icon */
    }
    
    .nav-right {
        gap: 0.75rem;
    }

    .section { padding: 5rem 0; }
    .section-title { font-size: 2.2rem; }
    
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 2.5rem; }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .premium-highlights-grid {
        grid-template-columns: 1fr;
    }

    .global-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .styled-map-container {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
