/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F8F9FA;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Color System Variables */
:root {
    /* Primary Agricultural Palette */
    --primary-green: #2D5016;
    --secondary-green: #4A7C28;
    --accent-green: #7FB069;
    --warm-earth: #8B6F47;
    
    /* Neutral Foundation */
    --page-bg: #F8F9FA;
    --card-bg: #FFFFFF;
    --primary-text: #1A1A1A;
    --secondary-text: #6B7280;
    --border-light: #E5E7EB;
    
    /* Background Layers */
    --hero-bg: linear-gradient(135deg, #F0F4F0 0%, #E8F2E8 100%);
    --section-bg-alt: #F9FAFB;
    
    /* Service Category Colors */
    --consultation-color: #4A7C28;
    --training-color: #7FB069;
    --assessment-color: #8B6F47;
    
    /* Shadows */
    --shadow-card: 0 8px 24px rgba(45, 80, 22, 0.12);
    --shadow-button: 0 4px 12px rgba(45, 80, 22, 0.16);
    --shadow-drop: 0 2px 8px rgba(0, 0, 0, 0.06);
    
    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    --space-section: 128px;
    
    /* Border Radius */
    --radius-card: 16px;
    --radius-button: 12px;
    --radius-input: 8px;
    --radius-large: 24px;
}

/* Typography System */
h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-xs);
}

p {
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

/* Layout Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xxl);
    }
    .hero{
        min-height: 70vh;
    }
}



.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
    .nav-logo img {
        width: 32px;
        height: 32px;
    }
}
/* Fix logo alignment */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
    .footer-logo img {
        width: 32px;
        height: 32px;
    }
}


/* Buttons */
.btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 14px var(--space-lg);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.25s ease;
    height: 56px;
    min-width: 160px;
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-button);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px var(--space-lg);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.25s ease;
    height: 56px;
    min-width: 140px;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

/* Hero Section */

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}
@media (min-width:1200px){
    .hero{
        height: 70vh;
    }
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 93, 26, 0.4) 0%,
        rgba(45, 80, 22, 0.6) 50%,
        rgba(26, 93, 26, 0.4) 100%
    );
    z-index: 2;
}

.hero-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 3;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237FB069' fill-opacity='0.08'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 4;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 5;
    max-width: 800px;
    padding: 0 var(--space-md);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 56px;
    color: white;
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions - CTA Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-button);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-button);
}

.hero-cta-btn i {
    font-size: 18px;
}

.hero-cta-btn.primary {
    background: var(--primary-green);
    color: white;
}

.hero-cta-btn.primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.hero-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-btn.secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta-btn.tertiary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.highlight-item {
    text-align: center;
    color: white;
}

.highlight-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-actions {
    animation-delay: 0.3s;
}

.hero-highlights {
    animation-delay: 0.4s;
}

@media (max-width: 767px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: var(--space-xs);
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: var(--space-lg);
    }
    
    .hero-search {
        height: 56px;
        margin-bottom: var(--space-lg);
    }
    
    .service-filters {
        gap: 8px;
    }
    
    .hero-cta-btn {
        min-width: 140px;
        padding: var(--space-sm) var(--space-md);
        font-size: 14px;
    }
    
    .hero-cta-btn i {
        font-size: 16px;
    }
    
    .highlight-number {
        font-size: 28px;
    }
    
    .highlight-label {
        font-size: 12px;
    }
    
    .hero-blur {
        backdrop-filter: blur(2px);
    }
    
    /* Mobile-specific adjustments */
    .hero-content {
        padding: 0 var(--space-sm);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-cta-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-highlights {
        gap: var(--space-lg);
        margin-top: var(--space-lg);
    }
}
@media (min-width: 1400px) {
    .hero {
        height: 560px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

/* Sections */
section {
    padding: var(--space-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--card-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
}

.service-title {
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.service-description {
    color: var(--secondary-text);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.discount-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--accent-green);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Packages Section */
.packages {
    padding: var(--space-xxl) 0;
    background: var(--section-bg-alt);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-drop);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.package-card.premium {
    border: 2px solid var(--accent-green);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 6px var(--space-md);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header {
    margin-bottom: var(--space-lg);
}

.package-name {
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
    font-size: 22px;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

.package-description {
    color: var(--secondary-text);
    font-size: 15px;
    line-height: 1.5;
}

.package-features {
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    text-align: left;
    font-size: 14px;
}

.feature span {
    flex: 1;
}

.package-card .btn-primary {
    margin-top: auto;
}


/* Workwear Section */
.workwear {
    background: var(--card-bg);
}

.workwear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xxxl);
}

.workwear-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
}

.workwear-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-drop);
}

.workwear-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    border-radius: var(--radius-input);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-input);
}

