.homepage {
    width: 100%;
    min-height: 100vh;
}

#homepage-container {
    min-height: 100vh;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.08);
    filter: brightness(0.9);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0;
    width: calc(100% - 200px);
    margin-left: 150px;
}

.hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.hero-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #c9a961;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
    text-transform: uppercase;
}

.hero-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    text-transform: none;
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.98);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: white;
    color: #333;
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    font-weight: 600;
    padding: 18px 44px;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.hero-buttons .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b99b 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

/* Scroll animation base styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.services-section h2,
.services-intro {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services-section.animated h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.services-section.animated .services-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.services-section.animated .service-card {
    opacity: 1;
    transform: translateY(0);
}

.services-section.animated .service-card:nth-child(1) { transition-delay: 0.3s; }
.services-section.animated .service-card:nth-child(2) { transition-delay: 0.4s; }
.services-section.animated .service-card:nth-child(3) { transition-delay: 0.5s; }
.services-section.animated .service-card:nth-child(4) { transition-delay: 0.6s; }
.services-section.animated .service-card:nth-child(5) { transition-delay: 0.7s; }
.services-section.animated .service-card:nth-child(6) { transition-delay: 0.8s; }
.services-section.animated .service-card:nth-child(7) { transition-delay: 0.9s; }
.services-section.animated .service-card:nth-child(8) { transition-delay: 1.0s; }
.services-section.animated .service-card:nth-child(9) { transition-delay: 1.1s; }

/* Gallery section animations */
.gallery-section h2,
.gallery-intro,
.gallery-button-container,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gallery-section.animated h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.gallery-section.animated .gallery-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.gallery-section.animated .gallery-button-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.gallery-section.animated .gallery-item {
    opacity: 1;
    transform: translateY(0);
}

.gallery-section.animated .gallery-item:nth-child(1) { transition-delay: 0.4s; }
.gallery-section.animated .gallery-item:nth-child(2) { transition-delay: 0.5s; }
.gallery-section.animated .gallery-item:nth-child(3) { transition-delay: 0.6s; }
.gallery-section.animated .gallery-item:nth-child(4) { transition-delay: 0.7s; }
.gallery-section.animated .gallery-item:nth-child(5) { transition-delay: 0.8s; }
.gallery-section.animated .gallery-item:nth-child(6) { transition-delay: 0.9s; }

/* Process section animations */
.process-section h2,
.process-intro,
.process-feature,
.process-image-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.process-section.animated h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.process-section.animated .process-intro {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.process-section.animated .process-feature {
    opacity: 1;
    transform: translateY(0);
}

.process-section.animated .process-feature:nth-child(1) { transition-delay: 0.3s; }
.process-section.animated .process-feature:nth-child(2) { transition-delay: 0.4s; }

.process-section.animated .process-image-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Enhance section animations */
.enhance-section h2,
.enhance-text p,
.enhance-image-container,
.why-choose-us {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.enhance-section.animated h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.enhance-section.animated .enhance-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.enhance-section.animated .why-choose-us {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.enhance-section.animated .enhance-image-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* CTA section animations */
.cta-section h2,
.cta-section p {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section.animated h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.cta-section.animated p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.cta-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-section.animated .cta-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.services-section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.services-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.services-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    color: #3a3a3a;
    text-align: left;
    max-width: 650px;
    margin: 0 0 70px 0;
    line-height: 1.7;
    font-weight: 400;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 50%, #c9a961 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-image::after {
    opacity: 0.4;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #1a1a1a;
}

.service-card-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.service-card-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 400;
}

.service-card-content p:last-of-type {
    margin-bottom: auto;
}

.service-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #c9a961;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    text-transform: uppercase;
    position: relative;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #d4c5a9;
    letter-spacing: 1.2px;
}

.service-link:hover::after {
    transform: translateX(4px);
}

.gallery-section {
    position: relative;
    padding: 120px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-29.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.gallery-section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
    max-width: 650px;
    margin: 0 0 50px auto;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.gallery-item {
    display: block;
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 12px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 169, 97, 0.4);
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item:hover::after {
    border-color: rgba(201, 169, 97, 0.6);
}

.gallery-button-container {
    text-align: right;
    margin-bottom: 20px;
}

.gallery-button-container .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    font-weight: 600;
    padding: 16px 40px;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.gallery-button-container .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.process-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

.process-section-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.process-content-box {
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.process-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.process-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 2px;
}

.process-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.process-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-feature {
    position: relative;
    padding: 24px 0 24px 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.4s ease;
    margin-bottom: 8px;
}

.process-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    width: 4px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 0 2px 2px 0;
}

.process-feature:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-feature h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}

