/* Global Styles */
:root {
    --primary-color: #024731;
    --secondary-color: #357c37;
    --accent-color: #8bc34a;
    --dark-color: #1b5e20;
    --light-color: #f8f8f2;
    --gradient-end: #f3f3e7;
    --gradient-dark: #ebebdf;
    --text-color: #333;
    --white: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--gradient-end) 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* Removed padding-top so hero is flush at the top */
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-title {
    color: var(--secondary-color) !important;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-color);
}

/* Navigation */
nav {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem 0;
}

nav.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

nav.nav-top {
    background-color: transparent;
}

nav.nav-top .nav-links a {
    color: #fff !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

nav.nav-top .nav-links a:hover {
    color: var(--accent-color) !important;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}



.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nav-logo.show {
    opacity: 1;
}

.navbar-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.navbar-logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    nav .container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    .nav-logo {
        order: 3;
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-logo-img {
        height: 45px;
        max-width: 125px;
    }
    
    .nav-links {
        order: 2;
        margin-left: 0;
    }
    
    .nav-links li {
        margin-left: 1rem;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    nav .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .nav-logo {
        order: 2;
        margin-top: 0.5rem;
    }
    
    .navbar-logo-img {
        height: 40px;
        max-width: 100px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: visible;
}

/* Floating particles animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero content animations */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s ease-out 0.3s forwards;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 300px;
    width: auto;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.4s forwards;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.hero-logo-text {
    font-size: 3.5rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 0.8s forwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Small hero badge to note commercial-only service */
.hero-note {
    display: block; /* force line break under CTA */
    width: fit-content;
    margin: 0.6rem auto 0; /* center under button */
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(3px);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 1s forwards;
}

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

/* Enhanced CTA button */
.cta-button {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out 1s forwards;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

/* Center CTA within hero content and stack note below */
.hero-content {
    text-align: center;
}

.hero .cta-button {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Parallax scroll effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    transform: translateZ(0);
    will-change: transform;
    z-index: -2;
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .particle {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}


/* Process Highlight Section (WM.com style) */
.process-highlight {
    background: none;
    padding: 0;
    margin: 0 0 4rem 0;
}
.process-bg {
    position: relative;
    background: linear-gradient(110deg, var(--light-color) 60%, var(--gradient-end) 60%);
    min-height: 220px;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(44,62,80,0.08);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3.5rem 0 7rem 0;
    overflow: visible;
}

.process-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.process-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    width: 100%;
    max-width: 960px;
    z-index: 3;
    position: absolute;
    top: 60px;
    left: 60px;
    transform: translateY(40px) translateX(30px);
    gap: 2.5rem;
}
@media (max-width: 1100px) {
    .process-card {
        left: 3vw;
        max-width: 94vw;
        transform: translateY(30px) translateX(0);
    }
}
@media (max-width: 900px) {
    .process-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 2rem 1rem 1.5rem 1rem;
        margin-top: 0;
        left: 0;
        top: 30px;
        transform: translateY(15px) translateX(0);
        max-width: 98vw;
    }
    .process-content {
        width: 98%;
    }
}

.process-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.process-headline {
    margin-bottom: 1.5rem;
    z-index: 2;
}
.process-headline h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.process-headline p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0;
}
.process-card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    margin-top: -70px;
    width: 100%;
    max-width: 960px;
    z-index: 3;
    position: relative;
    gap: 2.5rem;
}

@media (max-width: 700px) {
  .process-card {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .process-step {
    align-items: flex-start !important;
    text-align: left !important;
    margin-left: 0.5rem;
    margin-right: 0;
  }
  .process-step:nth-child(even) {
    align-items: flex-end !important;
    text-align: right !important;
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .process-step .process-icon {
    margin-left: 0;
    margin-right: 0;
  }
}


.grecaptcha-badge {
  z-index: 9999 !important;
  position: fixed !important;
}

.process-step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s, transform 0.3s;
    animation: none;
}
.process-step.bounce-in {
    opacity: 1;
    transform: none;
    animation: bounce-in 0.8s cubic-bezier(.25,1.5,.5,1.1) both;
    animation-delay: var(--bounce-delay, 0ms);
}
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-20px) scale(1.05);
    }
    80% {
        transform: translateY(8px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}
.process-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    background: rgba(255,255,255,0.56);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px 0 rgba(44,62,80,0.10), 0 1.5px 0 rgba(139,195,74,0.10) inset;
    border: 1.5px solid rgba(44,62,80,0.10);
    backdrop-filter: blur(3px);
    transition: box-shadow 0.25s, border 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}
.process-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 40px;
    height: 18px;
    background: linear-gradient(90deg, rgba(139,195,74,0.13) 0%, rgba(255,255,255,0.12) 100%);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.7;
    pointer-events: none;
}
.process-icon:hover {
    background: rgba(255,255,255,0.82);
    box-shadow: 0 8px 32px 0 rgba(44,62,80,0.15), 0 2px 0 rgba(139,195,74,0.13) inset;
    border: 1.5px solid var(--accent-color);
}

