/* =====================================================
   Waste Man With A Movement - Main Stylesheet
   Professional Waste Removal Services - Light Theme
   ===================================================== */

/* CSS Variables for Consistent Theming */
:root {
    --primary-color: #1e1b4b;
    --secondary-color: #312e81;
    --accent-color: #7c3aed;
    --accent-hover: #6d28d9;
    --accent-light: #a78bfa;
    --success-color: #7c3aed;
    --warning-color: #a78bfa;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #faf5ff;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-size: 17px;
}

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

ul, ol {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

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

.nav-cta {
    background: var(--accent-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Hero background image overlay */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/at night.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231f2937' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

/* Decorative floating shapes */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
    pointer-events: none;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 3%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-content {
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 28px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 35px;
    margin-bottom: 50px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-primary);
}

.hero-feature .check {
    display: none;
}

.hero-feature .feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-feature .feature-text strong {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-feature .feature-text span {
    color: #f1f5f9;
    font-size: 0.95rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

.btn-whatsapp {
    background: #7c3aed;
    color: white;
}

.btn-whatsapp:hover {
    background: #6d28d9;
    transform: translateY(-3px);
}

/* =====================================================
   SECTIONS
   ===================================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* =====================================================
   SERVICES SECTION (Light Theme)
   ===================================================== */
.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}

/* =====================================================
   PROCESS SECTION (Dark Theme)
   ===================================================== */
.process-section {
    background: var(--primary-color);
    color: white;
}

.process-section .section-label {
    color: var(--accent-color);
}

.process-section .section-header h2 {
    color: white;
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   WHY SECTION (Light Theme)
   ===================================================== */
.why-section {
    background: var(--bg-white);
}

/* =====================================================
   CLIENTS SECTION (Light Theme)
   ===================================================== */
.clients-section {
    background: var(--bg-light);
}

/* =====================================================
   COVERAGE INFO (Right Side)
   ===================================================== */
.coverage-info {
    padding: 20px 0;
}

.coverage-info h3 {
    margin-bottom: 20px;
}

.coverage-info p {
    margin-bottom: 20px;
}

/* =====================================================
   CARE / PROPERTY CARE SECTION
   ===================================================== */
.care-section {
    background: var(--bg-light);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.care-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.care-card h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.care-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* =====================================================
   HOURS SECTION (Dark Theme)
   ===================================================== */
.hours-section {
    background: var(--primary-color);
}

.hours-section .section-label {
    color: var(--accent-color);
}

.hours-section .section-header h2 {
    color: white;
}

/* =====================================================
   CTA SECTION (Light Background with Dark Box)
   ===================================================== */
.cta-section {
    background: var(--bg-light);
}

/* =====================================================
   BUTTON VARIANTS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

.btn-whatsapp {
    background: #7c3aed;
    color: white;
}

.btn-whatsapp:hover {
    background: #6d28d9;
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER (Dark Theme)
   ===================================================== */
.footer {
    background: var(--primary-color);
    color: white;
}

.footer h4 {
    color: white;
}

.footer-links-col {
    /* Footer links column styling */
}

.footer-contact-col {
    /* Footer contact column styling */
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #374151, #1f2937);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Overlay for about image */
.about-image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.85), rgba(31, 41, 55, 0.9));
    z-index: 1;
}

.about-image-main span,
.about-image-main div {
    position: relative;
    z-index: 2;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

/* Service card with image */
.service-card-with-image {
    padding-top: 0;
    overflow: hidden;
}

.service-card-image {
    width: calc(100% + 70px);
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: -35px -35px 25px -35px;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white, transparent);
}

.service-card-with-image .service-icon {
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card ul {
    margin-top: 15px;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✔';
    color: var(--success-color);
    font-weight: bold;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
    background: var(--primary-color);
    color: white;
}

.process-section .section-header {
    color: white;
}

.process-section h2 {
    color: white;
}

.process-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.2);
}

.process-step h3 {
    margin-bottom: 15px;
    color: white;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section {
    background: var(--bg-white);
}

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

.why-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.why-content h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =====================================================
   CLIENTS SECTION
   ===================================================== */
.clients-section {
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.client-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.client-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-icon {
    width: 70px;
    height: 70px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--accent-color);
}

.client-card h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.client-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* =====================================================
   COVERAGE SECTION
   ===================================================== */
.coverage-section {
    background: var(--bg-white);
    position: relative;
}

.coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.coverage-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    justify-content: center;
}

.coverage-image-centered {
    text-align: center;
    margin-bottom: 40px;
}

.coverage-image-centered img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.coverage-map{
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    color: white;
    text-align: center;
}

.coverage-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.coverage-map-icon{
    font-size: 4rem;
    margin-bottom: 20px;
}

.coverage-map h3 {
    margin-bottom: 15px;
    color: white;
}

.coverage-map p {
    color: rgba(255, 255, 255, 0.8);
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: white;
}

.coverage-info h3 {
    margin-bottom: 20px;
}

.coverage-info p {
    margin-bottom: 20px;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.coverage-item .icon {
    color: var(--success-color);
    font-weight: bold;
}

/* =====================================================
   PROPERTY CARE
   ===================================================== */
.care-section {
    background: var(--bg-light);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.care-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.care-icon {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.care-card h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.care-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

/* =====================================================
   HOURS SECTION
   ===================================================== */
.hours-section {
    background: var(--primary-color);
    color: white;
}

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

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-card.featured {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.hours-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hours-card h4 {
    margin-bottom: 15px;
    color: white;
}

.hours-time {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hours-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1566041510639-8d95a2490bfb?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.cta-box h2 {
    margin-bottom: 15px;
    position: relative;
    color: white;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
    padding-top: 120px;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.contact-method:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-method p {
    margin: 0;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    font-family: inherit;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact .icon {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* =====================================================
   PAGE HEADERS
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

/* Page header with background image */
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

/* Service-specific header backgrounds */
.page-header-services .page-header-bg,
.page-header-about .page-header-bg,
.page-header-contact .page-header-bg,
.page-header-how-it-works .page-header-bg {
    background-image: url('assets/images/page-header-bg.png');
}

.page-header h1 {
    position: relative;
    margin-bottom: 15px;
}

.page-header p {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    color: var(--accent-color);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .hero-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .coverage-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .hours-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        color: var(--text-primary);
    }

    .hamburger {
        display: flex;
    }

    .hero-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .about-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   DECORATIVE ELEMENTS & ASSETS
   ===================================================== */

/* Wave dividers */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Gradient orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.gradient-orb-purple {
    background: radial-gradient(circle, rgba(55, 65, 81, 0.15), transparent 70%);
}

.gradient-orb-blue {
    background: radial-gradient(circle, rgba(75, 85, 99, 0.1), transparent 70%);
}

/* Decorative dots pattern */
.dots-pattern {
    background-image: radial-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Grid pattern overlay */
.grid-pattern {
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Glowing effect for cards */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light), var(--accent-color));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity var(--transition-normal);
}

.glow-effect:hover::before {
    opacity: 0.3;
}

/* Section background variations */
.bg-gradient-mesh {
    background:
        radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(124, 58, 237, 0.03) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(99, 102, 241, 0.03) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
}

/* Animated gradient border */
@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-border {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), var(--accent-color));
    background-size: 200% 200%;
    animation: gradientBorder 3s ease infinite;
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Blob shapes */
.blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Decorative lines */
.decorative-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-color);
}

.badge-green {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-color);
}

/* Icon containers */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.icon-container-sm {
    width: 40px;
    height: 40px;
}

.icon-container-md {
    width: 60px;
    height: 60px;
}

.icon-container-lg {
    width: 80px;
    height: 80px;
}

/* Pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced card hover states */
.card-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(124, 58, 237, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus ring */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}