.process-feature p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    color: #3a3a3a;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    padding-right: 8px;
}

.process-image {
    width: 100%;
}

.process-image {
    position: relative;
    padding: 0;
}

.process-image-container {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 4px solid #c9a961;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.process-image:hover .process-image-container {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .process-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-image-container {
        height: 400px;
    }
}

.reviews-section {
    position: relative;
    padding: 120px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-9.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 0;
}

.reviews-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.review {
    display: none;
    color: white;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 50%, #c9a961 100%);
}

.review.active {
    display: block;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-reviews-link {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

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

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

.stars {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.stars svg {
    width: 32px;
    height: 32px;
    fill: #c9a961;
    transition: transform 0.3s ease;
}

.stars svg:hover {
    transform: scale(1.1);
}

.review-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.review-author {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    color: #c9a961;
    margin-bottom: 32px;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
    padding: 18px 36px;
    background: #c9a961;
    border: 2px solid #c9a961;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.google-reviews-link:hover {
    background: #d4c5a9;
    border-color: #d4c5a9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.google-reviews-link svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

.google-reviews-link:hover svg {
    transform: scale(1.1);
}

.enhance-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #d4c5a9 0%, #c9b99b 100%);
    position: relative;
}

.enhance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent);
}

.enhance-section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enhance-image {
    width: 100%;
}

.enhance-image-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 4px solid #c9a961;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhance-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.enhance-image:hover .enhance-image-container {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.enhance-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.enhance-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a961 0%, #d4c5a9 100%);
    border-radius: 2px;
}

.enhance-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.why-choose-us {
    margin-top: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.why-choose-us h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    color: #2a2a2a;
    line-height: 1.6;
    font-weight: 500;
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #c9a961;
    stroke: #c9a961;
}

@media (max-width: 968px) {
    .enhance-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enhance-image-container {
        height: 400px;
    }
}

.cta-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('../assets/Millers Landscaping Photos/Millers-Landscaping-5.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a1a;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cta-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background-color: #c9a961;
    color: #1a1a1a;
    border: 2px solid #c9a961;
    font-size: 17px;
    padding: 18px 44px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content .btn-primary:hover {
    background-color: #d4c5a9;
    border-color: #d4c5a9;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-phone-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    position: relative;
    display: inline-block;
}

.cta-phone-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a961;
    transition: width 0.3s ease;
}

.cta-phone-link:hover {
    color: #c9a961;
}

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

