/* ================================================
   Our Family Farm Ltd. - Custom Styles
   Modern Agricultural Services Website
   ================================================ */

/* ============================================
   1. ROOT VARIABLES & GLOBAL STYLES
   ============================================ */

:root {
    /* Color Palette - Nature Inspired */
    --primary-green: #2d6a4f;
    --primary-green-dark: #1b4332;
    --primary-green-light: #52b788;
    --accent-gold: #d4a373;
    --earth-brown: #8b4513;
    --sky-blue: #4a90e2;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-green-dark);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

.text-justify {
    text-align: justify;
}

/* ============================================
   2. NAVIGATION
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-green-dark);
    font-size: 1.25rem;
}

.brand-text {
    font-family: var(--font-display);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   3. HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(29, 67, 50, 0.9), rgba(45, 106, 79, 0.85)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(82, 183, 136, 0.2), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   4. SECTIONS
   ============================================ */

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 60px 0;
}

.value-proposition .section-title {
    color: var(--white);
}

.value-proposition .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   5. SERVICE CARDS
   ============================================ */

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(45, 106, 79, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--primary-green-dark);
    gap: 12px;
}

/* ============================================
   6. IMPACT SECTION
   ============================================ */

.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.impact-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.impact-description {
    font-size: 1.2rem;
    color: var(--primary-green-dark);
    font-weight: 500;
}

/* ============================================
   7. FEATURE CARDS
   ============================================ */

.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-card:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), #c4956f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green-dark);
}

.feature-card p {
    color: var(--medium-gray);
    margin: 0;
}

/* ============================================
   8. CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   9. FOOTER
   ============================================ */

.footer {
    background: var(--primary-green-dark);
    color: var(--white);
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-green-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-green-light);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-green-light);
    transform: translateY(-3px);
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
}

.footer-link:hover {
    color: var(--white);
}

/* ============================================
   10. BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* ============================================
   11. PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.95), rgba(27, 67, 50, 0.95)),
                url('../images/page-header-bg.jpg') center/cover;
    padding: 150px 0 100px;
    margin-top: 72px;
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   12. ABOUT PAGE STYLES
   ============================================ */

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-green);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.mvv-text {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border-left: 4px solid var(--primary-green-light);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-green);
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green-dark);
}

.value-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--light-gray);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: var(--transition-smooth);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.team-social a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem 1.5rem;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary-green-dark);
}

.team-position {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-bio {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Impact Stats */
.impact-stat-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.impact-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.impact-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

/* ============================================
   13. SERVICES PAGE STYLES
   ============================================ */

.service-detail {
    padding: 80px 0;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-detail-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green-dark);
}

.service-detail-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail-list li:last-child {
    border-bottom: none;
}

.service-detail-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Process Steps */
.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
}

.process-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green-dark);
}

.process-description {
    color: var(--medium-gray);
    margin: 0;
}

/* ============================================
   14. PROJECTS PAGE STYLES
   ============================================ */

.filter-buttons .btn {
    margin: 0.3rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 106, 79, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-category {
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.project-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green-light);
}

.testimonial-name {
    margin: 0;
    color: var(--primary-green-dark);
    font-weight: 600;
}

.testimonial-position {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ============================================
   15. BLOG PAGE STYLES
   ============================================ */

.featured-post {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.featured-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.meta-item {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary-green);
}

.category-buttons .btn {
    margin: 0.3rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title a {
    font-size: 1.3rem;
    color: var(--primary-green-dark);
    display: block;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.blog-title a:hover {
    color: var(--primary-green);
}

.blog-excerpt {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.blog-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: var(--primary-green-dark);
    gap: 12px;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.newsletter-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid var(--primary-green-light);
    padding: 0.8rem 1.5rem;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.8rem 2rem;
}

/* ============================================
   16. CONTACT PAGE STYLES
   ============================================ */

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-green);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

.contact-info-text {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-green-light);
    box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15);
}

/* Business Hours */
.business-hours-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.business-hours-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.business-hours-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green-dark);
}

.hours-list {
    max-width: 400px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-time {
    color: var(--primary-green);
    font-weight: 600;
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--primary-green-dark);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green-light);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green-light);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   17. RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .featured-post {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
}

.text-primary-green {
    color: var(--primary-green);
}

.border-primary-green {
    border-color: var(--primary-green) !important;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    .cta-section {
        display: none;
    }
}