.process-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}
.process-step-desc {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 900px) {
    .process-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 2rem 1rem 1.5rem 1rem;
        margin-top: -40px;
    }
    .process-step {
        padding: 0.5rem 0;
    }
    .process-content {
        width: 98%;
    }
}


/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem auto 0 auto;
    max-width: 900px;
    width: 100%;

}

.about {
    background: linear-gradient(60deg, var(--gradient-end) 65%, var(--light-color) 35%);
    min-height: 500px;
    padding: 6rem 5vw;
    position: relative;
    overflow: hidden;
}


.about-text {
    text-align: left;
}

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

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.staff-headshots {
    margin-top: 3.75rem; /* increased spacing */
    text-align: center;
}

.staff-headshots h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
}

.staff-headshots-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.staff-headshot {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(44,62,80,0.08);
}

.staff-headshot:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 10px 28px rgba(44,62,80,0.14);
}

.staff-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 3px solid var(--primary-color);
    background: #fff;
}

.staff-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.staff-role {
    color: #666;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

@media (max-width: 700px) {
    .staff-headshots-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .staff-headshot {
        max-width: 95vw;
    }
}

/* Fancy divider between About text/image and headshots */
.fancy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 2.25rem auto 2rem auto;
    max-width: 900px;
}
.fancy-divider .divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(2, 71, 49, 0.25), transparent);
}
.fancy-divider .divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}
.fancy-divider .divider-icon i {
    font-size: 1.0rem;
}

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

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    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, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.1) 0%, 
        rgba(53, 124, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px); /* remove scale to avoid subpixel blur */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(139, 195, 74, 0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.2) 0%, 
        rgba(53, 124, 55, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-top: 1rem;
}

.service-card p a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}


/* Contact Section */
.contact {
    background: var(--light-color);
    min-height: 500px;
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}


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

.contact-info {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 100%;
}

/* New styles for the restructured contact links */
.contact-link a {
    text-decoration: none !important;
}

/* Contact form error bubble */
.form-error-box {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    transform: translateX(-50%) scale(0.97);
    background: #f44336;
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(44,62,80,0.08);
    padding: 0.85rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
    font-size: 1rem;
    z-index: 100;
    min-width: 180px;
    max-width: 95%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    animation: error-bounce-in 0.4s cubic-bezier(.25,1.5,.5,1.1);
    display: block;
    margin: 0 auto;
    word-break: break-word;
}

/* Contact form success bubble */
.form-success-box {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    transform: translateX(-50%) scale(0.97);
    background: #357c37;
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(44,62,80,0.08);
    padding: 0.85rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
    font-size: 1rem;
    z-index: 100;
    min-width: 180px;
    max-width: 95%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    animation: error-bounce-in 0.4s cubic-bezier(.25,1.5,.5,1.1);
    display: block;
    margin: 0 auto;
    word-break: break-word;
}

@media (max-width: 700px) {
    .form-success-box {
        position: static;
        left: unset;
        top: unset;
        transform: none;
        margin: 0.5rem auto 0.5rem auto;
        max-width: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
        box-sizing: border-box;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-success-box.show {
        transform: none;
    }
}
.form-success-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}
.form-success-box::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #357c37 transparent transparent transparent;
    width: 0;
    height: 0;
}

