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

:root {
    --primary-green: #1a5f3f;
    --primary-green-dark: #134a30;
    --primary-green-light: #2d7a4f;
    --accent-green: #3da76a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --border-color: #dee2e6;
    --success: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
    gap: 0.6rem;
}

.logo-icon {
    background-color: var(--primary-green);
    color: var(--white);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.logo-text {
    color: var(--primary-green);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
    background-color: var(--off-white);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-green);
    background-color: var(--off-white);
}

.nav-link-cta {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.nav-link-cta:hover {
    background-color: var(--primary-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

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

.nav-dropdown .nav-link::after {
    content: '▾';
    font-size: 0.75em;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

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

.dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--off-white);
    color: var(--primary-green);
    padding-left: 1.5rem;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.92) 0%, rgba(45, 122, 79, 0.92) 100%),
                url('https://images.pexels.com/photos/7688336/pexels-photo-7688336.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-green-dark);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

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

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

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

.why-us-list {
    list-style: none;
    margin-bottom: 2rem;
}

.why-us-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    background-color: var(--primary-green);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.why-us-item div {
    line-height: 1.7;
}

.why-us-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    border-radius: 12px;
}

.why-us-form {
    display: flex;
    align-items: center;
}

.why-us-form .contact-form {
    width: 100%;
    max-width: none;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
}

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

/* Footer */
.footer {
    background-color: var(--primary-green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-text {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.92) 0%, rgba(45, 122, 79, 0.92) 100%),
                url('https://images.pexels.com/photos/6863332/pexels-photo-6863332.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.page-content {
    padding: 5rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ol li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.contact-info {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

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

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

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.contact-info-text h3 {
    font-size: 1.125rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-green);
    cursor: pointer;
    position: relative;
    padding-right: 3rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 3rem;
    padding-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer p + ul,
.faq-answer p + ol {
    padding-top: 0;
}

/* Contact Page Specific Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1rem;
        gap: 0.5rem;
        max-width: 60%;
        align-items: flex-start;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .logo-text {
        font-size: 0.85rem;
        line-height: 1.2;
        white-space: normal;
        word-break: break-word;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        z-index: 1000;
        animation: slideDown 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    body.menu-open {
        overflow: hidden;
    }

    .main-nav a {
        width: 100%;
        text-align: left !important;
        padding: 0.55rem 1rem;
        border-bottom: 1px solid var(--off-white);
        -webkit-tap-highlight-color: rgba(46, 125, 50, 0.1);
        touch-action: manipulation;
        border-radius: 0;
        transform: none !important;
        display: block;
        font-size: 0.92rem;
        line-height: 1.4;
        justify-content: flex-start;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.55rem 1rem;
        border-bottom: 1px solid var(--off-white);
        -webkit-tap-highlight-color: rgba(46, 125, 50, 0.1);
        touch-action: manipulation;
        border-radius: 0;
        transform: none;
        display: block;
        font-size: 0.92rem;
        line-height: 1.4;
    }

    .nav-link-cta {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .nav-dropdown .nav-link {
        display: block;
        position: relative;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(46, 125, 50, 0.1);
        width: 100%;
        padding: 0.55rem 1rem;
        text-align: left;
    }

    .nav-dropdown .nav-link::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-dropdown .dropdown-content {
        position: static !important;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background-color: #dce6dc;
        border-radius: 0;
        margin: 0;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }

    .nav-dropdown.active .dropdown-content {
        max-height: 600px;
        padding: 0.5rem 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-dropdown .dropdown-content a {
        padding: 0.85rem 1rem 0.85rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        color: #2d2d2d !important;
        background-color: transparent;
        line-height: 1.4;
        text-decoration: none;
        font-weight: 400;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-dropdown .dropdown-content a:hover {
        background-color: rgba(46, 125, 50, 0.1);
    }

    .nav-dropdown .dropdown-content a:last-child {
        border-bottom: none;
    }

    .nav-dropdown.active .nav-link::after {
        transform: translateY(-50%) rotate(-180deg);
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

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

    .hero-stats {
        gap: 2rem;
    }

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

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

    .why-us-form .contact-form {
        padding: 2rem 1.5rem;
    }

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

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

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

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

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

    .page-header {
        padding: 3rem 0;
    }

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

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

    .page-content {
        padding: 3rem 0;
    }

    .content-section {
        margin-bottom: 3rem;
    }

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

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

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #map {
        height: 350px !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

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

    .cta-text {
        font-size: 1rem;
    }
}

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

    .header-content {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 0.9rem;
        gap: 0.4rem;
        max-width: 50%;
        align-items: flex-start;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .logo-text {
        font-size: 0.75rem;
        line-height: 1.15;
        white-space: normal;
        word-break: break-word;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .main-nav {
        top: 54px;
    }

    .nav-link {
        padding: 0.45rem 1rem;
        font-size: 0.88rem;
    }

    .nav-dropdown .nav-link {
        padding: 0.45rem 1rem;
    }

    .nav-dropdown .dropdown-content a {
        font-size: 0.83rem;
        padding: 0.65rem 1rem;
        min-height: 38px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .stat-label {
        font-size: 0.875rem;
    }

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

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

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    #map {
        height: 300px !important;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .why-us-form .contact-form {
        padding: 1.5rem 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .process-step {
        padding: 1.5rem 0.75rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .why-us-item {
        font-size: 0.95rem;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-text {
        font-size: 0.95rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-link,
    .faq-question {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .form-group button {
        min-height: 44px;
    }

    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: slideUp 0.3s ease;
    position: relative;
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.success-modal-title {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-modal-text {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-modal-close {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.success-modal-close:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
}

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

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
