@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary-green: #6EC13A;
    --primary-dark: #2B3C4A;
    --bg-light: #F7F7F7;
    --white: #FFFFFF;
    --subtle-grey: #D9D9D9;
    --accent-red: #E03F3F;
    --accent-yellow: #FFD700;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --header-height: 70px;
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-out;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    background: none;
}

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

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
    height: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-desktop a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width var(--transition-fast);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a.active {
    color: var(--primary-green);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
}

.phone-link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-green);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '→';
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

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

.btn-primary:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn-primary:active {
    transform: scale(0.98);
    background-color: #5EA72E;
}

.btn-primary:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-green);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

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

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay ul {
    text-align: center;
}

.mobile-menu-overlay li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.mobile-menu-overlay.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-overlay a {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition-fast);
}

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

.mobile-menu-overlay .mobile-cta {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay .phone-link {
    color: var(--white);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
    transition-delay: 0.45s;
}

.mobile-menu-overlay.active .phone-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay .phone-link svg {
    fill: var(--primary-green);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 60, 74, 0.9) 0%, rgba(43, 60, 74, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero .btn-primary {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Graph Animation */
.hero-graph {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0.3;
    pointer-events: none;
}

.graph-line {
    stroke: var(--primary-green);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.graph-line.animate {
    animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.graph-point {
    fill: var(--primary-green);
    opacity: 0;
}

.graph-point.animate {
    animation: fadeInPoint 0.5s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeInPoint {
    to {
        opacity: 1;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    font-family: var(--font-primary);
    margin-bottom: 8px;
}

.scroll-indicator .chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(10px) rotate(45deg);
    }
    60% {
        transform: translateY(5px) rotate(45deg);
    }
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Trust Section */
.intro-trust {
    background-color: var(--bg-light);
}

.intro-trust-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

.intro-trust-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.intro-trust-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.intro-trust-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #5BA82E 100%);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(110, 193, 58, 0.3);
}

.experience-badge .number {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-family: var(--font-primary);
    text-align: center;
    padding: 0 10px;
}

/* Services Overview - Horizontal Scroll */
.services-overview {
    overflow: hidden;
}

.services-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-scroll-container::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 280px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    scroll-snap-align: start;
    transition: all var(--transition-medium);
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.service-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card .learn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card .learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover .learn-more svg {
    transform: translateX(5px);
}

/* How We Help - Split Section */
.how-we-help {
    background-color: var(--primary-dark);
    color: var(--white);
}

.how-we-help-content {
    display: grid;
    gap: 40px;
}

.how-we-help-image img {
    width: 100%;
    border-radius: 8px;
}

.how-we-help-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.how-we-help-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.how-we-help-item {
    display: flex;
    gap: 15px;
}

.how-we-help-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-we-help-item-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-green);
    stroke-width: 2;
    fill: none;
}

.how-we-help-item h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
}

.how-we-help-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Process Steps */
.process-steps {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

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

.step-item h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.testimonial-slider {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-green);
}

.testimonial-title {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    transition: all var(--transition-fast);
}

.testimonial-nav button.active,
.testimonial-nav button:hover {
    background-color: var(--primary-green);
}

/* CTA Strip */
.cta-strip {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.cta-strip h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-strip .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    margin: 10px;
}

.cta-strip .btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.cta-strip .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    margin: 10px;
}

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

/* Blog Snippet */
.blog-grid {
    display: grid;
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-medium);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #666;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
}

/* Value Statement */
.value-statement {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.value-statement h2 {
    font-size: 32px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    background-color: var(--bg-light);
}

.final-cta-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

.final-cta-text h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.final-cta-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.final-cta-phone {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
}

.phone-number svg {
    width: 24px;
    height: 24px;
}

/* ==================== ABOUT US PAGE ==================== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    padding-top: var(--header-height);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 60, 74, 0.85) 0%, rgba(43, 60, 74, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* Journey Section */
.journey-content {
    display: grid;
    gap: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 14px;
    color: #666;
}

/* Mission Values */
.mission-values {
    background-color: var(--primary-dark);
    color: var(--white);
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    gap: 30px;
}

.value-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-medium);
}

.value-card:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.value-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 40px;
}

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

.team-member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-member .title {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--primary-dark);
    color: var(--white);
}

.why-choose-us-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

.why-choose-us-graphic {
    display: flex;
    justify-content: center;
}

.why-choose-us-graphic img {
    max-width: 300px;
}

.why-choose-us-list h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
}

.why-choose-us-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-us-list li svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
}

.why-choose-us-list li span {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

/* ==================== SERVICES PAGE ==================== */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 16px;
    color: #666;
}

/* Service Detail Sections */
.service-detail {
    padding: 60px 0;
}

