@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette Extracted from Prompt */
    --primary-green: #2E7D32;
    --primary-green-dark: #1B5E20;
    --primary-green-light: #E8F5E9;
    --earth-brown: #8D6E63;
    --earth-brown-light: #D7CCC8;
    --soft-yellow: #FBC02D;
    --soft-yellow-light: #FFF9C4;
    --white: #FFFFFF;

    /* Typography Colors */
    --text-dark: #1F2937;
    --text-muted: #4B5563;

    /* Backgrounds */
    --bg-light: #FAFAFA;
    --bg-off-white: #F3F4F6;

    /* Utility Variables */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-height: 85px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Base Layout Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* =========================================
   Enhanced Professional Header
========================================= */
.site-header {
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styling */
/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-left: -170px;
}

/* WordPress Custom Logo Image */
.custom-logo {
    max-height: 100px;
    width: auto;
}

/* Logo Wrapper created by WordPress */
.custom-logo-link {
    display: flex;
    align-items: center;
}

/* Fallback icon */
.logo-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #2e7d32;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* Text Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Brand Name */
.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-left: -120px;
}

/* Tagline */
.brand-tagline {
    font-size: 12px;
    color: #777;
    margin-left: -120px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-logo {
        max-height: 80px;
        margin-left: 110px;
    }

    .brand-name {
        font-size: 16px;
        padding-left: 75px;
       
    }
    .brand-tagline {
    font-size: 12px;
    padding-left: 75px;
    
    }
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--soft-yellow);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green-dark);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Header Actions & Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
    color: var(--white);
}

.contact-btn:hover i {
    transform: translateX(4px);
}

.phone-only {
    display: none;
}

/* Custom Hamburger Icon */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger {
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-green-dark);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
    width: 70%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* Hamburger Active Animation class (toggled by JS) */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(27, 94, 32, 0.7), rgba(46, 125, 50, 0.4)), url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 0;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--soft-yellow);
    color: var(--primary-green-dark);
    border: 2px solid var(--soft-yellow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--soft-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Shared Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--soft-yellow);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* About Preview */
.about-preview {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green-dark);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature i {
    color: var(--primary-green);
    font-size: 1.5rem;
    background: var(--primary-green-light);
    padding: 12px;
    border-radius: 8px;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Product Categories (Home Page) */
.product-categories {
    background-color: var(--bg-off-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green-light);
}

.category-img {
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.category-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    gap: 8px;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Gallery Highlights */
.gallery-section {
    background: var(--bg-off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
}

/* Farmer Trust CTA */
.trust-cta {
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.9)), url('farmer.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Contact CTA */
.contact-cta-section {
    background-color: var(--earth-brown-light);
    padding: 80px 0;
}

.contact-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    gap: 2rem;
}

.contact-cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.contact-cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer Element */
footer {
    background-color: #111827;
    color: #D1D5DB;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-left: 0px; 
}

.footer-brand .logo span {
    color: var(--white);
    margin-left: 10px;
}

.footer-brand p {
    margin-top: 1.5rem;
    line-height: 1.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--soft-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--soft-yellow);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--soft-yellow);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: #128C7E;
}

/* Utility / Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Headers (Inner Pages) */
.page-header {
    height: 40vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(27, 94, 32, 0.8), rgba(27, 94, 32, 0.5));
    z-index: -1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
}

/* Detailed Product Layout Styles (Products Page) */
.product-section {
    padding: 80px 0;
}

.product-group {
    margin-bottom: 5rem;
}

.product-group-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-green-light);
    padding-bottom: 0.5rem;
}

.product-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card-lg {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card-lg:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary-green-light);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--soft-yellow);
    color: var(--primary-green-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.product-card-lg .content-w {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-lg h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card-lg p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-meta {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-green);
    width: 20px;
}

/* Contact Form Grid */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green-light);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.form-group-wrap {
    margin-bottom: 1.5rem;
}

.form-group-wrap label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-green-light);
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-green-dark);
    box-shadow: var(--shadow-md);
}

.map-container{
    width:100%;
    height:450px;
    margin-top:4rem;
    border-radius:16px;
    overflow:hidden;
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .contact-btn {
        padding: 10px 18px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 75px;
    }

    .desktop-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        gap: 1.5rem;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        border-bottom: 3px solid var(--primary-green);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .phone-only {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

    .highlight-link {
        background: var(--primary-green-light);
        color: var(--primary-green-dark) !important;
        padding: 12px;
        border-radius: 8px;
        display: block;
        text-align: center;
    }

    .nav-link::before {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
        /* Image above text on mobile */
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-cta-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    .gallery-item {
        height: 250px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}