/* ============================================
   HERMANSEN'S MILL - REDESIGNED STYLES
   Modern Agricultural Design System
   ============================================ */

:root {
    /* Color Palette */
    --forest-green: #2d5016;
    --harvest-gold: #d4a574;
    --earth-brown: #6b4423;
    --sky-blue: #4a90a4;
    --cream: #f5f1e8;
    --sage: #8b9d83;
    --rust: #b85c38;
    --charcoal: #2c2c2c;
    --light-gray: #e8e8e8;
    --white: #ffffff;
    
    /* Semantic Colors */
    --primary: var(--forest-green);
    --secondary: var(--earth-brown);
    --accent: var(--harvest-gold);
    --cta: var(--rust);
    --text-primary: var(--charcoal);
    --text-secondary: var(--earth-brown);
    --text-light: #666;
    --background: var(--cream);
    --surface: var(--white);
    
    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Bebas Neue', Impact, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Design Tokens */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    --max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-padding-top: calc(var(--header-height) + 2rem);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--earth-brown) 100%);
    color: var(--white);
    padding: var(--space-lg) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-xl);
}

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

.logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 3px solid var(--harvest-gold);
    object-fit: cover;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-container h1 {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--harvest-gold);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--harvest-gold);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-toggle-label {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    background-image: linear-gradient(rgba(45, 80, 22, 0.7), rgba(107, 68, 35, 0.8)), 
                      url('source_images/history/original_mill.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.hero p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    color: var(--cream);
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--cta);
    color: var(--white);
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Scroll Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Only hide elements that will animate on scroll - not trust items on first load */
.product-category:not(.fade-in-up),
.contact-card:not(.fade-in-up),
.history-text:not(.fade-in-up) {
    opacity: 0;
}

/* Trust items should be visible immediately but can still animate */
.trust-item {
    opacity: 1;
}

/* Trust Indicators Section */
.trust-indicators {
    background: linear-gradient(135deg, var(--primary) 0%, var(--earth-brown) 100%);
    padding: var(--space-4xl) var(--space-xl);
    margin: 0;
}

.trust-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-lg);
}

.trust-item {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--harvest-gold);
    margin-bottom: var(--space-md);
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-accent);
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.trust-label {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Sections */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-container h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-4xl);
    position: relative;
    padding-bottom: var(--space-lg);
}

.section-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--harvest-gold), transparent);
    border-radius: var(--radius-full);
}

.about-section {
    background: var(--white);
    padding: var(--space-4xl) var(--space-xl);
}

.history-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-text p {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* History Gallery */
.history-gallery {
    overflow-x: auto;
    margin-bottom: var(--space-3xl);
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--harvest-gold) transparent;
    padding: var(--space-md) 0;
}

.history-images {
    display: flex;
    gap: var(--space-xl);
    padding-bottom: var(--space-md);
}

.history-images img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 4px solid var(--white);
}

.history-images img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--harvest-gold);
}

.history-gallery::-webkit-scrollbar {
    height: 8px;
}

.history-gallery::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--radius-full);
}

.history-gallery::-webkit-scrollbar-thumb {
    background: var(--harvest-gold);
    border-radius: var(--radius-full);
}
/* History Section Enhancements */
.history-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.history-lead {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
}

.history-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.history-text {
    padding: var(--space-2xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--harvest-gold);
}

.history-text h3 {
    color: var(--primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.history-text h3 i {
    color: var(--rust);
}

.history-text p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-light);
}


/* Products */
.products-preview {
    background: var(--cream);
    padding: var(--space-4xl) var(--space-xl);
}

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

.product-category {
    background: var(--white);
    color: var(--text-primary);
    padding: var(--space-2xl);
    text-align: center;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--harvest-gold));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.product-category:hover::before {
    transform: scaleX(1);
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--harvest-gold);
}

.product-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.product-category:hover .product-icon {
    color: var(--rust);
    transform: scale(1.1);
}