.service-detail:nth-child(even) {
    background-color: var(--bg-light);
}

.service-detail-content {
    display: grid;
    gap: 40px;
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-content > * {
    direction: ltr;
}

.service-detail-icon {
    display: flex;
    justify-content: center;
}

.service-detail-icon svg {
    width: 120px;
    height: 120px;
    stroke: var(--primary-green);
    stroke-width: 1;
    fill: none;
}

.service-detail-text h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-detail-text > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-detail-list h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-detail-list ul {
    display: grid;
    gap: 10px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.service-detail-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
    stroke-width: 2;
    fill: none;
}

/* ==================== APPROACH PAGE ==================== */
.philosophy {
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(110, 193, 58, 0.1) 0%, transparent 70%);
}

.philosophy-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.philosophy-statement {
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.philosophy-tenets {
    display: grid;
    gap: 30px;
    text-align: left;
}

.philosophy-tenet {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 25px;
}

.philosophy-tenet h4 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.philosophy-tenet p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Process Steps - Approach Page */
.approach-process {
    position: relative;
}

.process-steps-container {
    display: grid;
    gap: 50px;
}

.process-step {
    display: grid;
    gap: 20px;
    align-items: start;
}

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

.process-step-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.process-step-content p {
    font-size: 15px;
    color: #666;
}

/* Partnership Section */
.partnership {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
}

.partnership-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.partnership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 60, 74, 0.9) 0%, rgba(43, 60, 74, 0.8) 100%);
}

.partnership-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.partnership h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.partnership p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* ==================== CONTACT PAGE ==================== */
.contact-form-section {
    background-color: var(--white);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--primary-dark);
    border: 1px solid var(--subtle-grey);
    border-radius: 4px;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-group .required {
    color: var(--accent-red);
}

.contact-form-container .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-green);
    stroke-width: 2;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 16px;
    color: #666;
}

/* Contact Details */
.contact-details {
    background-color: var(--primary-dark);
    color: var(--white);
}

.contact-details-grid {
    display: grid;
    gap: 40px;
}

.contact-detail-item {
    text-align: center;
}

.contact-detail-item-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.contact-detail-item-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.contact-detail-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-detail-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.contact-detail-item a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-hours {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-hours p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

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

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

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-dark);
    stroke-width: 2;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-content {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.footer-address {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-style: normal;
}

.footer h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(110, 193, 58, 0.1);
    border-radius: 20px;
    margin-top: 15px;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green);
    stroke-width: 2;
    fill: none;
}

.trust-badge span {
    font-size: 13px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-green);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(110, 193, 58, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
    transition: transform var(--transition-fast);
}

.scroll-to-top:hover svg {
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* SVG Line Draw */
.svg-line-draw {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease-out;
}

.svg-line-draw.draw {
    stroke-dashoffset: 0;
}

/* Gradient Mesh Animation */
.gradient-mesh {
    background: radial-gradient(ellipse at 20% 50%, rgba(110, 193, 58, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(43, 60, 74, 0.3) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: meshMove 10s ease infinite;
}

@keyframes meshMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.confetti.animate {
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-100px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* ==================== MEDIA QUERIES ==================== */

/* Tablet - 768px */
@media (min-width: 768px) {
    :root {
        --header-height: 75px;
    }

    .section-padding {
        padding: 80px 0;
    }

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

    .hero p {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .intro-trust-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-scroll-container {
        padding: 30px;
    }

    .service-card {
        flex: 0 0 320px;
    }

    .how-we-help-content {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .final-cta-content {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }

    .why-choose-us-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail.reverse .service-detail-content {
        direction: ltr;
    }

    .philosophy-tenets {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Desktop - 1024px */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .section-padding {
        padding: 100px 0;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-desktop {
        display: block;
    }

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

    .section-header h2 {
        font-size: 42px;
    }

    .intro-trust-content {
        gap: 60px;
    }

    .intro-trust-text h2 {
        font-size: 36px;
    }

    .how-we-help-text h2 {
        font-size: 36px;
    }

    .service-card {
        flex: 0 0 350px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .step-item {
        position: relative;
    }

    .step-item::after {
        content: '';
        position: absolute;
        right: -30px;
        top: 30px;
        width: 40px;
        height: 2px;
        background-color: var(--primary-green);
    }

    .step-item:last-child::after {
        display: none;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-statement h2 {
        font-size: 42px;
    }

    .final-cta-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .page-hero h1 {
        font-size: 52px;
    }

    .journey-content {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .philosophy-statement {
        font-size: 28px;
    }

    .contact-form-container {
        padding: 50px;
    }

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }

    .graph-line, .svg-line-draw {
        stroke-dashoffset: 0;
    }
}
