/* GREEN MIXT CONSTRUCTIONS SRL - Professional Construction Website Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Design Tokens - Enhanced System */
    --brand: #1c7d53;         /* emerald */
    --brand-2: #2aa36b;       /* lighter emerald */
    --ink: #0e1726;           /* near-black */
    --muted: #5f6b7a;
    --bg: #f7faf8;
    --surface: #ffffff;
    --ring: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent);
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 10px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-sm: 0 6px 14px rgba(0,0,0,.06);
    
    /* Legacy Color Palette (for compatibility) */
    --primary-color: var(--brand);
    --primary-light: var(--brand-2);
    --primary-dark: #0f2e1a;
    --secondary-color: #4a7c59;
    --accent-color: #6b8e6b;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-4);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--spacing-4);
    color: var(--neutral-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-outline:hover {
    background-color: var(--neutral-100);
    border-color: var(--neutral-400);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
    min-height: 40px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.nav-brand .logo {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-radius: var(--radius-sm);
    color: white;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 16px;
    height: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex: 1;
}

.logo-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtitle {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--neutral-600);
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-8);
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color 0.2s ease;
    padding: var(--spacing-2) 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.05);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--bg);
    color: var(--brand);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: var(--spacing-3) var(--spacing-4);
    color: var(--neutral-700);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--neutral-100);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-2);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-700);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
section.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c7d53 !important;
    background-image: linear-gradient(135deg, #1c7d53 0%, #2aa36b 100%) !important;
    color: white !important;
    overflow: hidden;
    padding: 4rem 0 3rem 0;
    width: 100%;
    margin-top: 60px;
}

/* Removed ::before pseudo-element that was interfering with background */

/* Removed complex background overlay */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 60rem;
    text-align: center;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
}

.hero-title .highlight {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    border: 2px solid transparent;
}

.hero-actions .btn-primary {
    background: white;
    color: #1c7d53;
    border-color: white;
}

.hero-actions .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.hero-actions .btn-secondary:hover {
    background: white;
    color: #1c7d53;
    border-color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Page Header Spacing for Fixed Header */
.section:first-of-type {
    margin-top: 60px;
    padding-top: 2rem;
}

/* Page Header and Breadcrumb Spacing */
.page-header {
    margin-top: 60px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.breadcrumb {
    margin-top: 60px;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

/* Intro Section */
.intro {
    padding: var(--spacing-20) 0;
    background-color: var(--neutral-50);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-6);
}

.intro-text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--neutral-600);
}

/* Stats Section */
.stats {
    padding: var(--spacing-16) 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-6);
}

.stat-number {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-2);
}

.stat-label {
    font-size: var(--font-size-lg);
    color: var(--neutral-600);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: var(--spacing-20) 0;
    background-color: var(--neutral-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.service-card {
    background-color: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    color: var(--white);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-4);
}

.service-description {
    color: var(--neutral-600);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c7d53 0%, #2aa36b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.preloader-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoPulse 1.5s ease-in-out infinite;
}

.preloader-logo .logo-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.preloader-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.preloader-logo .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.preloader-logo .logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #e0f2fe 100%);
    border-radius: 2px;
    animation: progressLoad 2s ease-in-out;
}

.preloader-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    animation: textFade 1.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes textFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Page Load Animations - Improved */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    will-change: opacity, transform;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    will-change: opacity, transform;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
    will-change: opacity, transform;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
    will-change: opacity, transform;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Ensure animated elements maintain visibility */
.fade-in-up, .fade-in-left, .fade-in-right, .scale-in {
    position: relative;
    z-index: 2;
}

/* Fix for grid items that might disappear */
.services-grid, .projects-grid, .features-grid, .testimonials-grid {
    position: relative;
    z-index: 2;
    min-height: 200px;
}

.service-card, .project-card, .feature-item, .testimonial-card {
    position: relative;
    z-index: 2;
    min-height: 150px;
}

/* Fallback for animation conflicts */
.fade-in-up:not(.animate), .fade-in-left:not(.animate), .fade-in-right:not(.animate), .scale-in:not(.animate) {
    opacity: 0.1;
}

/* Ensure sections maintain their content */
.section {
    min-height: 300px;
    position: relative;
}

.section .container {
    position: relative;
    z-index: 3;
}