.product-category-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--earth-brown) 100%);
    padding: var(--space-4xl) var(--space-xl);
/* Contact Section Enhancements */
.contact-intro {
    text-align: center;
    font-size: var(--text-xl);
    color: var(--cream);
    margin-bottom: var(--space-3xl);
    font-weight: 300;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-align: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--primary), var(--sage));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-2xl);
}

.contact-card h3 {
    color: var(--primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--harvest-gold);
    padding-bottom: var(--space-sm);
}

.contact-card p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--sky-blue);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact-map {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.map-placeholder p {
    font-size: var(--text-2xl);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.map-placeholder small {
    color: var(--text-light);
    font-size: var(--text-lg);
}

    color: var(--white);
}

.contact-section h2 {
    color: var(--white);
}

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

.contact-details > div {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.contact-details > div:hover {
    transform: translateY(-5px);
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: var(--space-lg);
    border-bottom: 2px solid var(--harvest-gold);
    padding-bottom: var(--space-sm);
}

.contact-details p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-3xl) var(--space-xl);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.footer-content .contact-info h3 {
    color: var(--harvest-gold);
}

.social-links {
    display: flex;
    gap: var(--space-lg);
}

.social-icon {
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--harvest-gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    width: 100%;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: var(--radius-lg);
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: var(--rust);
    transform: rotate(90deg);
}

.modal-caption {
    margin: var(--space-xl) auto;
    display: block;
    max-width: 700px;
    text-align: center;
    color: var(--cream);
}

/* Product Pages */
.product-category-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.product-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
}

.product-header h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
}

.product-header p {
    font-size: var(--text-xl);
    color: var(--text-secondary);
}

.seed-products,
.fertilizer-products,
.animal-health-products,
.animal-feed-products,
.chemical-sprays-products,
.twine-products,
.lawn-garden-products,
.fencing-products,
.satellite-imagery-services {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
}

.seed-category,
.fertilizer-section {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 2px solid var(--light-gray);
}

.seed-category:last-child,
.fertilizer-section:last-child {
    border-bottom: none;
}

.seed-category h2,
.fertilizer-section h2 {
    color: var(--primary);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 3px solid var(--harvest-gold);
}

.seed-subcategory,
.fertilizer-subsection,
.product-subcategory {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
}

.seed-subcategory h3,
.fertilizer-subsection h3,
.product-subcategory h3 {
    color: var(--earth-brown);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        position: relative;
        top: 0;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
}

.seed-subcategory ul,
.fertilizer-subsection ul,
.product-subcategory ul {
    list-style-type: none;
}

.seed-subcategory ul li,
.fertilizer-subsection ul li,
.product-subcategory ul li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
}

.seed-subcategory ul li::before,
.fertilizer-subsection ul li::before,
.product-subcategory ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.product-subcategory > ul > li > ul {
    margin-top: var(--space-sm);
    margin-left: var(--space-lg);
}

.product-description {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--sage) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.product-description p {
    color: var(--white);
    font-size: var(--text-lg);
}

.fertilizer-images {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.fertilizer-images img {
    flex: 1;
    max-width: 800px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.fertilizer-images img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media screen and (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }
    
    .nav-toggle-label {
        display: block;
        position: absolute;
        top: var(--space-lg);
        right: var(--space-xl);
        cursor: pointer;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--white);
        height: 3px;
        width: 28px;
        border-radius: var(--radius-full);
        position: relative;
        transition: all var(--transition-base);
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }
    
    .hero {
        padding: var(--space-3xl) var(--space-lg);
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fertilizer-images {
        flex-direction: column;
    }
    
    .history-images img {
        width: 220px;
        height: 220px;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: 0;
    }

    .trust-item {
        padding: var(--space-xl);
    }

    .trust-icon {
        font-size: 3rem;
    }

    .trust-number {
        font-size: 3.5rem;
    }

    .trust-label {
        font-size: var(--text-lg);
    }
}
