/* ========================================
   GLOBAL STYLES
   assets/css/main.css
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #0c0032;
    font-size: 16px;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Berkshire Swash', serif;
    font-weight: 700;
}

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

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

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

@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes fall {
    0% {
        transform: translateY(0vh) translateX(0vw);
        opacity: 0.8;
    }
    100% {
        transform: translateY(105vh) translateX(2vw);
        opacity: 0.3;
    }
}

@keyframes slideColorbar {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(129, 192, 99, 0.8); }
    to { text-shadow: 0 0 40px rgba(129, 192, 99, 1), 0 0 50px rgba(129, 192, 99, 0.8); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes shimmerButton {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes snowfall {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 1000px, -100px 1000px; }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-animation {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-animation.animated {
    animation: fadeInUp 0.6s forwards;
}

/* Snow Effect */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

/* ========================================
   HEADER STYLES
======================================== */
.header {     
    background: rgba(255, 255, 255, 0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    transition: transform 0.3s ease;
}

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

.logo img {
    height: 90px;
    width: auto;
}

.logo-2 {display: none;}
header.scrolled .logo-1 { display: none;}
header.scrolled .logo-2 { display: block; }

.nav {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #62a340;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

header.scrolled nav a {
    color: #333333;
}

.nav a:hover {
    color: #62a340;
}

.colorbar {
    background: linear-gradient(to right, #961c03, #961c03 10%, #fffff2 10%, #fffff2 20%, #961c03 20%, #961c03 30%, #fffff2 30%, #fffff2 40%, #961c03 40%, #961c03 50%, #fffff2 50%, #fffff2 60%, #961c03 60%, #961c03 70%, #fffff2 70%, #fffff2 80%, #961c03 80%, #961c03 90%, #fffff2 90%, #fffff2 100%);
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: slideColorbar 10s linear infinite;
}

.cta-button {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(98, 163, 64, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 163, 64, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

header.scrolled .mobile-menu-toggle span {
    background: #333;
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #961c03, #d80202);
    padding: 0;
    z-index: 999;
}

.mobile-bottom-menu-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    background: transparent;
    position: relative;
}

.mobile-menu-item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    background: linear-gradient(135deg, #961c03, #d80202);
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
}

.mobile-menu-item.featured {
    flex: 1.3;
    background: linear-gradient(135deg, #62a340, #4d8232);
    min-height: 75px;
    margin-bottom: 0;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: 0 -5px 25px rgba(98, 163, 64, 0.4);
    z-index: 2;
    transform: translateY(-8px);
    position: relative;
}

.mobile-menu-item.featured::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #62a340, #4d8232);
    z-index: -1;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    opacity: 0.9;
    transform: scale(0.98);
}

.mobile-menu-item.featured:hover,
.mobile-menu-item.featured:active {
    transform: translateY(-8px) scale(0.98);
}

.mobile-menu-item svg {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    fill: currentColor;
}

.mobile-menu-item.featured svg {
    width: 28px;
    height: 28px;
}

.mobile-menu-item .label {
    font-size: 11px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.mobile-menu-item.featured .label {
    font-size: 12px;
    font-weight: 700;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('/assets/images/hero-bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 260px 0 160px;
    margin-top: 0px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* ========================================
   BUTTONS
======================================== */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(98, 163, 64, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(98, 163, 64, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

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

/* ========================================
   SECTIONS
======================================== */
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 24px;
    color: #62a340;
    margin-top: 10px;
    animation: sparkle 2s infinite;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 70px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

/* Services */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    padding: 0 30px 30px;
    font-size: 15px;
}

/* Projects Carousel */
.projects {
    padding: 100px 0;
    background: white;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 16/9;
    background: #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    margin: 100px 0;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/assets/images/cta-bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 163, 64, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

.cta-banner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-ticker {
    display: inline-block;
    background: linear-gradient(135deg, #d80202, #ff0000);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: shake 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(216, 2, 2, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-banner h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: white;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.cta-banner .highlight {
    color: #81c063;
    text-shadow: 0 0 30px rgba(129, 192, 99, 0.8);
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Footer */
.footer {
    background: linear-gradient(rgba(150, 28, 3, 0.95), rgba(150, 28, 3, 0.85)), url('/assets/images/snow-flakes.png');
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #81c063;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #81c063;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: 50%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('/assets/images/tab-hero-bg.avif');
        background-attachment: scroll;
        padding: 220px 0 140px;
    }
    
    .cta-section {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/assets/images/tab-hero-bg.avif');
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-bottom-menu {
        display: block;
    }
    
    body {
        padding-bottom: 65px;
    }
    
    .header .cta-button {
        display: none;
    }
    
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('/assets/images/mob-hero-bg.avif');
        padding: 200px 0 120px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 17px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        text-align: center;
    }
    
    .services,
    .projects {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .cta-section {
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/assets/images/mob-hero-bg.avif');
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .cta-banner {
        padding: 60px 30px;
    }
    
    .cta-banner h2 {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .map-container {
        height: 200px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .cta-banner h2 {
        font-size: 32px;
    }
}

@media (max-width: 360px) {
    .mobile-menu-item .label {
        font-size: 10px;
    }
    
    .mobile-menu-item.featured .label {
        font-size: 11px;
    }
    
    .mobile-menu-item svg {
        width: 22px;
        height: 22px;
    }
    
    .mobile-menu-item.featured svg {
        width: 26px;
        height: 26px;
    }
}

/* Additional Carousel Styles */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 100;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(98, 163, 64, 0.4);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #62a340, #4d8232);
    transform: scale(1.3);
    box-shadow: 0 2px 10px rgba(98, 163, 64, 0.4);
}

.all-projects-card {
    background: linear-gradient(135deg, #62a340, #4d8232);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.all-projects-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.all-projects-card p {
    font-size: 16px;
    margin-bottom: 20px;
    z-index: 1;
    font-weight: 300;
}

.all-projects-card .arrow {
    font-size: 32px;
    z-index: 1;
    animation: slideRight 1.5s infinite;
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.faq-question {
    padding: 25px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-right: 50px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #62a340;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    display: none;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* CTA Additional Styles */
.cta-subheadline {
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    opacity: 0.9;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    fill: #81c063;
}

/* ========================================
   WHY US SECTION
======================================== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.why-us-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

.why-us-image:hover {
    transform: scale(1.02);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.features-list {
    display: grid;
    gap: 35px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-number {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(98, 163, 64, 0.3);
}

.feature-content h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   REVIEWS SECTION
======================================== */
.reviews {
    padding: 100px 0;
    background: white;
}

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

.review-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 3px;
}

.review-text {
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
    font-size: 16px;
}

.reviewer {
    font-weight: 600;
    color: #333;
    font-size: 17px;
}

.location {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Additional Elements */
.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-main-button {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(98, 163, 64, 0.5);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmerButton 3s infinite;
}

.cta-main-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(98, 163, 64, 0.6);
}

.cta-price {
    display: inline-block;
    margin-left: 10px;
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 16px;
}

.cta-secondary {
    color: white;
    font-size: 16px;
    text-decoration: underline;
    opacity: 0.9;
    transition: all 0.3s;
}

.cta-secondary:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    font-size: 14px;
    opacity: 0.9;
}

.customer-avatars {
    display: flex;
    margin-right: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    background: #ddd;
}

.avatar:first-child {
    margin-left: 0;
}

.spots-counter {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 30px;
    display: inline-block;
}

.spots-number {
    color: #ff4444;
    font-size: 24px;
    font-weight: bold;
    animation: blink 1s ease-in-out infinite;
}

/* Responsive adjustments for Why Us */
@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .why-us,
    .reviews,
    .faq {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .review-card {
        padding: 25px;
    }
}

/* ========================================
   GALLERY STYLES
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3/2;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.view-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.view-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   LIGHTBOX STYLES
======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #62a340;
    background: rgba(0,0,0,0.8);
}

#lightbox-caption {
    color: #ccc;
    text-align: center;
    padding: 15px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 28px;
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(98, 163, 64, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    #lightbox-caption {
        font-size: 12px;
        padding: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ========================================
   SEO PAGES SERVICES
======================================== */

/* assets/css/services.css - CSS dedicado para páginas de serviços */

/* Service Hero Sections */
.service-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    margin-top: 70px;
}

.service-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.service-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero h1 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.service-hero p {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-features span {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Specific Hero Backgrounds */
.residential-hero {
    background-image: url('/assets/images/residential-hero.jpg');
}

.commercial-hero {
    background-image: url('/assets/images/commercial-hero.jpg');
}

.municipal-hero {
    background-image: url('/assets/images/municipal-hero.jpg');
}

.permanent-hero {
    background-image: url('/assets/images/permanent-hero.jpg');
}

/* Service Introduction */
.service-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #333;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.service-benefits {
    display: grid;
    gap: 30px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: start;
}

.benefit-icon {
    font-size: 32px;
    line-height: 1;
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.benefit p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-image img {
    width: 100%;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(98,163,64,0.4);
}

/* Service Options */
.service-options {
    padding: 80px 0;
}

.service-options h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    color: #333;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.option-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.option-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #333;
}

.option-card p {
    margin: 0 20px 20px;
    color: #666;
    font-size: 15px;
}

.price-from {
    display: block;
    margin: 0 20px 20px;
    color: #62a340;
    font-weight: 600;
    font-size: 18px;
}

/* Process Timeline */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #62a340, #4d8232);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(98,163,64,0.3);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.process-step p {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

/* Gradient CTA */
.gradient-bg {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.gradient-bg h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.gradient-bg p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary.large {
    font-size: 20px;
    padding: 20px 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 2px;
        height: auto;
    }
    
    .process-step {
        text-align: left;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 36px;
    }
    
    .service-hero p {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-content h2,
    .service-options h2,
    .process-section h2 {
        font-size: 32px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SEO PAGES SPECIFIC STYLES
======================================== */

/* Hero Meta Info */
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
    font-size: 16px;
    opacity: 0.9;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.local-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Trust Signals */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.signal {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.signal strong {
    display: block;
    font-size: 32px;
    color: #62a340;
    margin-bottom: 10px;
    font-weight: 700;
}

.signal span {
    color: #666;
    font-size: 14px;
}

/* Service Details Section */
.services-detail {
    padding: 80px 0;
    background: white;
}

.service-content {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.unique-value {
    background: linear-gradient(135deg, #62a340, #4d8232);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 0 5px 20px rgba(98, 163, 64, 0.3);
}

/* Area Coverage */
.area-coverage {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.area-coverage h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.area-coverage p {
    color: #666;
    line-height: 1.8;
}

/* Seasonal Info */
.seasonal-info {
    background: linear-gradient(135deg, #fff5e6, #ffe0cc);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #ff9800;
    font-style: italic;
    color: #666;
}

/* Related Services in Footer */
.footer-local {
    grid-column: span 2;
}

.related-services {
    margin-top: 20px;
}

.related-services h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #81c063;
}

.related-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.related-services li {
    font-size: 14px;
}

.related-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.related-services a:hover {
    color: #81c063;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    grid-column: span 2;
}

/* Urgency in CTA */
.urgency {
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    animation: blink 1.5s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-meta {
        flex-direction: column;
        gap: 15px;
        font-size: 14px;
    }
    
    .trust-signals {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .signal strong {
        font-size: 24px;
    }
    
    .intro-section,
    .services-detail {
        padding: 60px 0;
    }
    
    .local-content {
        padding: 20px;
    }
    
    .footer-local,
    .footer-contact {
        grid-column: span 1;
    }
    
    .related-services ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .unique-value {
        font-size: 16px;
        padding: 20px;
    }
    
    .area-coverage {
        padding: 20px;
    }
    
    .area-coverage h3 {
        font-size: 20px;
    }
}