.workwear-title {
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
}

.workwear-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

.workwear-description {
    color: var(--secondary-text);
    font-size: 14px;
}

.workwear-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.workwear-package-card {
    background: var(--section-bg-alt);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    text-align: center;
}

.workwear-package-title {
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
}

.workwear-package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

/* Testimonials Section */
.testimonials {
    background: var(--section-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-drop);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    margin: 0 auto var(--space-md);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-md);
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-text);
    margin-bottom: var(--space-md);
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-text);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--secondary-text);
    font-size: 14px;
}

/* Founder Section */
/* Enhanced Founder Section */
.founder {
    padding: var(--space-xxl) 0;
    background: var(--card-bg);
    position: relative;
}

.founder-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
    align-items: stretch; /* This makes both columns stretch to same height */
    margin-bottom: var(--space-xxl);
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Make image container stretch to full height */
    height: 100%;
}

.founder-photo {
    width: 280px;
    height: 100%; /* Take full height of parent container */
    min-height: 400px; /* Minimum height for desktop */
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    border: 4px solid white;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on the top of the image for better cropping */
}

.founder-info {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space between header and quote */
    height: 100%;
    min-height: 400px; /* Match the minimum height of the photo */
}

.founder-header {
    margin-bottom: var(--space-xl);
}

.founder-title {
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
    font-size: 24px;
    position: relative;
    padding-bottom: var(--space-sm);
}

.founder-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--secondary-green));
    border-radius: 2px;
}

.founder-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: var(--space-xs);
}

.founder-role {
    font-size: 16px;
    color: var(--secondary-green);
    font-weight: 600;
    background: rgba(122, 176, 105, 0.1);
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-button);
}

/* Founder Quote - Now inside founder-info */
.founder-quote {
    background: var(--hero-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-card);
    border-left: 4px solid var(--accent-green);
    position: relative;
    box-shadow: var(--shadow-drop);
    margin-top: auto; /* Push to bottom of flex container */
}

.quote-mark {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    opacity: 0.3;
}

.quote-mark i {
    font-size: 24px;
    color: var(--secondary-green);
}

.founder-quote blockquote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary-text);
    font-style: italic;
    margin: 0 0 var(--space-md) 0;
    padding-right: var(--space-xl);
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quote-attribution strong {
    color: var(--primary-green);
    font-size: 16px;
}

.quote-attribution span {
    color: var(--secondary-text);
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-us {
    margin-bottom: 0;
    padding: var(--space-xl) 0;
    background: var(--section-bg-alt);
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--secondary-green));
}

.why-choose-us .section-header {
    margin-bottom: var(--space-xl);
}

.why-choose-us .section-title {
    color: var(--primary-green);
}

.why-choose-us .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-drop);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(122, 176, 105, 0.3);
}

.benefit-title {
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
    font-size: 20px;
    font-weight: 600;
}