@media (max-width: 700px) {
    .form-error-box {
        position: static;
        left: unset;
        top: unset;
        transform: none;
        margin: 0.5rem auto 0.5rem auto;
        max-width: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
        box-sizing: border-box;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-error-box.show {
        transform: none;
    }
}

.form-error-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}
.form-error-box::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #f44336 transparent transparent transparent;
    width: 0;
    height: 0;
}
@keyframes error-bounce-in {
    0% { opacity: 0; transform: translateX(-50%) scale(0.7); }
    60% { opacity: 1; transform: translateX(-50%) scale(1.08); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Additional mobile optimization for very small screens */
@media (max-width: 480px) {
    .form-success-box,
    .form-error-box {
        max-width: calc(100vw - 1rem);
        width: calc(100vw - 1rem);
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        margin: 0.5rem 0.5rem;
    }
}

/* Ensure contact form wrapper is positioned for absolute error bubble */
.contact-form {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(44, 62, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem 2rem 2rem;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    z-index: 2;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form, .contact-info {
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
    }
}

.contact-info {
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
    margin: 0;
    min-width: 0;
}

@media (max-width: 700px) {
    .contact-form {
        padding: 1.2rem 0.7rem 1.5rem 0.7rem;
        max-width: 98vw;
    }
}

.contact-form h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.08rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="url"]::placeholder,
.form-group input[type="number"]::placeholder,
.form-group input[type="password"]::placeholder,
.form-group textarea::placeholder {
    color: rgba(51, 51, 51, 0.7);
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="url"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    border: 1.5px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(139,195,74,0.10);
    background: #fff;
}
.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="url"]:hover,
.form-group input[type="number"]:hover,
.form-group input[type="password"]:hover,
.form-group textarea:hover {
    border: 1.5px solid var(--secondary-color);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox row styling for commercial-only confirmation */
.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-color);
}
.contact-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    accent-color: var(--secondary-color);
    border-radius: 4px;
}

/* Ensure checkbox group aligns well on small screens */
@media (max-width: 700px) {
  .contact-form .form-group label { align-items: flex-start; }
}

.submit-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 14px 0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    margin-top: 0.6rem;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}
.submit-btn:hover, .submit-btn:focus {
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 6px 24px rgba(44,62,80,0.16);
    transform: translateY(-2px) scale(1.02);
}



.contact-link a.contact-text {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-link a.contact-text:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.contact-link a.contact-icon-container {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-link:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.contact-link:hover .contact-icon i {
    transform: scale(1.1);
    text-decoration: none;
}

.contact-link p {
    margin: 0;
    line-height: 1.5;
    font-size: 1.1rem;
    text-align: left;
}

/* Ensure the address text aligns properly */
.contact-item:last-child p {
    line-height: 1.6;
}

/* Specific icon colors */
.contact-phone .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E); /* Phone - WhatsApp green */
}

.contact-email .contact-icon {
    background: linear-gradient(135deg, #EA4335, #D14836); /* Email - Gmail red */
}

.contact-address .contact-icon {
    background: linear-gradient(135deg, #4285F4, #1A73E8); /* Location - Google Maps blue */
}

.contact-address .contact-link {
    align-items: flex-start;
}

.contact-address .contact-link p {
    margin-top: 0.5rem;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link .contact-icon {
    text-decoration: none !important;
}

.contact-link:hover .contact-icon {
    text-decoration: none !important;
}

.contact-info a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

#map {
    height: 300px;
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info p strong {
    margin-right: 10px;
    min-width: 80px;
    display: inline-block;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--dark-color);
}

.recycling-info-section {
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.03) 0%, 
        rgba(53, 124, 55, 0.06) 50%, 
        rgba(139, 195, 74, 0.02) 100%);
    padding: 4rem 0 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.recycling-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 195, 74, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(139, 195, 74, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 195, 74, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: gentleFloat 25s ease-in-out infinite;
}

.recycling-info-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 3px,
            rgba(139, 195, 74, 0.015) 3px,
            rgba(139, 195, 74, 0.015) 6px
        );
    pointer-events: none;
    z-index: -1;
    animation: patternDrift 40s linear infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(0.5deg); }
    66% { transform: translateY(-4px) rotate(-0.3deg); }
}

