/* 
    Power Landscaping & Powerwashing - Design System 
    Exact Palette Implementation
*/

html {
    scroll-behavior: smooth;
}

:root {
    --primary-green: #5E8E2E;
    --deep-green: #2F5D34;
    --soft-white: #F7F8F5;
    --stone-grey: #D9DDD6;
    --charcoal: #1F2933;
    --white: #FFFFFF;
    --whatsapp-green: #25D366;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(31, 41, 51, 0.85);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-max: 1200px;
    --header-height: 80px;
    --mobile-footer-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--soft-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Luxury Grain Texture Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/pinstripe-dark.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1; /* Moved lower so it doesn't block header/buttons */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Secondary headings can stay uppercase for structured look */
h2, h3, h4 {
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Navigation */
.header {
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 15px 5%; /* Reduced to start more from the left */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000; /* Much higher to stay on top of everything */
    height: var(--header-height);
    transition: all 0.4s ease;
}

.header:hover {
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    z-index: 1001;
    animation: revealDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.logo-img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    object-fit: cover;
    background: var(--white);
    box-shadow: 0 0 15px rgba(94, 142, 46, 0.2);
    transition: all 0.4s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 18px;
}

.brand-title {
    font-family: Georgia, serif;
    font-size: 1.3rem; /* Slightly smaller to fit better */
    color: var(--white);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.brand-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
}

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

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

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 20px;
    opacity: 0;
    animation: revealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s forwards;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
    font-weight: 900;
}

.hero h1 span {
    display: inline;
    color: #B2FF59; /* High-end vibrant contrast green */
}

.nav-links {
    display: flex;
    gap: 30px; /* Reduced from 40px to give more breathing room */
    opacity: 0;
    animation: revealDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 800; /* Bolder as per reference */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-links a:last-child {
    color: #B2FF59; /* Highlighted contact link like reference image */
}

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

.nav-links a:hover {
    color: var(--primary-green);
    transform: translateY(-1px);
}

.nav-links a:last-child:hover {
    color: var(--white);
}

.nav-ctas {
    display: flex;
    gap: 15px;
    align-items: center;
    opacity: 0;
    animation: revealDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

@media (min-width: 769px) {
    .header .btn-whatsapp {
        display: none !important;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    padding: 100px 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.menu-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-icon {
    color: var(--primary-green);
    font-size: 2rem;
}

.hero .nav-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: revealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s forwards;
}

.btn {
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.btn:active {
    transform: scale(0.95);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--deep-green) 100%);
    color: var(--white);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(94, 142, 46, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.header-whatsapp {
    display: none !important; /* Hidden on Desktop */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 60px) 8% 120px; /* Generous padding to avoid cut-offs */
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 3;
}

.hero-slide.last-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9); /* Subtle dim for cinematic feel */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px; /* Tighter block for better hierarchy */
    margin-top: 0; /* Handled by hero padding */
    background: none; /* Removed the dark box to show banner */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
    box-shadow: none;
    animation: revealUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(94, 142, 46, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem; /* Slightly smaller */
    letter-spacing: 0.1em;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-bottom: 20px;
    opacity: 0;
    animation: revealUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-trust .material-icons {
    color: #B2FF59;
    font-size: 1.25rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-trust::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: sweep 4s infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}



.hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .nav-ctas {
    display: flex;
    gap: 20px;
}

.hero .btn {
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
}

/* Services Section Redesign */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.image-service-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.image-service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.6s ease;
}

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

.image-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 41, 51, 0.95) 0%, rgba(31, 41, 51, 0.4) 50%, rgba(31, 41, 51, 0.1) 100%);
    z-index: -1;
}

.image-service-card h3 {
    font-size: 1.4rem;
    margin: 0;
    z-index: 1;
    line-height: 1.3;
}

/* Secondary Text Services */
.secondary-services-text {
    background: var(--white);
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.02);
    text-align: center;
}

.secondary-services-text h3 {
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.text-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
    text-align: left;
}

.text-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.text-service-item .material-icons {
    color: var(--primary-green);
    font-size: 20px;
}

.text-service-item.highlight-active {
    background: rgba(94, 142, 46, 0.05);
    border-color: var(--primary-green);
}

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

.text-service-item.highlight-service {
    border-color: var(--primary-green);
    border-width: 2px;
    background: var(--white);
    font-weight: 700;
}

.text-service-item.highlight-active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    font-weight: 700;
}

/* Redundant services for mobile hidden on desktop */
.mobile-only-service {
    display: none;
}

@media (max-width: 1024px) {
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-services-grid {
        grid-template-columns: 1fr;
    }
    
    .image-service-card {
        height: 250px;
    }

    .image-service-card.mobile-hide {
        display: none;
    }
    
    .mobile-only-service {
        display: flex;
    }
    
    .secondary-services-text {
        padding: 40px 15px;
        border-radius: 20px;
    }
    
    .secondary-services-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .text-services-list {
        grid-template-columns: 1fr; /* Force 1 column on smaller mobile to avoid text wrapping/clipping */
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }
    
    .text-service-item {
        padding: 14px 18px;
        font-size: 0.85rem; /* Larger font for readability on mobile */
        gap: 12px;
        border-radius: 12px;
        width: 100%;
        text-transform: none !important; /* Force sentence-case */
        justify-content: flex-start;
        text-align: left;
    }

    .text-service-item .material-icons {
        font-size: 18px;
    }
}