.benefit-description {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile adjustments for founder section */
@media (max-width: 767px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    .founder-photo {
        width: 280px;
        height: 350px; /* Fixed height for mobile */
        margin: 0 auto;
    }
    
    .founder-info {
        min-height: auto; /* Remove min-height on mobile */
        justify-content: flex-start; /* Reset justify-content */
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-header {
        margin-bottom: var(--space-lg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .benefit-card {
        padding: var(--space-lg);
    }
    
    .founder-quote {
        padding: var(--space-lg);
        margin-top: var(--space-md);
    }
    
    .founder-quote blockquote {
        font-size: 16px;
        padding-right: 0;
    }
    
    .why-choose-us {
        padding: var(--space-lg) 0;
    }
}

/* Animation for benefit cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Contact Section */
.contact {
    padding: var(--space-xxl) 0;
    background: var(--hero-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--card-bg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-drop);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(74, 124, 40, 0.1);
    border-radius: 50%;
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--primary-text);
    margin-bottom: 4px;
    font-size: 16px;
}

.contact-text p {
    color: var(--secondary-text);
    margin: 0;
    font-size: 15px;
}

.contact-text a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-green);
}

.discount-info {
    background: var(--card-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-drop);
}

.discount-info h4 {
    color: var(--primary-green);
    margin-bottom: var(--space-md);
    font-size: 18px;
}

.discount-info ul {
    list-style: none;
}

.discount-info li {
    color: var(--secondary-text);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.discount-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.contact-form {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--primary-text);
    font-size: 15px;
}

@media (max-width: 767px) {
    .contact-form {
        padding: var(--space-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: var(--space-md);
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px var(--space-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-input);
    font-size: 15px;
    transition: all 0.3s ease;
    height: 48px;
    font-family: inherit;
}

.form-group textarea {
    height: auto;
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 40, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: var(--space-sm);
}

@media (min-width: 768px) {
     .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: var(--space-xxxl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxxl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-line-1 {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-brand-line-2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-green);
    margin-top: -2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.footer-column h4 {
    margin-bottom: var(--space-md);
    color: white;
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.premium {
        transform: none;
    }
    
    .workwear-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    section {
        padding: var(--space-xxl) 0;
    }
}

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

.service-card,
.package-card,
.workwear-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed navigation */
html {
    scroll-padding-top: 72px;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Loading and hover states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.hover-lift:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Print styles */
@media print {
    .navbar,
    .hero-search,
    .service-filters,
    .contact-form {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Products Page Styles */
.products-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
    background: var(--hero-bg);
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}

.category-btn {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: var(--space-xs) var(--space-md);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-green);
    color: white;
}

.products-section {
    padding: var(--space-section) 0;
}

.products-section:nth-child(even) {
    background: var(--section-bg-alt);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-drop);
}

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

.product-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: var(--space-lg);
}

.product-title {
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
    font-size: 18px;
}

.product-description {
    color: var(--secondary-text);
    margin-bottom: var(--space-md);
    font-size: 14px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.size-selector {
    background: var(--section-bg-alt);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-input);
    margin-bottom: var(--space-md);
    font-size: 12px;
    color: var(--secondary-text);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
    flex: 1;
    min-width: 120px;
    height: 48px;
    font-size: 14px;
    padding: 12px var(--space-sm);
}

/* Workwear Specific Styles */
.workwear-categories,
.workwear-packages-section {
    margin-bottom: var(--space-section);
}

.category-title {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Special Offers */
.special-offers {
    background: var(--card-bg);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.offer-card {
    background: var(--section-bg-alt);
    border-radius: var(--radius-card);
    padding: var(--space-xxl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-drop);
}

.offer-icon {
    margin-bottom: var(--space-md);
}

.offer-title {
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
}

.offer-description {
    color: var(--secondary-text);
    margin-bottom: var(--space-sm);
}

.offer-conditions {
    color: var(--secondary-text);
    font-style: italic;
}

/* Contact CTA */
.contact-cta {
    background: var(--hero-bg);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.cta-item {
    background: var(--card-bg);
    padding: var(--space-md);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-drop);
}

.cta-item strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: var(--space-xs);
}

/* Product filtering */
.product-card.hidden {
    display: none;
}

.category-btn[aria-pressed="true"] {
    background: var(--primary-green);
    color: white;
}

/* Responsive adjustments for products */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn-primary,
    .product-actions .btn-secondary {
        width: 100%;
    }
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.nav-cta {
    display: none;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-mobile span {
    width: 25px;
    height: 3px;
    background: white; /* White initially for better contrast */
    border-radius: 2px;
    transition: all 0.3s ease;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* Ensure content starts below the fixed navbar */
body {
    padding-top: 72px; /* This matches the navbar height */
}

/* Remove any existing margin-top from hero section */
.hero {
    margin-top: 0; /* Remove the existing margin-top */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-line-1 {
    font-size: 18px;
    font-weight: 700;
    color: #2D5016;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.brand-line-2 {
    font-size: 18px;
    font-weight: 700;
    color: #2D5016;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: -2px;
    transition: color 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    display: none; /* Hidden by default, shown on desktop */
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: #2D5016;
    font-weight: 500;
    padding: 10px var(--space-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: #2D5016;
    background: rgba(255, 255, 255, 0.2); /* Light white background on hover */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2D5016; /* White underline initially */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* CTA Button */
.nav-cta {
    display: none;
}

.nav-cta .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.nav-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu Toggle - HIDDEN ON DESKTOP */
.nav-mobile {
    display: none; /* Hidden by default, shown on mobile only */
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-mobile span {
    width: 25px;
    height: 3px;
    color: black;
    background: black; /* White initially for better contrast */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-cta {
        display: block;
    }
    
    .nav-mobile {
        display: none; /* Hide hamburger menu on desktop */
    }
    
    .nav-menu.active {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
    .nav-logo img {
        width: 32px;
        height: 32px;
    }
    
    .nav-mobile {
        display: flex; /* Show hamburger menu on mobile */
    }
    .nav-mobile span{
        color: black;
    }
    .nav-menu {
        display: none !important; /* Hide navigation menu on mobile */
    }
    
    /* Mobile menu overlay styles */
    .nav-menu.active {
        display: flex !important; /* Show when active */
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 var(--radius-card) var(--radius-card);
        z-index: 999;
        gap: var(--space-md);
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-menu.active .nav-link {
        color: var(--primary-green);
        padding: var(--space-md);
        text-align: center;
        font-size: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        background: rgba(74, 124, 40, 0.1);
        color: var(--primary-green);
        border-radius: var(--radius-input);
    }
}

/* Mobile menu animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced mobile navigation fixes */
@media (max-width: 767px) {
    /* Fix mobile hero height and spacing */
    .hero {
        height: 400px !important; /* Force correct height on mobile */
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
        margin: 50px 0 0 0;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
    }
    
    /* Ensure proper container padding on mobile */
    .container {
        padding: 0 var(--space-sm) !important;
    }
    
    /* Fix navigation bar on mobile */
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    /* Ensure navbar height is correct on mobile */
    .navbar {
        height: 64px !important;
    }
    
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Ensure proper touch targets on mobile */
    .nav-mobile {
        min-height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    
    /* Fix button sizes on mobile */
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        font-size: 14px;
        padding: 10px var(--space-md);
    }
}

/* Additional mobile improvements */
@media (max-width: 480px) {
    .hero {
        height: 350px !important;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
}

/* Navbar scroll effect - add background when scrolled */
.navbar.scrolled {
    /*background: rgba(255, 255, 255, 0.95);*/
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
}

/* Mobile navbar adjustments */
@media (max-width: 767px) {
    .navbar {
        height: 64px; /* Slightly smaller on mobile */
    }
    
    .hero {
        margin-top: 14px; /* Adjust hero margin for smaller navbar */
    }
    
    .nav-mobile span {
        width: 24px;
        height: 2px;
    }
}

.navbar.scrolled .nav-link {
    color: #2D5016; /* Original green color when scrolled */
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-green);
    background: rgba(74, 124, 40, 0.1);
    text-shadow: none;
}

.navbar.scrolled .nav-link::after {
    background: var(--primary-green); /* Green underline when scrolled */
}

.navbar.scrolled .brand-line-1,
.navbar.scrolled .brand-line-2 {
    color: var(--primary-green); /* Original colors when scrolled */
    text-shadow: none;
}

.navbar.scrolled .nav-mobile span {
    background: var(--primary-text); /* Dark color when scrolled */
}

.navbar.scrolled .nav-cta .btn-primary {
    background: var(--primary-green);
    border: none;
    color: white;
}

.navbar.scrolled .nav-cta .btn-primary:hover {
    background: var(--secondary-green);
}

.navbar.scrolled .nav-link::after {
    background: var(--primary-green); /* Green underline when scrolled */
}

/* Container for consistent screen edge spacing */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Enhanced Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: var(--space-xxl) 0 var(--space-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.footer-column h4 {
    margin-bottom: var(--space-sm);
    color: white;
    font-size: 14px;
}

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

.footer-column li {
    margin-bottom: var(--space-xs);
    font-size: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}
.footer-bottom a{
    text-decoration: none;
            color: white;
            font-weight: bold;
}
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
}

/* Products Preview Section */
.products-preview {
    padding: var(--space-section) 0;
    background: var(--section-bg-alt);
}

.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-preview-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 15px 40px rgba(26, 93, 26, 0.25);
}

.product-preview-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    margin-bottom: var(--space-md);
}

.product-preview-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
}

.seeds-icon {
    background: linear-gradient(135deg, #4CAF50, #2E8B57);
}

.fertilizers-icon {
    background: linear-gradient(135deg, #8B6F47, #A67B5B);
}

.equipment-icon {
    background: linear-gradient(135deg, #3F51B5, #2196F3);
}

.workwear-icon {
    background: linear-gradient(135deg, #FF6B35, #FF9800);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 4px var(--space-sm);
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-title {
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
    font-size: 18px;
    font-weight: 700;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-price::before {
    content: 'R';
    font-size: 16px;
}

.product-description {
    color: var(--secondary-text);
    margin-bottom: var(--space-md);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-tag {
    background: var(--accent-green);
    color: white;
    padding: 4px var(--space-sm);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.view-all-products {
    text-align: center;
}

.view-all-description {
    color: var(--secondary-text);
    margin-top: var(--space-md);
    font-size: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-section) 0;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: white;
    margin-bottom: var(--space-md);
    font-size: 36px;
    font-weight: 700;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--primary-green);
}

.cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-actions .btn-secondary {
    border-color: white;
    color: white;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.cta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-card);
    backdrop-filter: blur(10px);
}

.cta-item strong {
    color: white;
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 14px;
}

.cta-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px var(--space-lg);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
    min-width: 140px;
    box-shadow: var(--shadow-button);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(26, 93, 26, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px var(--space-lg);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 44px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-green);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
}

/* Products Modal */
.products-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.products-modal {
    background: white;
    border-radius: var(--radius-large);
    max-width: 90%;
    width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s ease;
    position: relative;
}

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

.products-modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.products-modal-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.products-modal-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--secondary-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.products-modal-content {
    padding: var(--space-lg);
}

.products-modal-section {
    margin-bottom: var(--space-xl);
}

.products-modal-section:last-child {
    margin-bottom: 0;
}

.products-modal-section-title {
    color: var(--primary-green);
    margin-bottom: var(--space-md);
    font-size: 20px;
    font-weight: 700;
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--accent-green);
}

.products-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

@media (max-width: 767px) {
    .products-modal {
        width: 95%;
    }
    
    .products-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .products-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand-line-1,
    .footer-brand-line-2 {
        font-size: 16px;
    }
    
}

/* Cart Button in Navigation */
.cart-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: var(--space-sm);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: var(--space-md);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

.cart-btn i {
    font-size: 16px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
}

.cart-count:empty {
    display: none;
}

/* Mobile navigation cart button */
@media (max-width: 767px) {
    .cart-btn {
        margin: var(--space-sm) 0;
        align-self: center;
    }
}

/* Quote & Cart Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

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

.modal {
    background: white;
    border-radius: var(--radius-large);
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.9);
    transition: all 0.4s ease;
    position: relative;
}

.cart-modal {
    width: 800px;
}

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

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.modal-title {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--secondary-text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-content {
    padding: var(--space-lg);
}

.modal-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.modal-actions .btn-secondary,
.modal-actions .btn-primary {
    min-width: 120px;
}

/* Cart Styles */
.cart-items {
    margin-bottom: var(--space-lg);
}

.empty-cart {
    text-align: center;
    padding: var(--space-xl);
    color: var(--secondary-text);
}

.empty-cart i {
    font-size: 48px;
    margin-bottom: var(--space-md);
    color: var(--border-light);
}

.empty-cart .cart-subtitle {
    font-size: 14px;
    margin-top: var(--space-xs);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    margin-bottom: var(--space-sm);
    background: var(--page-bg);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: var(--space-xs);
}

.cart-item-category {
    font-size: 12px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-green);
    margin: 0 var(--space-md);
    font-size: 18px;
}

.cart-item-remove {
    background: #ef4444;
    color: white;
    border: none;
    padding: var(--space-xs);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.cart-summary {
    background: var(--section-bg-alt);
    padding: var(--space-md);
    border-radius: var(--radius-card);
    margin-bottom: var(--space-lg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.cart-total:last-child {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--primary-green);
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-xs);
    margin-top: var(--space-xs);
}

.customer-details h3 {
    color: var(--primary-green);
    margin-bottom: var(--space-md);
    font-size: 18px;
}

/* Form Styles for Modals */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--primary-text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-card);
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 40, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .cart-modal {
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn-secondary,
    .modal-actions .btn-primary {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .modal-actions .btn-secondary:last-child,
    .modal-actions .btn-primary:last-child {
        margin-bottom: 0;
    }
}