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

html {
    scroll-behavior: smooth;
}

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

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

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

h1 {
    font-size: 2.5rem;
    color: #2c5530;
}

h2 {
    font-size: 2rem;
    color: #2c5530;
}

h3 {
    font-size: 1.5rem;
    color: #2c5530;
}

h4 {
    font-size: 1.25rem;
    color: #2c5530;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3a21;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

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

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

.btn-secondary {
    background-color: #8B4513;
    color: white;
}

.btn-secondary:hover {
    background-color: #6d3410;
    color: white;
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-tertiary:hover {
    background-color: #2c5530;
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    padding: 5px 0;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5530;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

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

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

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

.hero-svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.header-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header-text p {
    font-size: 1.1rem;
    color: #666;
}

.header-svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c5530;
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

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

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #555;
}

.section-svg {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

/* Recent Projects */
.recent-projects {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.recent-projects h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.project-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.project-location {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Company Story */
.company-story {
    padding: 80px 0;
}

.content-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 5px;
}

.stat-card p {
    color: #666;
    font-weight: 600;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

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

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.team-member h3 {
    color: #2c5530;
    margin-bottom: 5px;
}

.role {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Our Process */
.our-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.process-step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* Services Detail */
.main-services {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

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

.service-detail.reverse .service-text,
.service-detail.reverse .service-image {
    direction: ltr;
}

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

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.service-svg {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.category-card ul {
    margin-top: 20px;
}

.category-card li {
    padding: 5px 0;
    color: #666;
}

/* Process Timeline */
.process-timeline {
    padding: 80px 0;
}

.process-timeline h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2c5530;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 120px;
}

.timeline-marker {
    position: absolute;
    left: 35px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-content h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Testimonials */
.featured-testimonials {
    padding: 80px 0;
}

.featured-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: #f8f9fa;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

blockquote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.testimonial-author strong {
    color: #2c5530;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    display: block;
    font-size: 0.9rem;
}

.location {
    color: #8B4513;
    font-weight: 600;
}

/* Testimonials Stats */
.testimonials-stats {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-stats h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 10px;
}

.stat-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.case-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.case-details span {
    background: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.case-result {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 5px;
}

.case-result strong {
    color: #2c5530;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

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

.video-testimonial {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-placeholder {
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: #2c5530;
    margin-bottom: 5px;
}

/* Blog Styles */
.featured-article {
    padding: 80px 0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.post-image {
    position: relative;
}

.featured-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2c5530;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-meta span {
    color: #666;
    font-size: 0.9rem;
}

.category {
    background: #2c5530;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.read-more {
    color: #2c5530;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-articles h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 0.9rem;
    color: #666;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #2c5530;
}

.blog-card h3 a:hover {
    color: #1e3a21;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-tag {
    background: #f8f9fa;
    color: #2c5530;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #2c5530;
    color: white;
}

.category-tag span {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

/* Blog Archive */
.blog-archive {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-archive h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.archive-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.archive-section h3 {
    color: #2c5530;
    margin-bottom: 20px;
}

.archive-list {
    list-style: none;
}

.archive-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.archive-list li:last-child {
    border-bottom: none;
}

.archive-list a {
    color: #666;
    transition: color 0.3s ease;
}

.archive-list a:hover {
    color: #2c5530;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f8f9fa;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #2c5530;
}

.subscription-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2c5530;
    border-color: #2c5530;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.info-item .note {
    font-size: 0.9rem;
    color: #666;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.map-wrapper {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-svg {
    max-width: 200px;
    max-height: 200px;
    opacity: 0.5;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.faq-item h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.emergency-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-card h3 {
    color: #dc3545;
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thanks-svg {
    width: 100px;
    height: 100px;
}

.thank-you-content h1 {
    color: #2c5530;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    color: #2c5530;
    margin-bottom: 30px;
}

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

.step {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    color: #2c5530;
    margin-bottom: 10px;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-reminder h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.urgent-contact p {
    margin: 10px 0;
    font-size: 1.1rem;
}

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

/* While You Wait */
.while-you-wait {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.while-you-wait h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.suggestion-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.suggestion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.suggestion-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: #2c5530;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #2c5530;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: #2c5530;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 5px;
}

/* Cookie Policy Specific */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5530;
}

.preference-controls {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.preference-item {
    margin-bottom: 15px;
}

.preference-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

/* Blog Article Specific */
.blog-article {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #2c5530;
}

.article-header {
    margin-bottom: 50px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 0.9rem;
    color: #666;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.article-image {
    text-align: center;
    margin-bottom: 30px;
}

.featured-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 10px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-content h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2c5530;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 5px 5px 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-tags .tag {
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.article-footer {
    max-width: 800px;
    margin: 50px auto 0;
    border-top: 2px solid #eee;
    padding-top: 50px;
}

.author-bio {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.author-bio h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.prev-article,
.next-article {
    color: #2c5530;
    font-weight: 600;
    padding: 10px 0;
}

.related-articles h4 {
    color: #2c5530;
    margin-bottom: 20px;
}

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

.related-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
}

.related-item h5 {
    color: #2c5530;
    margin-bottom: 10px;
}

.related-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Article Content Specific Styles */
.cta-box {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.stats-box {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.stats-box h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.performance-table,
.cost-table,
.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.performance-table th,
.performance-table td,
.cost-table th,
.cost-table td,
.roi-table th,
.roi-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.performance-table th,
.cost-table th,
.roi-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c5530;
}

.timeline-simple {
    margin: 20px 0;
}

.timeline-simple .timeline-item {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid #2c5530;
}

.noise-levels,
.color-effects,
.space-distribution {
    margin: 30px 0;
}

.color-item,
.space-type {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.color-item h4 {
    margin-bottom: 10px;
}

.plants-benefits {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.benefits-overview {
    margin: 30px 0;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.benefit-item h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.contact-info p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

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

    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 5px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

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

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

/* Print Styles */
@media print {
    .cookie-banner,
    .navbar,
    .footer,
    .cta-section,
    .btn,
    .hamburger {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    .article-content {
        max-width: none;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-tertiary {
        border-width: 3px;
    }

    .service-card,
    .project-card,
    .blog-card {
        border: 2px solid #2c5530;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5530;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
