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

:root {
    /* Colors - Fresh & Modern Minimalist */
    --primary-green: #2D5016;
    --fresh-green: #8BC34A;
    --accent-yellow: #FFC107;
    --text-dark: #212121;
    --text-light: #666666;
    --background-white: #FFFFFF;
    --background-light: #F9F9F9;
    --border-color: #E0E0E0;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-logo a {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fresh-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-phone:hover {
    background-color: var(--fresh-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.nav-logo-phone {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: var(--transition-smooth);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.hero-trust {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition-smooth);
    animation: bounce 2s infinite;
}

.hero-scroll:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

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

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: var(--background-light);
}

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

.about-text {
    max-width: 600px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-intro {
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
}

.about-tagline {
    font-size: 1.1rem !important;
    color: var(--primary-green) !important;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--fresh-green);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.highlight-item {
    background-color: var(--background-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--fresh-green);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 50%;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.highlight-item:hover .highlight-icon {
    background-color: var(--fresh-green);
    color: white;
}

.highlight-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

    .about-highlights {
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .highlight-item {
        padding: 1.5rem 1rem;
        border-color: var(--fresh-green);
    }

    .highlight-icon {
        background-color: var(--fresh-green);
        color: white;
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    background-color: var(--background-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--fresh-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 50%;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--fresh-green);
    color: white;
    transform: scale(1.1);
}

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

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        border-color: var(--fresh-green);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background-color: var(--fresh-green);
        color: white;
    }
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background-color: var(--background-light);
}

.features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse .feature-content {
    direction: ltr;
}

.feature-reverse .feature-image {
    direction: ltr;
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--fresh-green);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

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

.feature-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-image {
    border-radius: 16px;
    overflow: hidden;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--background-light) 0%, #e8f5e9 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    opacity: 0.6;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background-color: var(--background-white);
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.gallery-tab {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background-color: var(--background-white);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.gallery-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

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

/* Gallery See More Button */
.gallery-see-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-see-more .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Gallery Loading/Empty States */
.gallery-loading,
.gallery-empty,
.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.gallery-loading::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.gallery-error {
    color: #dc3545;
}

.gallery-empty p,
.gallery-error p {
    margin: 0;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background-color: var(--background-light);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: none;
    border: none;
    color: var(--border-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem;
}

.testimonial-btn:hover,
.testimonial-btn.active {
    color: var(--fresh-green);
    transform: scale(1.2);
}

/* ===================================
   Quote Form Section
   =================================== */
.quote-form {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a3d0f 100%);
    color: white;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

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

.quote-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-feature-item svg {
    flex-shrink: 0;
}

.form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fresh-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

/* ===================================
   Contact Section
   =================================== */
.contact {
    background-color: var(--background-white);
}

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

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

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border-radius: 12px;
    color: var(--primary-green);
}

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

.contact-details strong {
    color: var(--primary-green);
    font-family: var(--font-primary);
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--fresh-green);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.contact-details span {
    color: var(--text-light);
}

.contact-map {
    height: 100%;
    min-height: 400px;
}

.cover-photo-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cover-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.cover-photo:hover {
    transform: scale(1.02);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-light) 0%, #e8f5e9 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    gap: 1rem;
}

.map-placeholder p {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.map-placeholder span {
    font-size: 1rem;
    opacity: 0.7;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-green);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

    .nav-logo-phone {
        display: block !important;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-green);
        margin-top: 0.15rem;
        letter-spacing: 0.5px;
    }

    .feature,
    .feature-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

    .contact-map {
        min-height: auto;
    }

    .cover-photo-container {
        min-height: auto;
        background-color: #4a8c2a;
        border-radius: 12px;
    }

    .cover-photo {
        object-fit: contain;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

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

@media (max-width: 640px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
    }

    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
        padding: 0 0.5rem;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4);
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow:
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 3px 12px rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        padding: var(--spacing-sm);
        padding-top: 5rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .hero-scroll {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust {
        gap: 2rem;
    }

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

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

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .feature-number {
        font-size: 3rem;
    }

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

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

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

/* Extra small devices */
@media (max-width: 400px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-content {
        padding: 1rem 0.75rem;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }
}

/* ===================================
   Before/After Comparison Slider
   =================================== */
.gallery-item-before-after {
    position: relative;
    aspect-ratio: 4/3;
}

.before-after-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image-wrapper,
.after-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image-wrapper {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image-wrapper {
    z-index: 1;
}

.before-image-wrapper img,
.after-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 5;
}

.before-label {
    left: 12px;
}

.after-label {
    right: 12px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-line {
    flex: 1;
    width: 3px;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.slider-button {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
    transition: transform 0.2s ease;
}

.slider-button:hover {
    transform: scale(1.1);
}

.overlay-badge {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* ===================================
   Lightbox / Modal Styles
   =================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    z-index: 1;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.lightbox-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.lightbox-controls {
    display: flex;
    gap: 8px;
}

.lightbox-controls-left {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 100;
}

.lightbox-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 24px;
}

.next-btn {
    right: 24px;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: calc(100% - 160px);
    max-height: 100%;
}

.lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-main-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: grab;
}

.lightbox-main-image:active {
    cursor: grabbing;
}

.lightbox-footer {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-counter {
    font-weight: 600;
    color: var(--accent-yellow);
}

.lightbox-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Lightbox Before/After Slider */
.lightbox-before-after {
    max-width: 100%;
    max-height: 75vh;
    transition: transform 0.2s ease;
}

.lightbox-before-after-slider {
    position: relative;
    width: 800px;
    max-width: 90vw;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.lightbox-before-wrapper,
.lightbox-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lightbox-before-wrapper {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.lightbox-after-wrapper {
    z-index: 1;
}

.lightbox-before-wrapper img,
.lightbox-after-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-image-label {
    position: absolute;
    bottom: 16px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 24px;
    z-index: 5;
}

.lightbox-image-label.before {
    left: 16px;
}

.lightbox-image-label.after {
    right: 16px;
}

.lightbox-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-slider-handle .slider-line {
    flex: 1;
    width: 4px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.lightbox-slider-handle .slider-button {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-header {
        padding: 12px 16px;
    }

    .lightbox-title {
        font-size: 1rem;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .prev-btn {
        left: 12px;
    }

    .next-btn {
        right: 12px;
    }

    .lightbox-image-container {
        max-width: calc(100% - 100px);
    }

    .lightbox-before-after-slider {
        width: 100%;
        max-width: 95vw;
    }

    .lightbox-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===================================
   Gallery Category Page Styles
   =================================== */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--background-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.gallery-page {
    padding-top: 120px;
    min-height: 100vh;
    background-color: var(--background-light);
}

/* Gallery tabs as links */
.gallery-tabs a.gallery-tab {
    text-decoration: none;
    display: inline-block;
}

/* Breadcrumb */
.gallery-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.gallery-breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb-separator {
    color: var(--border-color);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Gallery Page Header */
.gallery-page-header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--fresh-green);
    transform: translateX(-4px);
}

.back-link svg {
    transition: var(--transition-smooth);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.gallery-page-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gallery-page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Gallery Page Grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding-bottom: 4rem;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
    background: var(--background-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-page-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-page-item .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-page-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-page-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-page-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Empty State */
.gallery-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    color: var(--text-light);
    padding: 4rem 2rem;
}

.gallery-empty svg {
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.gallery-empty h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.gallery-empty p {
    margin-bottom: 2rem;
}

.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

/* Gallery Page Responsive */
@media (max-width: 768px) {
    .gallery-page {
        padding-top: 100px;
    }

    .gallery-page-title {
        font-size: 1.8rem;
    }

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

    .gallery-breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-page-header {
        margin-bottom: 2rem;
    }

    .gallery-page-title {
        font-size: 1.5rem;
    }

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

/* ===================================
   Toast Notification Styles
   =================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 16px;
    height: 16px;
}

.toast.success .toast-icon {
    background: rgba(139, 195, 74, 0.15);
    color: var(--fresh-green);
}

.toast.error .toast-icon {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.toast.warning .toast-icon {
    background: rgba(255, 193, 7, 0.15);
    color: var(--accent-yellow);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    background: var(--background-light);
    color: var(--text-dark);
}

.toast-close svg {
    width: 18px;
    height: 18px;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--fresh-green);
    border-radius: 0 0 12px 12px;
    transition: width linear;
}

.toast.error .toast-progress {
    background: #f44336;
}

.toast.warning .toast-progress {
    background: var(--accent-yellow);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .toast {
        max-width: 100%;
    }
}
