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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-green: #2d5a2d;
    --light-green: #4a7c4a;
    --accent-green: #6fa96f;
    --bg-light: #f8faf8;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --shadow: rgba(45, 90, 45, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 1rem 0;
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: var(--background-light);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

.dropdown-item.main-service {
    font-weight: 600;
    color: var(--primary-green);
    background-color: #f8fffc;
}

.dropdown-item.main-service:hover {
    background-color: #f0fff4;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 0.5rem 1.5rem;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.nav-cta-text {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 2px;
}

.nav-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    color: var(--light-green);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 1rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--accent-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.hero-visual {
    position: relative;
}

.automation-demo {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse 3s ease-in-out infinite;
}

.demo-screen {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.demo-header {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.demo-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric {
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 5px;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* What We Automate Section */
.what-we-automate {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.what-we-automate h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.automation-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.automation-card-link:hover {
    transform: translateY(-8px);
}

.automation-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
}

.automation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.automation-card-link:hover .automation-card::before {
    transform: scaleX(1);
}

.automation-card-link:hover .automation-card {
    box-shadow: 0 15px 40px var(--shadow);
}

.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.automation-card-link:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.automation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.automation-example {
    margin-top: 1rem;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Why Local Section */
.why-local {
    padding: 80px 0;
    background-color: var(--white);
}

.local-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.local-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-medium);
    line-height: 1.6;
}

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

.service-area {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-green);
}

.service-area h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.counties {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.county {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(111, 169, 111, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 90, 45, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.process-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.process-header h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 16.66%;
    right: 16.66%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--primary-green));
    border-radius: 2px;
    z-index: 0;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-green);
    border-radius: 2px;
    animation: progressLine 3s ease-in-out 1s forwards;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(45, 90, 45, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.process-step[data-step="2"] .step-card {
    animation-delay: 0.2s;
}

.process-step[data-step="3"] .step-card {
    animation-delay: 0.4s;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 90, 45, 0.15);
    border-color: var(--accent-green);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(45, 90, 45, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    border: 3px solid var(--accent-green);
    position: relative;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-duration {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.duration-icon {
    font-size: 1rem;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 90, 45, 0.1);
    border: 2px solid var(--bg-light);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Animation keyframes */
@keyframes progressLine {
    to {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
}

.cta-guarantee {
    margin-top: 2rem;
}

.guarantee-text {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #ccc;
}

/* Footer Services Two-Column Layout */
.services-section .services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.services-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-column ul li {
    margin-bottom: 0.5rem;
}

.services-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.services-column ul li a:hover {
    color: var(--primary-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Add subtle entrance animations for sections */
.what-we-automate,
.why-local,
.process-section {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* Navbar enhancement */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--background-light);
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 0;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }
    
    .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        order: -1;
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .nav-cta-text {
        font-size: 0.8rem;
    }
    
    .nav-phone {
        font-size: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-brand-logo {
        height: 50px;
    }
    
    /* Footer Services Mobile Responsive */
    .services-section .services-columns {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .services-column ul li {
        margin-bottom: 0.4rem;
    }
    
    /* Back to Top Button Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .automation-demo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .demo-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .automation-grid {
        grid-template-columns: 1fr;
    }
    
    .local-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .guarantee-text {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .automation-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .automation-card-link:hover {
        transform: translateY(-4px);
    }
    
    .card-arrow {
        opacity: 1;
        transform: translateX(0);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-phone {
    margin-bottom: 2rem;
}

.hero-phone a {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border: 3px solid var(--accent-green);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-phone a:hover {
    background-color: var(--accent-green);
    color: white;
    transform: translateY(-2px);
}

.contact-tagline h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.contact-tagline p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem 3rem 1.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.1);
    border: 1px solid rgba(45, 90, 45, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-note {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.1);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal !important;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Sidebar Styles */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.1);
    border: 1px solid rgba(45, 90, 45, 0.1);
}

.sidebar-section {
    padding: 2rem;
    border-bottom: 1px solid var(--bg-light);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-link {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-link:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

.success-stories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.story-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.story-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.story-industry {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    text-align: center;
}

.sidebar-cta h3 {
    color: white !important;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sidebar-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-green);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar-phone-btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 30px;
    }
    
    .contact-cta h1 {
        font-size: 2rem;
    }
    
    .hero-phone a {
        font-size: 1.8rem;
    }
    
    .contact-tagline h2 {
        font-size: 1.3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 2rem 1.5rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 100px 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

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

.hero-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.founder-image {
    position: relative;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-green);
    margin: 0 auto 1rem;
    display: block;
    box-shadow: 0 10px 40px rgba(45, 90, 45, 0.2);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent-green);
    margin: 0 auto 1rem;
    position: relative;
}

.placeholder-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-green);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: var(--white);
}

.story-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.story-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-green);
    flex-shrink: 0;
}

.point-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.point-text p {
    margin: 0;
    color: var(--text-medium);
}

.journey-timeline {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.journey-timeline h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.timeline-year {
    background: var(--primary-green);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    font-size: 0.9rem;
}

.timeline-desc {
    flex: 1;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(45, 90, 45, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-feature {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: var(--white);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.experience-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--text-dark);
}

.experience-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.skills-showcase {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
}

.skills-showcase h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Local Section */
.local-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.local-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.local-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(45, 90, 45, 0.1);
    transition: all 0.3s ease;
}

.local-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 90, 45, 0.15);
}

.local-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.local-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.service-area-highlight {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(45, 90, 45, 0.1);
}

.service-area-highlight h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.counties-served {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.county-badge {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    text-align: center;
}

.about-cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-cta-section .btn-primary {
    background-color: white;
    color: var(--primary-green);
}

.about-cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .founder-photo,
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .local-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .counties-served {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Services page specific styles */
.services-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2b8f5c 100%);
    color: white;
}

.services-hero-content {
    text-align: center;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

.services-hero .hero-subtitle {
    margin-bottom: 3rem;
}

.services-hero .hero-stats {
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-hero .stat-item {
    text-align: center;
    min-width: 120px;
}

.services-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.3rem;
}

.services-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.services-hero .hero-cta {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero .hero-guarantee {
    font-size: 0.95rem;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.services-overview {
    padding: 5rem 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f8fffc 0%, #ffffff 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: var(--primary-green);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card p a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.service-card p a:hover {
    text-decoration: underline;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--primary-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2b8f5c;
}

.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--background-light);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.our-process {
    padding: 5rem 0;
    background: var(--background-light);
}

.our-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.industries-served {
    padding: 5rem 0;
    background: white;
}

.industries-served h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    padding: 2rem;
    border-radius: 12px;
    background: var(--background-light);
    text-align: center;
}

.industry-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2b8f5c 100%);
    color: white;
}

.results-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-cta-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.services-cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-cta-section p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-guarantee {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-areas {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.service-areas p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-medium);
}

/* Services Mobile responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero h2 {
        font-size: 1.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Sub-Service Page Template Styles */
.service-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2b8f5c 100%);
    color: white;
}

.hero-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 500;
}

.service-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-hero .hero-guarantee {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Service Overview Section */
.service-overview {
    padding: 5rem 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.overview-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.overview-benefits {
    margin-top: 2rem;
}

.overview-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-stats {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.service-stats .stat-item {
    margin-bottom: 1.5rem;
}

.service-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.3rem;
}

.service-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Service Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: var(--background-light);
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.benefit-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* Process Timeline Section */
.service-process {
    padding: 5rem 0;
    background: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-process .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
}

.process-step .step-number {
    background: var(--primary-green);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.step-duration {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 500;
}

/* Industries Section */
.service-industries {
    padding: 5rem 0;
    background: var(--background-light);
}

.service-industries h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.industries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.example-tag {
    background: var(--primary-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.service-why-us {
    padding: 5rem 0;
    background: white;
}

.service-why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--background-light);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.proof-point {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Results Section */
.service-results {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2b8f5c 100%);
    color: white;
}

.service-results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.results-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.result-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.case-study {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.case-study h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.case-study-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.service-faq {
    padding: 5rem 0;
    background: var(--background-light);
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.service-final-cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.service-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-final-cta p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-guarantee {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-area {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    max-width: 600px;
    margin: 0 auto;
}

.service-area p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-medium);
}

/* Mobile Responsive for Sub-Service Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero h2 {
        font-size: 1.4rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
