/* CSS Variables */
:root {
    --primary-color: #2E7D32;
    --primary-dark: #1e6121;
    --primary-light: #3b9e40;
    --secondary-color: #F57C00;
    --secondary-dark: #EF6C00;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    padding-top: 70px; /* Account for fixed navbar */
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
    color: white;
    text-decoration: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header Styles */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    min-height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.btn-find-food {
    background: var(--secondary-color);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.7rem 0.85rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-find-food:hover,
.btn-find-food:focus {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 50%, #e0f2fe 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f3f4f6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Search Form */
.search-form {
    position: relative;
    z-index: 2;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
}

.search-input {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: white;
    color: var(--text-dark);
    min-height: 56px;
}

.search-input:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.btn-location {
    background: var(--bg-light);
    border: none;
    color: var(--text-light);
    padding: 0 1rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-color);
}

.btn-location:hover,
.btn-location:focus {
    background: var(--border-light);
    color: var(--primary-color);
}

.btn-search {
    background: var(--secondary-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-search:hover,
.btn-search:focus {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

/* Trust Signals */
.trust-signals {
    position: relative;
    z-index: 2;
}

.trust-signals .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}


/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.step-icon:hover {
    background: var(--secondary-color);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* Resources Section */
.resources {
    background: white;
}

.resource-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-dark);
    transform: scaleX(0);
    transition: var(--transition);
}

.resource-card:hover,
.resource-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}


.resource-icon i {
    font-size: 1.5rem;
    color: white;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.resource-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.resource-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.resource-link i {
    transition: var(--transition);
}

.resource-link:hover i {
    transform: translateX(5px);
}

/* CTA Strip */
.cta-strip {
    background: var(--primary-color);
    color: white;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.btn-cta {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover,
.btn-cta:focus {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* SEO Info Section */
.seo-info {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.seo-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.seo-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus {
    color: white;
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-tagline a {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-tagline a:hover,
.footer-tagline a:focus {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        min-height: 60px;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .btn-search {
        padding: 0.875rem 1.5rem;
    }
    
    .btn-location {
        padding: 0 0.75rem;
    }
    
    .filter-chips {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .chip {
        flex-shrink: 0;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .resource-card {
        padding: 1.5rem;
    }
    
    .cta-strip .row {
        text-align: center;
    }
    
    .cta-strip .col-lg-4 {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .trust-signals {
        padding: 0 1rem;
    }
    
    .trust-signals .badge {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .resource-card {
        padding: 1rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-light: #000000;
        --bg-light: #ffffff;
    }
    
    .chip {
        border-width: 2px;
    }
    
    .resource-card {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .skip-link:focus {
        transition: none;
    }
}

/* Focus Styles for Keyboard Navigation */
.btn:focus,
button:focus,
.nav-link:focus,
.chip:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.search-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        padding: 1rem 0 !important;
    }
    
    .hero::before {
        display: none !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}


/* Popular Localities Section */
.popular-localities {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%23333"/><circle cx="200" cy="150" r="80" fill="%23ff6b35" opacity="0.3"/><circle cx="400" cy="200" r="60" fill="%23f7931e" opacity="0.4"/><circle cx="800" cy="180" r="70" fill="%23ffb700" opacity="0.3"/><rect x="100" y="300" width="200" height="120" rx="15" fill="%238b4513" opacity="0.4"/><rect x="500" y="350" width="180" height="100" rx="10" fill="%23228b22" opacity="0.3"/><rect x="900" y="320" width="160" height="140" rx="12" fill="%23dc143c" opacity="0.3"/></svg>') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.popular-localities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="food-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.03)"/><rect x="8" y="12" width="4" height="2" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23food-pattern)"/></svg>');
    opacity: 0.1;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
}



.section-title {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.localities-grid {
    position: relative;
    z-index: 2;
}

.locality-column {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.locality-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.locality-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.locality-item:last-child {
    border-bottom: none;
}

.locality-item:hover {
    background: rgba(37, 99, 235, 0.05);
    padding-left: 0.5rem;
    border-radius: 4px;
}

.locality-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.locality-icon {
    color: #1e6121;
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.locality-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.locality-name:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.locality-count {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .popular-localities {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .locality-column {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .popular-localities {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .locality-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .locality-count {
        margin-left: 1.5rem;
        align-self: flex-end;
    }
}


/* Find Food Resources Section */
.find-food-resources {
    background: var(--bg-white);
    padding: 5rem 0;
    position: relative;
}

.section-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.resource-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.resource-option:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: inherit;
    text-decoration: none;
}

.resource-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.resource-icon-circle:hover {
    background: var(--primary-color);
}

.resource-icon-circle i {
    font-size: 1.8rem;
    color: white;
}

.resource-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

.resource-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.find-food {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.find-food:hover {
    transform: scale(1.01);
    transform: rotateX(10deg);
    box-shadow: var(--shadow-lg);
}



/* Responsive Design */
@media (max-width: 768px) {
    .find-food-resources {
        padding: 3rem 0;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .resource-option {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .resource-icon-circle {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }
    
    .resource-icon-circle i {
        font-size: 1.5rem;
    }
    
    .resource-content h3 {
        font-size: 1.2rem;
    }
       
}


/* Blog Section Styles */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23f3f4f6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-grid)"/></svg>');
    opacity: 0.3;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Article */
.featured-article {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.featured-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

.featured-badge .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.featured-content {
    padding: 2.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.featured-title a:hover {
    color: var(--primary-color);
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-stats i {
    font-size: 0.8rem;
}

/* Blog Filters */
.blog-filters {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.chip {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.chip:hover,
.chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Blog Grid */
.blog-grid {
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-date {
    font-weight: 500;
}

.blog-author {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-stats i {
    font-size: 0.8rem;
}

.read-time i {
    color: var(--accent-color);
}

.blog-likes i {
    color: var(--danger-color);
}

.views i {
    color: var(--primary-color);
}

/* Load More Button */
.btn-load-more {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-load-more:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-load-more i {
    transition: var(--transition);
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    z-index: 2;
    margin-top: 5rem;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .input-group {
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: white;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    background: var(--secondary-color);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: var(--secondary-dark);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-header {
        margin-bottom: 3rem;
    }
    
    .featured-article {
        margin-bottom: 3rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .article-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-chips {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .chip {
        flex-shrink: 0;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .newsletter-section .row {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .featured-content {
        padding: 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .newsletter-form .form-control {
        padding: 0.875rem 1rem;
    }
    
    .btn-newsletter {
        padding: 0.875rem 1rem;
    }
}


.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.faq-answer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Category Tabs */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-tab {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Search Box */
.faq-search {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contact CTA */
.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-contact {
    background: var(--secondary-color);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-contact:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .search-icon {
        left: 0.875rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-categories {
        gap: 0.25rem;
    }
    
    .category-tab {
        flex: 1;
        text-align: center;
        min-width: 80px;
    }
}


/*--------------------------------------------------------------
# Contact Page Specific Styles
--------------------------------------------------------------*/

/* Contact Section General Styling */
.contact-section {
    background-color: var(--bg-white);
}

.contact-form-wrapper, .contact-details-wrapper {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .contact-form-wrapper, .contact-details-wrapper {
        padding: 1.5rem;
    }
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Details Styles */
.contact-intro-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info-list div {
    display: flex;
    flex-direction: column;
}

.contact-info-list strong {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-info-list span, .contact-info-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Social Icons */
.social-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-icon:hover, .social-icon:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


.sign-up {
    font-weight: 500;
    color: #222;
    text-decoration: none;
    padding-right: 15px;
}
.sign-up:hover {
    color: #1e6121;
    text-decoration: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

.btn-location:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