/* Stats Section within Company Overview */
.stats-section {
    margin: 2rem 0 3rem 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-section .stat-item {
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.stats-section .stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.stats-section .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.stats-section .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

/* Company Overview Section */
.company-overview {
    margin-top: 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.overview-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.overview-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.overview-text p {
    color: var(--neutral-600);
    line-height: 1.6;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--neutral-200);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-card .stat-description {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.company-values {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--neutral-200);
}

.company-values h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem auto;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--neutral-600);
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-item {
        flex-direction: column;
        text-align: center;
    }
    
    .overview-icon {
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Sections */
.section {
    padding: 3rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section--alt {
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
    position: relative;
}

/* Background Patterns */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(28, 125, 83, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 163, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(28, 125, 83, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(42, 163, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(28, 125, 83, 0.2) 50%, transparent 100%);
    margin: 2rem 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1c7d53 0%, #2aa36b 100%);
    border-radius: 2px;
}

/* Enhanced Section Head */
.section-head {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-head::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1c7d53 0%, #2aa36b 100%);
    border-radius: 2px;
}

.section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(28,125,83,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42,163,107,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Featured Projects */
.featured-projects {
    padding: var(--spacing-20) 0;
    background-color: var(--white);
}

/* Premium Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,.05);
    group: hover;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* SVG box keeps perfect ratio and centers artwork */
.project-card .svgbox {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(28,125,83,.10), rgba(28,125,83,.02)),
        radial-gradient(120% 100% at 100% 0%, rgba(42,163,107,.10), transparent 60%),
        #eef6f0;
    overflow: hidden;
}

.project-card .svgbox svg {
    width: 88%;
    height: auto;
    display: block;
}

/* Subtle gloss effect */
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent 30%);
    pointer-events: none;
}

/* Card body */
.project-card .body {
    padding: 1.5rem;
}

.project-card .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1c7d53;
    background: rgba(28, 125, 83, 0.1);
    border: 1px solid rgba(28, 125, 83, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.project-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Section header */
.section-head {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-head h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.section-head .sub {
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 1rem auto;
    font-size: 1.125rem;
    line-height: 1.6;
}

.section-head .highlight-line {
    color: #1c7d53;
    font-size: 1rem;
    font-weight: 600;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(28, 125, 83, 0.1);
    border-left: 4px solid #1c7d53;
    border-radius: 0.5rem;
    line-height: 1.5;
}

.section-head .intro-text {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
    max-width: 56rem;
    margin: 1.5rem auto 0 auto;
    text-align: center;
    line-height: 1.6;
    padding: 1.25rem 2rem;
    background: rgba(28, 125, 83, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(28, 125, 83, 0.1);
}

/* Footer brand row (fix vertical alignment) */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand svg {
    height: 28px;
    width: auto;
    display: block;
    flex: 0 0 auto;
}

.footer-brand .name {
    font-weight: 700;
    letter-spacing: .2px;
    color: var(--ink);
}

/* Legal Pages Styling */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 2rem 0;
}

.legal-intro {
    background: linear-gradient(135deg, var(--bg) 0%, #f0f8f4 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    border-left: 6px solid var(--brand);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.legal-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    opacity: 0.1;
    border-radius: 0 var(--radius) 0 100px;
}

.legal-intro-text {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.legal-last-updated {
    font-size: 0.95rem;
    color: var(--muted);
    font-style: italic;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.legal-section {
    margin-bottom: 3rem;
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    color: var(--brand);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--bg);
    font-weight: 700;
    position: relative;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.legal-section h3 {
    color: var(--ink);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--brand-2);
}

.legal-section p {
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-section ul, .legal-section ol {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
    background: var(--bg);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--brand-2);
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-section li::marker {
    color: var(--brand);
    font-weight: 600;
}

.contact-info {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.company-info {
    background: linear-gradient(135deg, var(--bg) 0%, #f0f8f4 100%);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border: 2px solid var(--brand-2);
    box-shadow: var(--shadow-sm);
}

.company-info h3 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.company-info p {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.company-info strong {
    color: var(--brand);
    font-weight: 700;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 1rem 0;
    }
    
    .legal-intro {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info, .company-info {
        padding: 1.5rem;
    }
}

/* Link button */
.btn-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1c7d53 0%, #2aa36b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.cta-actions .btn-light {
    background: white;
    color: #1c7d53;
    border: 2px solid white;
}

.cta-actions .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-actions .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-actions .btn-outline-light:hover {
    background: white;
    color: #1c7d53;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c7d53, #2aa36b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #1c7d53;
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.author-location {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Enhanced CTA Section */
.cta-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Page - Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c7d53, #2aa36b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1c7d53, #2aa36b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(28, 125, 83, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Service Detail Pages */
.service-details {
    margin-top: 3rem;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 2rem;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #1c7d53;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Careers Page */
.careers-content {
    margin-top: 3rem;
}

.careers-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.careers-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.careers-intro p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.job-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.job-type {
    background: linear-gradient(135deg, #1c7d53, #2aa36b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.job-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.job-requirements li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.job-requirements li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1c7d53;
    font-weight: bold;
}

.job-requirements li:last-child {
    border-bottom: none;
}

/* News Page */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image .svgbox {
    width: 100%;
    height: 100%;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.news-date {
    color: #6b7280;
}

.news-category {
    background: linear-gradient(135deg, #1c7d53, #2aa36b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #1c7d53;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #2aa36b;
}

/* Newsletter Signup */
.newsletter-signup {
    max-width: 500px;
    margin: 3rem auto 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form .form-group {
    display: flex;
    flex: 1;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1c7d53;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

/* Utility classes */
.mt-24 {
    margin-top: 24px;
}

/* Enhanced Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1c7d53, #2aa36b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1c7d53, #2aa36b);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 16px rgba(28, 125, 83, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-link {
    color: #1c7d53;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(28, 125, 83, 0.1);
}

.service-link:hover {
    color: #2aa36b;
    background: rgba(28, 125, 83, 0.15);
    transform: translateX(4px);
}

/* Enhanced Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1c7d53;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1c7d53, #2aa36b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1c7d53, #2aa36b);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 16px rgba(28, 125, 83, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    margin-top: var(--spacing-8);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    font: 600 1.125rem/1.3 "Inter", system-ui;
    color: var(--ink);
    margin-bottom: var(--spacing-2);
}

.contact-details p {
    color: var(--muted);
    margin: 0;
}

.contact-details a {
    color: var(--brand);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form,
.quote-form-container {
    background: var(--surface);
    border-radius: var(--radius);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.form-section {
    margin-bottom: var(--spacing-8);
    padding-bottom: var(--spacing-6);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font: 600 1.25rem/1.3 "Inter", system-ui;
    color: var(--ink);
    margin-bottom: var(--spacing-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.form-group label {
    font: 500 0.875rem/1.3 "Inter", system-ui;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-3) var(--spacing-4);
    border: 1px solid rgba(0,0,0,.2);
    border-radius: var(--radius-sm);
    font: 400 1rem/1.5 "Inter", system-ui;
    color: var(--ink);
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--ring);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

.form-note {
    color: var(--muted);
    font-size: var(--font-size-sm);
    text-align: center;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--neutral-600);
    margin-bottom: var(--spacing-6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
}

.project-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: var(--spacing-6);
}

.project-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-2);
}

.project-location {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-3);
}

.project-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--spacing-20) 0;
    background-color: var(--neutral-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-6);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: var(--white);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-4);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    color: var(--white);
}

.cta-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-8);
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--spacing-16) 0 var(--spacing-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.footer-subtitle {
    color: var(--neutral-400);
    margin-bottom: var(--spacing-4);
}

.footer-tagline {
    color: var(--neutral-500);
    font-style: italic;
}

.footer-heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-2);
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: var(--spacing-2);
    color: var(--neutral-400);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding-top: var(--spacing-6);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-4);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-6);
}

.footer-legal a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--neutral-200);
        padding: var(--spacing-6);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-4);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 0.25rem 0;
        min-height: 35px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .logo-title {
        font-size: 0.9rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    section.hero {
        min-height: 50vh;
        padding: 3rem 0 2rem 0;
        margin-top: 45px;
        background-color: #1c7d53 !important;
        background-image: linear-gradient(135deg, #1c7d53 0%, #2aa36b 100%) !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section:first-of-type {
        margin-top: 45px;
        padding-top: 1.5rem;
    }
    
    .page-header {
        margin-top: 45px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .breadcrumb {
        margin-top: 45px;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-head h2 {
        font-size: 2rem;
    }
    
    .section-head .sub {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.125rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.375rem;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .btn-large {
        padding: var(--spacing-3) var(--spacing-6);
        font-size: var(--font-size-base);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