/* About Us Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 35px;
}

.a-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.a-feature:hover {
    transform: translateX(10px);
    border-color: var(--primary-green);
    background: rgba(94, 142, 46, 0.02);
}

.a-feature .material-icons {
    color: var(--primary-green);
    font-size: 20px;
}

.a-feature span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-content h2 { font-size: 2.2rem; }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

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

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

/* Final CTA Band */
.cta-band {
    position: relative;
    padding: 180px 0;
    background-image: url('assets/banner_1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(31, 41, 51, 0.7), rgba(15, 20, 15, 0.85));
    z-index: 1;
}

.cta-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.cta-band h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-box .nav-ctas {
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .cta-band {
        padding: 100px 0;
        background-attachment: scroll; /* Better performance on mobile */
    }
    .cta-box {
        padding: 60px 24px;
        margin: 0 20px;
        border-radius: 24px;
    }
    .cta-box .nav-ctas {
        flex-direction: column;
    }
}

/* Footer Refined */
.footer {
    background: #0A0F0A; /* Deep architectural black */
    padding: 100px 0 40px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 350px;
    font-size: 1rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1rem;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(8px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-credit {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-fab .material-icons {
    font-size: 32px;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--whatsapp-green);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .header .nav-ctas {
        display: none;
    }
    
    .mobile-cta-bar {
        display: flex;
    }
    
    body {
        padding-bottom: var(--mobile-footer-height);
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Coverage Section */
.coverage-section {
    background: #1F2933; /* Charcoal base */
    background: linear-gradient(145deg, #1F2933 0%, #111827 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(94, 142, 46, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(47, 93, 52, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.coverage-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.coverage-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.coverage-header p {
    color: var(--stone-grey);
    font-size: 1.125rem;
    line-height: 1.7;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.coverage-card:hover {
    background: rgba(94, 142, 46, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.coverage-icon {
    width: 56px;
    height: 56px;
    background: rgba(94, 142, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 24px;
    transition: all 0.3s ease;
}

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

.coverage-card h3 {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin: 0;
}

.microtext {
    margin-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-header {
        margin-bottom: 40px;
    }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
    .hamburger { display: flex; }
    .nav-links { display: none; }
    
    .header .nav-ctas { display: none !important; }
    .logo-text { 
        display: flex !important; 
        flex-direction: column;
    } 

    .brand-title { 
        font-size: 1.15rem !important; 
        color: var(--white) !important;
    }
    .brand-subtitle { 
        font-size: 0.5rem !important;
        color: rgba(255,255,255,0.7) !important;
    }

    .logo-img { 
        height: 48px !important; 
        width: 48px !important; 
    }

    .hamburger span {
        background: var(--white) !important;
        height: 3px !important;
        width: 32px !important;
    }

    .mobile-menu {
        padding: 80px 30px;
        gap: 15px;
    }

    .mobile-menu-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
        width: 100%;
        margin-top: auto;
    }

    .mobile-menu-btns .btn {
        justify-content: center;
        width: 100%;
        padding: 12px;
        font-size: 0.8rem;
        height: auto;
    }

    .whatsapp-fab {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        z-index: 999; /* Below the menu overlay but above everything else */
    }

    .hero { 
        min-height: 85vh; 
        padding: 120px 0 80px;
        display: flex;
        align-items: center;
    }
    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }
    .hero h1 span {
        font-size: 0.85em; /* Smaller highlighted text on mobile as requested */
    }
    .hero p { font-size: 0.95rem; line-height: 1.5; }
    
    .hero .hero-content {
    max-width: 100%;
    padding: 0 5%;
}
    
    .hero .nav-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: stretch;
        max-width: 320px;
    }
    
    .hero .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
        justify-content: center;
        height: auto;
        white-space: nowrap; /* Prevent text wrapping inside buttons */
    }

    .main-services-grid { grid-template-columns: 1fr; }
    .image-service-card { height: 260px; }
}

.header.scrolled {
    background: rgba(10, 15, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- WOW FACTOR: Before/After Slider --- */
.transformation-header {
    text-align: center;
    margin-bottom: 50px;
}

.transformation-header h2 {
    font-size: 3rem;
    margin: 15px 0;
}

.before-after-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    cursor: ew-resize;
}

.image-before, .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.image-before {
    width: 50%;
    border-right: 2px solid white;
    z-index: 2;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.handle-circle .material-icons {
    color: white;
    transform: rotate(90deg);
}

.label {
    position: absolute;
    bottom: 30px;
    padding: 10px 25px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    border-radius: 100px;
    z-index: 4;
    pointer-events: none;
}

.label-before { left: 30px; }
.label-after { right: 30px; }

/* --- WOW FACTOR: Glassmorphism Cards --- */
.image-service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-green);
}

@media (max-width: 768px) {
    .before-after-container {
        height: 400px;
    }
    .transformation-header h2 {
        font-size: 2.2rem;
    }
}

/* --- IMPACT STATS DESKTOP --- */
.stats-section {
    background: #0F140F;
    padding: 120px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-15px);
    border-color: var(--primary-green);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.stat-card h2 {
    font-size: 4.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 900;
}

.stat-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        padding: 40px 20px;
    }
    .stat-card h2 {
        font-size: 3.5rem;
    }
}

