/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
    margin: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-link:hover {
    color: #2c5f2d;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #2c5f2d;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem 0;
        margin: 0;
        padding: 1rem 0;
        width: 100%;
        background: white;
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
        margin: 0;
    }
}

/* Additional responsive adjustments */
@media (max-width: 576px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

/* Updated Hero Section Styles */
#hero {
    position: relative;
    background: linear-gradient(to right, #ffffff 60%, #f5f8f5 40%);
    overflow: hidden;
    padding: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-text .highlight {
    color: #2c5f2d;
    position: relative;
    display: inline-block;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #2c5f2d;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: #2c5f2d;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.cta-button.secondary:hover {
    background-color: rgba(44, 95, 45, 0.1);
}

.stats-container {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    margin: 0 1rem;
}

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

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.hero-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background-color: rgba(44, 95, 45, 0.1);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #hero {
        background: white;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
    }

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

    .hero-image-container {
        min-height: 400px;
        order: -1;
    }

    .hero-shape {
        display: none;
    }
}

/* Services Section */
#services {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

#services h2 {
    text-align: center;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

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

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

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

.service-card i {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* About Section Styles */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    color: #2c5f2d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.about-container .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: #2c5f2d;
}

.lead-text {
    margin-top: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.supporting-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.stat-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(44, 95, 45, 0.05);
}

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

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    font-size: 1.5rem;
    color: #2c5f2d;
}

.feature span {
    color: #333;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #2c5f2d;
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-container .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-features {
        justify-content: center;
    }

    .about-image {
        order: -1;
        max-height: 500px;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        justify-content: center;
    }
}

/* Contact Section */
#contact {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

#contact h2 {
    text-align: center;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

.contact-info i {
    color: #2c5f2d;
    margin-right: 0.5rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.submit-btn {
    background-color: #2c5f2d;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1f4320;
}

/* Footer Styles */
.footer {
    background-color: #2c5f2d;
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #97c498;
}

.company-info .tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #97c498;
}

.company-info .description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #97c498;
    transform: translateY(-3px);
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: #97c498;
    padding-left: 5px;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info ul li i {
    width: 20px;
    color: #97c498;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 5%;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Updated Gallery Section */
#gallery {
    padding: 5rem 0;
    background: #f9f9f9;
    overflow: hidden;
}

#gallery h2 {
    text-align: center;
    color: #2c5f2d;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16/9;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c5f2d;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

.slider-btn:hover {
    background: #2c5f2d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.progress-bar {
    height: 100%;
    background: #2c5f2d;
    width: 0;
    transition: width 0.5s linear;
}

@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}


/* Why Choose Us Section Styles */
#why-choose-us {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #2c5f2d;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    color: #333;
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

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

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 95, 45, 0.4), transparent);
}

.achievement-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-20px);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 95, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    color: #2c5f2d;
    font-size: 1.5rem;
}

.achievement-text .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    line-height: 1;
}

.achievement-text .label {
    font-size: 0.9rem;
    color: #666;
}

.why-choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reason-item:hover, .reason-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    line-height: 1;
}

.reason-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-image {
        order: -1;
        max-height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .reason-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .achievement-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .reason-number {
        font-size: 2rem;
    }
}


/* Testimonials Section Styles */
#testimonials {
    padding: 5rem 0;
    background: #f9f9f9;
    overflow: hidden;
}

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

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    position: relative;
}

.quote-icon {
    color: #2c5f2d;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    font-style: normal;
}

@media (max-width: 1024px) {
    .testimonials-container {
        flex-wrap: wrap;
    }
    
    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* General Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 5%;
    }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
        text-align: center;
    }

    .hero-content {
        order: 2;
        padding: 0;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 2rem;
    }

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

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

    .cta-group {
        justify-content: center;
    }
}

/* Gallery Section Responsive */
@media (max-width: 768px) {
    .gallery-slider {
        padding: 0;
    }

    .gallery-container {
        border-radius: 0;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Services Section Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        height: 300px;
    }

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

    .about-stats {
        justify-content: center;
    }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: -1;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* General Text Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

/* Button Responsiveness */
@media (max-width: 576px) {
    .cta-button {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .cta-group {
        flex-direction: column;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .testimonial-card {
        margin: 0 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover,
    .testimonial-card:hover,
    .social-link:hover {
        transform: none;
    }

    .cta-button:hover {
        transform: none;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(45deg, #2c5f2d, #3a7c3b);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

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

.cta-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: #2c5f2d;
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

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

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