/* Clean Agricultural Website - Green Valley Grain */
/* Inspired by modern clean farm websites */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Agdasima', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #222222;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* Import Agdasima and Inter Fonts */
@import url('https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--grid-gap, 20px);
}

/* CSS Variables */
:root {
    --primary-color: #2d5016;
    --primary-light: #4a7c2a;
    --secondary-color: #6b8e3d;
    --accent-color: #8fbc8f;
    --text-dark: #222222;
    --text-light: #666;
    --text-white: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.3);
    --grid-base: 350px;
    --grid-gap: 20px;
    --header-height: 80px; /* Fixed header height for calculations */
}

/* Header - Clean Static Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2d5a27;
    font-weight: 700;
    font-size: 24px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d5a27;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-button span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Large Clean Image */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('Pics/pexels-seyiram-3635143.jpg') center/cover;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Image Performance Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    loading: lazy;
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
    loading: lazy;
}

/* Clean Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2d5a27;
    color: white;
}

.btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #2d5a27;
    border: 2px solid white;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: #2d5a27;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Button Group Spacing */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button-group .btn {
    flex-shrink: 0;
}

/* Team Image - Smaller to show all edges */
.team-image {
    object-fit: contain !important;
    background: #f8f9fa !important;
    padding: 20px;
}

/* Page Hero */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('Pics/pexels-messina-14436364.jpg') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Clean Cards */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(var(--grid-base), 1fr));
    gap: var(--grid-gap);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(calc(var(--grid-base) * 0.85), 1fr));
    gap: var(--grid-gap);
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.card-content {
    padding: 40px;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(var(--grid-base) * 0.85), 1fr));
    gap: var(--grid-gap);
    margin: 60px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('Pics/pexels-elly-mar-tamayor-939226503-32597040.jpg') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.stats-section h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stats-section p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--grid-gap);
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Stats in regular sections (not stats-section) should be black */
section:not(.stats-section) .stat-number {
    color: var(--primary-color);
    text-shadow: none;
}

section:not(.stats-section) .stat-label {
    color: #666;
    text-shadow: none;
    opacity: 1;
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.showcase-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.video-container:hover .video-overlay {
    opacity: 0.8;
}

.play-button {
    font-size: 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #2d5a27;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 4px solid white;
    position: relative;
    z-index: 15;
    cursor: pointer;
    pointer-events: auto;
}

.video-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid white;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.video-overlay p {
    font-size: 18px;
    font-weight: 500;
}

/* Hide overlay when video is playing or has been clicked */
.showcase-video:not([paused]) + .video-overlay,
.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Show overlay by default when video is paused */
.showcase-video[paused] + .video-overlay {
    opacity: 1;
}

/* About Section with Image */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

/* Achievement section text visibility fix */
.stats-section .about-text h2,
.stats-section .about-text h3,
.stats-section .about-text p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 80%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    margin: 0 auto;
    display: block;
}

/* Contact Form */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-container {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Info */
.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 4px;
}

.contact-content h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-content p {
    color: #666;
    margin: 0;
}

.contact-content a {
    color: #2d5a27;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 40px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-button {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .video-showcase-section {
        padding: 60px 0;
    }

    .showcase-video {
        height: 250px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button svg {
        width: 30px;
        height: 30px;
    }

    .video-badge {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: -10px;
        right: -8px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 40px 24px;
    }

    section {
        padding: 60px 0;
    }

    .about-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .page-hero {
        height: 50vh;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #2d5a27;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #2d5a27;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1e3d1a;
    transform: translateY(-4px);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Notification System */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #2d5a27;
    max-width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

/* Clean Minimal Aesthetic */
.highlight {
    color: #2d5a27;
}

.text-muted {
    color: #666;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-6 {
    margin-bottom: 40px;
}

.py-6 {
    padding: 40px 0;
}
/* SVG Icon Styles */
.service-icon {
    color: var(--primary-color) \!important;
    display: flex \!important;
    justify-content: center;
    align-items: center;
    height: 64px;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.contact-icon {
    color: var(--primary-color) \!important;
    display: flex \!important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* Enhanced Text Contrast */
.hero h1, .page-hero h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-family: "Agdasima", sans-serif;
}

.hero p, .page-hero p {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.stats-section h2 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* ========================================
   PROFESSIONAL SERVICES PAGE STYLES
   ======================================== */


.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
    min-width: 140px;
}

.hero-stat .stat-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.hero-stat .stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: #ffffff;
}

.services-overview .section-header {
    margin-bottom: 80px;
}

.services-overview .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

/* Clean Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.service-icon-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.service-icon {
    color: white !important;
    width: 48px !important;
    height: 48px !important;
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-header h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 12px;
    font-family: "Agdasima", sans-serif;
}

.service-tagline {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

.service-content {
    padding: 30px 40px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.service-benefits h4,
.training-programs h4,
.product-portfolio h4,
.trade-capabilities h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.benefit-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Training Programs Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.program-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.program-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.program-details strong {
    display: block;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.program-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Product Showcase */
.product-showcase {
    display: grid;
    gap: 24px;
    margin-top: 20px;
}

.product-category {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.category-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.category-details strong {
    display: block;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    font-size: 16px;
}

.category-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.quality-indicator {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Trade Capabilities */
.capability-matrix {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.capability-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.capability-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.capability-content strong {
    display: block;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.capability-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Metrics */
.service-outcomes,
.training-impact,
.sustainability-metrics,
.trade-performance {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.outcome-metric,
.impact-stat,
.metric,
.performance-metric {
    text-align: center;
    min-width: 120px;
}

.outcome-metric strong,
.impact-stat strong,
.metric strong,
.performance-metric strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.outcome-metric span,
.impact-stat span,
.metric span,
.performance-metric span {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Footer */
.service-footer {
    padding: 30px 40px 40px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clean Service Card Elements */
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.service-icon svg {
    color: white;
    width: 32px;
    height: 32px;
}

.service-card:hover .service-icon {
    background: var(--primary-light);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 60px;
}

.process-step {
    grid-column: span 1;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    grid-column: span 1;
}

/* Differentiators Section */
.differentiators-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.differentiator {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.differentiator:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.diff-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: block;
}

.differentiator h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.differentiator p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(45, 80, 22, 0.8), rgba(45, 80, 22, 0.8)),
                url('Pics/pexels-caleb-pineda-865309-30420479.jpg') center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.services-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-cta-section h2 {
    font-family: "Agdasima", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.services-cta-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn.large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.btn-primary.large {
    background: white;
    color: var(--primary-color);
}

.btn-primary.large:hover {
    background: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-secondary.large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary.large:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}


/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    /* Clean Service Cards - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }

    .service-card {
        padding: 32px 24px;
        min-height: auto;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .services-overview,
    .process-section,
    .differentiators-section,
    .services-cta-section {
        padding: 60px 0;
    }

    /* Clean Service Cards - Small Mobile */
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Improved Text Visibility */
.hero h1, .page-hero h1 {
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9), 1px 1px 4px rgba(0,0,0,0.8) \!important;
}

.hero p, .page-hero p {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,0.7) \!important;
}

.hero-buttons .btn, .hero .btn {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) \!important;
}

.stat-number, .hero-stat .stat-number {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9) \!important;
}