@keyframes patternDrift {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-10px) translateY(-5px); }
}

.recycling-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    gap: 4.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .recycling-columns {
        gap: 2rem;
    }
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    margin-top: 0.7rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

.why-recycle-card, .recycling-tips-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(44, 62, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(139, 195, 74, 0.05);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(139, 195, 74, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Improve text clarity specifically in the Recycling Tips card */
.recycling-tips-card {
    backdrop-filter: none !important; /* avoid potential subpixel blurring of text on some systems */
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
    border: 1px solid rgba(139, 195, 74, 0.15) !important;
}

.why-recycle-card::before,
.recycling-tips-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.08) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(139, 195, 74, 0.03) 100%);
    border-radius: 20px;
    z-index: -1;
}

.why-recycle-card:hover,
.recycling-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(44, 62, 80, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(139, 195, 74, 0.2);
    border-color: rgba(139, 195, 74, 0.4);
}

.recycling-tips-animated {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 1rem; /* avoid fractional sizes that can soften text on some displays */
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0.5rem;
    position: relative;
    overflow: visible;
    width: 100%;
    min-height: 0;
}
.recycling-tips-animated, .recycling-tips-animated * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.tip-text {
    display: inline-block;
    opacity: 1;
    transform: none; /* ensure no transform remains after animation for crisp text */
    transition: opacity 0.45s ease, transform 0.45s ease;
    word-break: break-word;
    max-width: 100%;
    white-space: normal;
}
.recycling-tips-animated i {
    color: var(--accent-color);
    font-size: 1rem; /* align to whole px scale to reduce blur */
    flex-shrink: 0;
}
.tip-text {
    display: inline-block;
    opacity: 1;
    transform: none; /* ensure resting state has no transform for crisp text */
    transition: opacity 0.6s cubic-bezier(.4,1.3,.5,1), transform 0.6s cubic-bezier(.4,1.3,.5,1);
    will-change: opacity, transform;
}
.tip-text.tip-exit {
    opacity: 0;
    transform: translateY(-20px);
}
.tip-text.tip-enter {
    opacity: 0;
    transform: translateY(20px);
    animation: tipEnter 0.45s ease-out forwards;
}
@keyframes tipEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.recycling-column h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.recycling-facts,
.recycling-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recycling-facts li,
.recycling-tips li {
    margin-bottom: 1rem;
    font-size: 1.07rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-color);
}

.recycling-facts i,
.recycling-tips i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    margin-top: 0.7rem;
}

.material-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 12px;
    box-shadow: 
        0 4px 16px rgba(44, 62, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(139, 195, 74, 0.05);
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid rgba(139, 195, 74, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.material-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 195, 74, 0.08) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(139, 195, 74, 0.03) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.material-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(44, 62, 80, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(139, 195, 74, 0.2);
    border-color: rgba(139, 195, 74, 0.3);
}

.material-item:hover::before {
    opacity: 1;
}

.material-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.material-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.recycling-cta {
    display: flex;
    gap: 1.3rem;
    justify-content: center;
    margin: 2.5rem 0 0 0;
}

.cta-button.secondary {
    background: var(--secondary-color);
    color: #fff;
}

.timeline-animation-bg {
    width: 100%;
    min-height: 180px;
    margin: 3.5rem auto 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .recycling-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-recycle-card, .recycling-tips-card {
        margin-bottom: 1.5rem;
    }
    .timeline-animation-bg {
        min-height: 120px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
}

footer .mobile-only {
    display: none;
    margin-top: 0.5rem;
}

footer .mobile-only a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

footer .mobile-only a:hover {
    text-decoration: underline;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(20px)) {
    .service-card,
    .contact-info,
    .contact-form,
    .why-recycle-card,
    .recycling-tips-card,
    .material-item {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .form-group input,
    .form-group textarea,
    .submit-btn {
        background: rgba(255, 255, 255, 0.9);
    }
    
    .service-icon {
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    footer .mobile-only {
        display: block;
    }
}

/* Mobile Landscape Orientation Fix */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0;
        overflow: visible;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-logo-img {
        height: 200px;
        max-width: 300px;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-note {
        margin-top: 0.4rem;
        padding: 4px 10px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.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; }