/* Mobile-first adjustments for homepage */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
        align-items: center;
        padding: 140px 16px 60px;
        background-color: #1a1a1a;
    }

    .hero-slide {
        background-size: cover;
        background-position: center;
        transform: none !important;
    }
    
    .hero-slide.active {
        transform: none !important;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: -0.01em;
        word-wrap: break-word;
        word-break: normal;
        hyphens: none;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .hero-tagline {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.03em;
        word-wrap: break-word;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 28px;
        max-width: 100%;
        padding: 0 8px;
        color: rgba(255, 255, 255, 0.95);
        word-wrap: break-word;
        word-break: normal;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        flex-wrap: wrap;
    }

    .btn {
        width: auto;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-buttons .btn-primary {
        padding: 16px 36px;
        font-size: 15px;
        width: auto;
        min-width: auto;
    }

    .services-section {
        padding: 60px 16px;
        opacity: 1 !important;
    }
    
    .services-section::before {
        display: none;
    }
    
    .services-section.animated,
    .services-section.animated h2,
    .services-section.animated .services-intro,
    .services-section.animated .service-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .services-section h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .services-intro {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 17px;
        margin-bottom: 50px;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .service-card-content {
        padding: 24px;
    }
    
    .service-card-image {
        height: 220px;
    }
    
    .service-card-image::after {
        display: none;
    }

    .gallery-section {
        padding: 60px 16px;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
        opacity: 1 !important;
    }
    
    .gallery-section::before {
        display: none;
    }
    
    .gallery-section.animated,
    .gallery-section.animated h2,
    .gallery-section.animated .gallery-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .gallery-section h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.02em;
        text-align: left;
        color: #ffffff;
    }

    .gallery-intro {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        margin-bottom: 32px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .gallery-item {
        height: 250px;
        border-radius: 10px;
    }
    
    .gallery-item::before,
    .gallery-item::after {
        display: none;
    }
    
    .gallery-button-container {
        text-align: left;
        margin-bottom: 16px;
    }

    .process-section {
        padding: 60px 16px;
        opacity: 1 !important;
    }
    
    .process-section::before {
        display: none;
    }
    
    .process-section.animated,
    .process-section.animated h2,
    .process-section.animated .process-feature {
        opacity: 1 !important;
        transform: none !important;
    }

    .process-section-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-text {
        gap: 0;
    }

    .process-text h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .process-intro {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 17px;
        margin-bottom: 0;
    }

    .process-content-box {
        padding: 16px;
        margin-bottom: 0;
    }

    .process-text .why-choose-us {
        display: none;
    }

    .process-feature {
        padding: 20px 0 20px 32px;
    }

    .process-feature::before {
        width: 3px;
        height: calc(100% - 40px);
        top: 20px;
    }

    .process-feature h3 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }

    .process-feature p {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        color: #3a3a3a;
    }

    .process-image-container {
        height: 280px;
        border-radius: 10px;
        border-width: 3px;
    }
    
    .process-image-container::after {
        display: none;
    }

    .reviews-section {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
        opacity: 1 !important;
    }
    
    .reviews-overlay {
        display: none;
    }
    
    .reviews-section.animated {
        opacity: 1 !important;
    }
    
    .review {
        padding: 32px 24px;
        border-radius: 16px;
        background: rgba(26, 26, 26, 0.95);
    }

    .stars {
        gap: 6px;
        margin-bottom: 24px;
    }

    .stars svg {
        width: 28px;
        height: 28px;
    }

    .review-text {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 18px;
        font-style: normal;
        color: rgba(255, 255, 255, 0.95);
    }

    .review-author {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 15px;
        margin-bottom: 24px;
        color: #c9a961;
    }

    .google-reviews-link {
        font-size: 14px;
        padding: 16px 28px;
        margin-top: 32px;
    }

    .google-reviews-link svg {
        width: 28px;
        height: 28px;
    }

    .enhance-section {
        padding: 60px 16px;
        opacity: 1 !important;
    }
    
    .enhance-section::before {
        display: none;
    }
    
    .enhance-section.animated,
    .enhance-section.animated h2 {
        opacity: 1 !important;
        transform: none !important;
    }

    .enhance-section-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .enhance-text h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.01em;
        padding-bottom: 16px;
    }
    
    .enhance-text h2::after {
        width: 50px;
        height: 2px;
    }

    .enhance-text p {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        color: #2a2a2a;
    }

    .why-choose-us {
        margin-top: 32px;
        padding: 24px;
    }

    .why-choose-us h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .why-choose-list li {
        font-size: 16px;
        gap: 12px;
    }

    .checkmark-icon {
        width: 20px;
        height: 20px;
    }

    .enhance-image-container {
        height: 260px;
        border-width: 3px;
        border-radius: 10px;
    }
    
    .enhance-image-container::after {
        display: none;
    }

    .cta-section {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
    }

    .cta-section {
        padding: 60px 16px;
        min-height: 0;
        background-attachment: scroll;
        background-image: none;
        background-color: #1a1a1a;
        opacity: 1 !important;
    }
    
    .cta-overlay {
        display: none;
    }
    
    .cta-section.animated,
    .cta-section.animated h2,
    .cta-section.animated p,
    .cta-section.animated .cta-buttons {
        opacity: 1 !important;
        transform: none !important;
    }

    .cta-content h2 {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        color: #ffffff;
    }

    .cta-content p {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-size: 16px;
        margin-bottom: 32px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.9);
    }

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

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

    .cta-content .btn-primary {
        font-size: 15px;
        padding: 16px 32px;
    }

    .cta-phone-link {
        font-size: 18px;
    }
}

