/* ============================================
   LAWN & GREENERY CARE SERVICES - STYLESHEET
   Theme: Natural • Realistic • Fresh • Professional
   ============================================ */


:root {
    --deep-forest-green: #1B3A2E;
    --light-leaf-green: #EAF4EA;
    --clean-white: #FFFFFF;
    --vibrant-grass-green: #3C7D3F;
    --earthy-brown: #A67C52;
    --lime-accent: #AED581;
    --text-dark: #1B3A2E;
    --text-light: #666;
    --shadow-soft: rgba(27, 58, 46, 0.1);
    --shadow-medium: rgba(27, 58, 46, 0.2);
    --shadow-strong: rgba(27, 58, 46, 0.3);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-leaf-green);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--deep-forest-green);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--vibrant-grass-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--lime-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


header {
    background-color: var(--deep-forest-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-medium);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clean-white);
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--lime-accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--clean-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--lime-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clean-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .menu-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: inline;
    font-size: 1.8rem;
    line-height: 1;
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--vibrant-grass-green) 0%, var(--deep-forest-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clean-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light-leaf-green), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    color: var(--clean-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--clean-white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--vibrant-grass-green);
    color: var(--clean-white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    background-color: var(--lime-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clean-white);
    border: 2px solid var(--clean-white);
}

.btn-secondary:hover {
    background-color: var(--clean-white);
    color: var(--deep-forest-green);
}

.btn-wide {
    width: 768px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--vibrant-grass-green), var(--lime-accent));
    margin: 1rem auto;
    border-radius: 2px;
}


.card {
    background-color: var(--clean-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}


.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }


.services-overview {
    background: linear-gradient(135deg, var(--light-leaf-green) 0%, var(--clean-white) 100%);
}

.service-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--vibrant-grass-green), var(--lime-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--vibrant-grass-green);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 58, 46, 0.9), transparent);
    color: var(--clean-white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-overlay h3,
.portfolio-overlay p {
    color: var(--clean-white) !important;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}


.testimonials {
    background-color: var(--deep-forest-green);
    color: var(--clean-white);
}

.testimonials .section-title {
    color: var(--clean-white);
}

.testimonials .section-title::after {
    background: linear-gradient(to right, var(--lime-accent), var(--vibrant-grass-green));
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--clean-white);
}

.testimonial-author {
    font-weight: 600;
    color: var(--lime-accent);
}


.why-choose {
    background-color: var(--clean-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--vibrant-grass-green);
    margin-bottom: 1rem;
}


.cta-banner {
    background: linear-gradient(135deg, var(--vibrant-grass-green) 0%, var(--deep-forest-green) 100%);
    color: var(--clean-white);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(174, 213, 129, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
    color: var(--clean-white);
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: var(--clean-white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}


footer {
    background-color: var(--deep-forest-green);
    color: var(--clean-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--lime-accent);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--clean-white);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--lime-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background-color: var(--clean-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-leaf-green);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-grass-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
}

.contact-info {
    background-color: var(--clean-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-leaf-green);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h4 {
    color: var(--vibrant-grass-green);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
}


.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.service-tile {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    margin-bottom: 2rem;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 58, 46, 0.95), rgba(27, 58, 46, 0.7));
    color: var(--clean-white);
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-tile-content h3,
.service-tile-content p,
.service-tile-content strong {
    color: var(--clean-white) !important;
}

.service-details p {
    color: var(--clean-white) !important;
}

.service-tile-content .eco-badge {
    color: var(--deep-forest-green) !important;
    background-color: var(--lime-accent) !important;
}

.service-tile:hover .service-tile-content {
    transform: translateY(-10px);
}

.service-tile:hover img {
    transform: scale(1.1);
}

.service-details {
    margin-top: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.service-tile:hover .service-details {
    opacity: 1;
    max-height: 200px;
}

.eco-badge {
    display: inline-block;
    background-color: var(--lime-accent);
    color: var(--deep-forest-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}


.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 58, 46, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--clean-white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--clean-white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}


.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    background-color: var(--clean-white);
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    max-width: 600px;
}



.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--vibrant-grass-green);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.error-illustration {
    font-size: 5rem;
    margin-bottom: 2rem;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--deep-forest-green);
    color: var(--clean-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px var(--shadow-medium);
    z-index: 1500;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.active {
    display: block;
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    color: var(--clean-white);
    flex: 1;
    min-width: 250px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--vibrant-grass-green);
    color: var(--clean-white);
}

.btn-cookie-accept:hover {
    background-color: var(--lime-accent);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--clean-white);
    border: 2px solid var(--clean-white);
}

.btn-cookie-decline:hover {
    background-color: var(--clean-white);
    color: var(--deep-forest-green);
}


.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--clean-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.legal-content h1 {
    margin-bottom: 2rem;
    color: var(--deep-forest-green);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--vibrant-grass-green);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-forest-green);
    padding-top: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--vibrant-grass-green);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--vibrant-grass-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--lime-accent);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--deep-forest-green);
}

.legal-section {
    padding: 5rem 2rem;
    background-color: var(--light-leaf-green);
    min-height: 60vh;
}




@media (max-width: 768px) {
    nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--deep-forest-green);
        flex-direction: column;
        width: 100%;
        padding: 1rem 2rem;
        margin: 0;
        box-shadow: 0 4px 10px var(--shadow-medium);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
        display: block;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .section-container {
        padding: 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        position: static;
        transform: none;
        margin: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        position: static;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 400px;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .service-tile {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 320px) {
    section {
        padding: 2rem 0.5rem;
    }
    
    .section-container {
        padding: 0 0.5rem;
    }
    
    .service-tile {
        aspect-ratio: 4/3;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .service-tile-content {
        padding: 1rem;
        position: relative;
        background: linear-gradient(to top, rgba(27, 58, 46, 0.98), rgba(27, 58, 46, 0.85));
    }
    
    .service-tile-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .service-tile-content p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .service-details {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .service-details p {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .service-tile-content .eco-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        margin-left: 0.25rem;
        display: inline-block;
    }
    
    .service-tile img {
        min-height: 200px;
        object-fit: cover;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    nav {
        padding: 0 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
}


.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }

