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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: -5px;
}

.logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.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;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2d5a27;
}

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

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

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

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5a27;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #2d5a27;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2d5a27;
    border: 2px solid #2d5a27;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: white;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.service-card {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

.service-card a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

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

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f8fffe 100%);
}

.why-content h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 2rem;
}

.why-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Recent Projects */
.recent-projects {
    padding: 6rem 0;
    background: white;
}

.recent-projects h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.recent-projects > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

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

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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.project-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-link {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #1e3d1a;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: #2d5a27;
    text-align: center;
    color: white;
}

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

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

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

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #2d5a27;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #2d5a27;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .project-card {
        margin: 0 10px;
    }
}

/* Page Hero */
.page-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #2d5a27 0%, #1e3d1a 100%);
    color: white;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    padding: 6rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

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

.service-content h2 {
    font-size: 2.2rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-content a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

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

.service-features {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2d5a27;
    margin-top: 2rem;
}

.service-features h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

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

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

.process-section h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.process-section > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.process-step:hover {
    transform: translateY(-5px);
}

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

.process-step h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

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

    .service-content h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .service-features {
        padding: 1.5rem;
    }

    .process-step {
        padding: 2rem;
    }
}

/* Portfolio Intro */
.portfolio-intro {
    padding: 3rem 0;
    background: #f8fffe;
}

.portfolio-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Featured Projects */
.featured-projects {
    padding: 6rem 0;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.project-showcase:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.project-showcase.reverse {
    direction: rtl;
}

.project-showcase.reverse > * {
    direction: ltr;
}

.project-main {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-main:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.project-category {
    background: #2d5a27;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-overlay h2 {
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.project-overlay p {
    opacity: 0.9;
    margin: 0;
}

.project-details h3 {
    color: #2d5a27;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fffe;
    border-radius: 8px;
    border-left: 4px solid #2d5a27;
}

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

.project-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-details a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

.project-details a:hover {
    text-decoration: underline;
}

/* Project Gallery */
.project-gallery {
    padding: 6rem 0;
    background: #f8fffe;
}

.project-gallery h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.project-gallery > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1.5rem;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.gallery-category {
    background: #2d5a27;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author strong {
    color: #2d5a27;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

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

/* Project Process Timeline */
.project-process {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f8fffe 100%);
}

.project-process h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.project-process > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2d5a27;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #2d5a27;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #2d5a27;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.timeline-content a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design for Projects Page */
@media (max-width: 768px) {
    .project-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .project-showcase.reverse {
        direction: ltr;
    }

    .project-main img {
        height: 300px;
    }

    .project-details h3 {
        font-size: 1.5rem;
    }

    .project-meta {
        flex-direction: column;
    }

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

    .gallery-item img {
        height: 200px;
    }

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

    .process-timeline::before {
        left: 15px;
    }

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

    .timeline-marker {
        left: 5px;
        width: 20px;
        height: 20px;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-overlay {
        padding: 1.5rem;
    }

    .project-overlay h2 {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        margin: 0 10px;
    }

    .testimonial {
        padding: 2rem;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

/* Company Story */
.company-story {
    padding: 6rem 0;
    background: white;
}

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

.story-text h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8fffe;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.team-section > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2d5a27;
}

.member-info h3 {
    color: #2d5a27;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: white;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.philosophy-item {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
}

.philosophy-item h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.philosophy-item a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

.philosophy-item a:hover {
    text-decoration: underline;
}

/* Partnerships */
.partnerships {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f8fffe 100%);
}

.partnerships h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.partnerships > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.partners-text h3 {
    color: #2d5a27;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.partners-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.certifications {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certifications h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    padding: 1rem;
    background: #f8fffe;
    border-radius: 8px;
    border-left: 3px solid #2d5a27;
}

.cert-item strong {
    color: #2d5a27;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.cert-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Company Values */
.company-values {
    padding: 6rem 0;
    background: white;
}

.company-values h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8fffe;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
    background: #f8fffe;
}

.timeline-section h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-section > .container > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.company-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2d5a27;
}

.timeline-event {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 150px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #2d5a27;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #2d5a27;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.timeline-content a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

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

/* Awards & Recognition */
.awards-recognition {
    padding: 6rem 0;
    background: white;
}

.awards-recognition h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.award-item {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
    text-align: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-item p:first-of-type {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.award-item p:last-of-type {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .team-member {
        padding: 2rem;
    }

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

    .partners-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .company-timeline::before {
        left: 30px;
    }

    .timeline-event {
        padding-left: 80px;
    }

    .timeline-year {
        left: 0;
        width: 60px;
        height: 60px;
    }

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

@media (max-width: 480px) {
    .story-text h2 {
        font-size: 2rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .philosophy-item {
        padding: 2rem;
    }

    .certifications {
        padding: 2rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .award-item {
        padding: 2rem;
    }

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

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

    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

/* Contact Intro */
.contact-intro {
    padding: 4rem 0;
    background: #f8fffe;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-content a {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Main */
.contact-main {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 2rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: #f8fffe;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    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: #2d5a27;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

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

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

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

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

.checkbox-label input[type="checkbox"] {
    display: none;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
}

.contact-card h3 {
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-text strong {
    color: #2d5a27;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text p {
    color: #333;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.contact-text small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

.emergency-contact {
    background: #2d5a27;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.service-areas {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-areas li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.service-areas li::before {
    content: '•';
    color: #2d5a27;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Process Expectations */
.process-expectations {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f8fffe 100%);
}

.process-expectations h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.expectation-item:hover {
    transform: translateY(-5px);
}

.expectation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expectation-item h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.expectation-item p {
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2d5a27;
}

.faq-item h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Testimonials Contact */
.testimonials-contact {
    padding: 6rem 0;
    background: #f8fffe;
}

.testimonials-contact h2 {
    font-size: 2.5rem;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-slide {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2d5a27;
}

.testimonial-content p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #2d5a27;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

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

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form {
        padding: 2rem;
    }

    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .intro-content h2 {
        font-size: 1.8rem;
    }

    .contact-form-section h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .expectation-item {
        padding: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .testimonial-slide {
        padding: 2rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
    background-color: #f2fdf5;
}

/* Loading state for form submission */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}