/* ============================================
   Premium Cleaning Theme - Main Stylesheet
   Modern, luxury, conversion-focused design
   ============================================ */

/* === CSS Variables === */
:root {
    --cln-primary: #0a554a;
    --cln-secondary: #1a8a7a;
    --cln-accent: #e8a838;
    --cln-bg: #ffffff;
    --cln-text: #4a5568;
    --cln-heading: #1a202c;
    --cln-light: #f7fafc;
    --cln-light-alt: #f0fdf4;
    --cln-border: #e2e8f0;
    --cln-radius: 12px;
    --cln-container: min(1200px, 94%);
    --cln-spacing: 100px;
    --cln-header-height: 80px;
    --cln-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --cln-font-heading: 'Playfair Display', Georgia, serif;
    --cln-font-mono: 'JetBrains Mono', monospace;
    --cln-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --cln-shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --cln-shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --cln-shadow-xl: 0 24px 48px rgba(0,0,0,0.1);
    --cln-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--cln-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cln-text);
    background: var(--cln-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--cln-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--cln-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cln-font-heading);
    color: var(--cln-heading);
    line-height: 1.3;
    font-weight: 600;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }

/* === Container === */
.cleaning-container {
    width: var(--cln-container);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Skip Link === */
.skip-link {
    position: absolute;
    top: -100px;
    left: 6px;
    z-index: 999999;
    background: var(--cln-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
}
.skip-link:focus {
    top: 6px;
}

/* === Screen Reader Text === */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* === Section Shared Styles === */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(10, 85, 74, 0.08);
    color: var(--cln-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.section-header h2 {
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-description {
    font-size: 18px;
    color: var(--cln-text);
    line-height: 1.7;
}
.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* === Top Bar === */
.top-bar {
    background: var(--cln-primary);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.topbar-phone:hover { color: #fff; }
.topbar-social {
    display: flex;
    gap: 6px;
}
.topbar-social-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    border-radius: 50%;
}
.topbar-social-icon:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* === Announcement Bar === */
.announcement-bar {
    background: var(--cln-accent);
    color: #1a202c;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.announcement-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
    color: inherit;
    padding: 0 4px;
}
.announcement-close:hover { opacity: 1; }

/* === Header === */
.cleaning-header {
    position: relative;
    z-index: 1000;
    background: var(--cln-bg);
    border-bottom: 1px solid var(--cln-border);
    transition: all var(--cln-transition);
}
.header-sticky {
    position: sticky;
    top: 0;
}
.header-sticky.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.header-transparent {
    position: absolute;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.15);
}
.header-transparent .site-title,
.header-transparent .primary-menu > li > a {
    color: #fff;
}
.header-transparent .primary-menu > li > a:hover {
    color: rgba(255,255,255,0.8);
}
.header-main {
    padding: 0 0;
    height: var(--cln-header-height);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}
.logo-mobile { display: none; }
.site-title {
    font-family: var(--cln-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--cln-heading);
    white-space: nowrap;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}
.primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.primary-menu > li {
    position: relative;
}
.primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--cln-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a {
    color: var(--cln-primary);
    background: rgba(10, 85, 74, 0.06);
}
.dropdown-icon {
    transition: transform 0.2s ease;
}
.primary-menu > li:hover > a .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--cln-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
    list-style: none;
}
.primary-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.sub-menu .sub-menu {
    top: -4px;
    left: 100%;
    margin-left: 4px;
}
.sub-menu li {
    position: relative;
}
.sub-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--cln-text);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
}
.sub-menu a:hover {
    background: rgba(10, 85, 74, 0.06);
    color: var(--cln-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cln-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}
.header-phone:hover {
    color: var(--cln-primary);
    background: rgba(10, 85, 74, 0.05);
}
.phone-text {
    white-space: nowrap;
}
.header-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: var(--cln-text);
    transition: all 0.2s;
}
.header-search-toggle:hover {
    background: rgba(0,0,0,0.05);
    color: var(--cln-heading);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cln-heading);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.home-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, #0a554a 0%, #0d6b5e 30%, #1a8a7a 100%);
    padding: 120px 0 140px;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-highlight {
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    font-style: italic;
}
.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-cta {
    font-size: 17px;
    padding: 16px 36px;
}
.hero-phone {
    font-size: 17px;
    padding: 16px 32px;
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.hero-phone:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}
.trust-item svg {
    color: #68d391;
    flex-shrink: 0;
}

/* Hero Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}
.hero-shape-divider .shape-fill {
    fill: #ffffff;
}

/* === Trust Badges Section === */
.home-trust-badges {
    padding: 60px 0;
    background: var(--cln-light);
    margin-top: -2px;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.trust-badge-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
}
.badge-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 85, 74, 0.08);
    border-radius: 12px;
    color: var(--cln-primary);
}
.badge-text {
    display: flex;
    flex-direction: column;
}
.badge-text strong {
    font-size: 14px;
    color: var(--cln-heading);
    font-weight: 600;
}
.badge-text span {
    font-size: 13px;
    color: var(--cln-text);
}

/* === Home Services Section === */
.home-services {
    padding: var(--cln-spacing) 0;
}

/* === About Section === */
.home-about {
    padding: var(--cln-spacing) 0;
    background: var(--cln-light);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--cln-text);
}
.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.about-image {
    position: relative;
}
.about-image-main {
    border-radius: var(--cln-radius);
    overflow: hidden;
    background: var(--cln-border);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--cln-primary);
    color: #fff;
    padding: 24px;
    border-radius: var(--cln-radius);
    text-align: center;
    box-shadow: var(--cln-shadow-lg);
}
.about-experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.about-experience-badge .label {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

/* === Statistics Section === */
.home-statistics {
    padding: 60px 0;
    background: var(--cln-primary);
}
.home-statistics .stat-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.home-statistics .stat-number { color: #fff; }
.home-statistics .stat-label { color: rgba(255,255,255,0.8); }

/* === Why Choose Us === */
.home-why-choose {
    padding: var(--cln-spacing) 0;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-choose-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    transition: all var(--cln-transition);
}
.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cln-shadow-lg);
    border-color: transparent;
}
.wcu-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 85, 74, 0.08);
    border-radius: 14px;
    color: var(--cln-primary);
    margin-bottom: 20px;
}
.why-choose-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.why-choose-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cln-text);
}

/* === How It Works === */
.home-how-it-works {
    padding: var(--cln-spacing) 0;
    background: var(--cln-light);
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}
.how-step {
    text-align: center;
    padding: 24px;
}
.step-number {
    width: 64px;
    height: 64px;
    background: var(--cln-primary);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--cln-font-heading);
}
.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cln-text);
}

/* === Before & After & Gallery === */
.home-before-after,
.home-gallery {
    padding: var(--cln-spacing) 0;
}

/* === Testimonials === */
.home-testimonials {
    padding: var(--cln-spacing) 0;
    background: var(--cln-light);
}

/* === FAQ === */
.home-faq {
    padding: var(--cln-spacing) 0;
}

/* === Lead Form === */
.home-lead-form {
    padding: var(--cln-spacing) 0;
    background: var(--cln-light);
}

/* === Service Areas === */
.home-service-areas {
    padding: var(--cln-spacing) 0;
}

/* === Latest Projects === */
.home-latest-projects {
    padding: var(--cln-spacing) 0;
    background: var(--cln-light);
}
.latest-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    overflow: hidden;
    transition: all var(--cln-transition);
}
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cln-shadow-md);
}
.project-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.05);
}
.project-info {
    padding: 20px;
}
.project-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.project-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--cln-text);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* === CTA Banner Area === */
.home-cta-banner {
    padding: 0;
}

/* === Footer CTA === */
.home-footer-cta {
    padding: var(--cln-spacing) 0;
    background: linear-gradient(165deg, #1a202c 0%, #2d3748 100%);
    color: #fff;
    margin-bottom: -2px;
}
.footer-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-urgency {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cln-accent);
    color: #1a202c;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-cta-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 16px;
}
.footer-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}
.footer-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-cta-actions .cleaning-btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.footer-cta-actions .cleaning-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.cta-disclaimer {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 24px !important;
}

/* === Footer === */
.site-footer {
    background: var(--footer-bg, #1a202c);
    color: #a0aec0;
    font-size: 14px;
    position: relative;
}
.footer-main {
    padding: 60px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(var(--footer-columns, 4), 1fr);
    gap: 40px;
}
.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--cln-font-heading);
}
.footer-widget p {
    line-height: 1.8;
    margin-bottom: 12px;
}
.footer-widget a {
    color: #68d391;
    transition: color 0.2s;
}
.footer-widget a:hover {
    color: #9ae6b4;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 8px;
}
.footer-menu a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-menu a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #68d391;
    border-radius: 50%;
    flex-shrink: 0;
}
.footer-menu a:hover {
    color: #fff;
}
.fw-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.fw-contact .contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #68d391;
}
.fw-contact .contact-item a {
    color: #a0aec0;
}
.fw-contact .contact-item a:hover {
    color: #fff;
}
.fw-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-day {
    color: #fff;
    font-weight: 500;
}
.hours-time {
    color: #a0aec0;
}
.footer-social {
    display: flex;
    justify-content: center;
    padding: 32px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 32px;
}
.footer-social .social-icon {
    background: rgba(255,255,255,0.06);
    color: #a0aec0;
}
.footer-social .social-icon:hover {
    background: var(--cln-primary);
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    color: #718096;
    margin: 0;
}
.footer-bottom .footer-menu {
    display: flex;
    gap: 16px;
}
.footer-bottom .footer-menu li {
    margin: 0;
}
.footer-bottom .footer-menu a {
    color: #718096;
    font-size: 13px;
}
.footer-bottom .footer-menu a::before { display: none; }
.footer-bottom .footer-menu a:hover { color: #fff; }

/* === Page Hero (Inner Pages) === */
.page-hero {
    background: var(--cln-light);
    padding: 60px 0;
    border-bottom: 1px solid var(--cln-border);
}
.page-hero-single {
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-secondary));
    color: #fff;
}
.page-hero-single .page-hero-title { color: #fff; }
.page-hero-single .post-meta { color: rgba(255,255,255,0.8); }
.page-hero-single .post-meta a { color: rgba(255,255,255,0.9); }
.page-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0 0;
    letter-spacing: -0.02em;
}
.page-hero-excerpt {
    font-size: 18px;
    color: var(--cln-text);
    margin-top: 12px;
    max-width: 600px;
}

/* === Page Content === */
.page-content-wrap {
    padding: 60px 0;
}
.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.content-main {
    min-width: 0;
}

/* === Blog Grid === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    overflow: hidden;
    transition: all var(--cln-transition);
}
.blog-card:hover {
    box-shadow: var(--cln-shadow-md);
    transform: translateY(-3px);
}
.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 24px;
}
.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--cln-text);
    margin-bottom: 12px;
}
.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-title a {
    color: var(--cln-heading);
}
.blog-title a:hover {
    color: var(--cln-primary);
}
.blog-excerpt {
    font-size: 14px;
    color: var(--cln-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* === Single Post === */
.post-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.post-meta a { color: inherit; }
.post-featured-image {
    margin-bottom: 32px;
    border-radius: var(--cln-radius);
    overflow: hidden;
}
.rounded-image {
    border-radius: var(--cln-radius);
    width: 100%;
}
.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--cln-text);
}
.entry-content p { margin-bottom: 1.2em; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; margin-bottom: 0.8em; }
.entry-content ul, .entry-content ol { margin-bottom: 1.2em; }
.entry-content li { margin-bottom: 0.3em; }
.entry-content img { border-radius: 12px; margin: 24px 0; }
.entry-content .wp-block-columns { gap: 24px; margin: 24px 0; }
.entry-content .wp-block-column { min-width: 0; }
.entry-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--cln-border);
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--cln-border);
}
.entry-comments {
    margin-top: 40px;
}

/* === Sidebar === */
.content-sidebar {
    position: relative;
}
.sidebar-widget {
    background: var(--cln-light);
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    padding: 24px;
    margin-bottom: 24px;
}
.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--cln-heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cln-border);
}

/* === Search Form === */
.search-form-wrap {
    margin-top: 16px;
}
.search-form {
    display: flex;
    gap: 0;
}
.search-form label { flex: 1; }
.search-form input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--cln-border);
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}
.search-form input[type="search"]:focus {
    border-color: var(--cln-primary);
}
.search-form button[type="submit"] {
    padding: 12px 20px;
    background: var(--cln-primary);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
.search-form button[type="submit"]:hover {
    background: var(--cln-secondary);
}

/* === Search Results === */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-result-item {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    transition: all 0.2s;
}
.search-result-item:hover {
    box-shadow: var(--cln-shadow-sm);
}
.result-type {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cln-primary);
    font-weight: 600;
    margin-bottom: 8px;
}
.result-title {
    font-size: 20px;
    margin-bottom: 8px;
}
.result-excerpt {
    font-size: 14px;
    color: var(--cln-text);
    margin-bottom: 8px;
}
.result-link {
    font-size: 14px;
    font-weight: 500;
}

/* === 404 Page === */
.site-main-404 {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.error-404-content {
    max-width: 560px;
    margin: 0 auto;
}
.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--cln-primary);
    line-height: 1;
    font-family: var(--cln-font-heading);
    opacity: 0.2;
    display: block;
    margin-bottom: 24px;
}
.error-404-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}
.error-404-content p {
    font-size: 18px;
    color: var(--cln-text);
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.error-search {
    max-width: 400px;
    margin: 0 auto;
}

/* === Service Single === */
.service-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, var(--cln-primary), #0d6b5e);
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}
.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.service-hero .cleaning-breadcrumbs { margin-bottom: 16px; }
.service-hero .cleaning-breadcrumbs a,
.service-hero .cleaning-breadcrumbs span {
    color: rgba(255,255,255,0.8);
}
.service-hero .cleaning-breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.service-hero .cleaning-breadcrumbs ol li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255,255,255,0.4);
}
.service-hero-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 12px;
}
.service-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}
.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.service-hero-actions .cleaning-btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.service-hero-actions .cleaning-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Service Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
.service-content {
    min-width: 0;
}
.service-description {
    margin-bottom: 40px;
}

/* Benefits Section */
.service-benefits-section {
    margin-bottom: 48px;
}
.service-benefits-section h2 {
    margin-bottom: 24px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--cln-light);
    border: 1px solid var(--cln-border);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s;
}
.benefit-item:hover {
    border-color: var(--cln-primary);
    background: rgba(10, 85, 74, 0.03);
}
.benefit-item svg { flex-shrink: 0; }

/* Process Steps */
.service-process-section {
    margin-bottom: 48px;
}
.service-process-section h2 {
    margin-bottom: 32px;
}
.process-timeline {
    position: relative;
    padding-left: 40px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--cln-border);
}
.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}
.step-indicator {
    position: absolute;
    left: -30px;
    top: 0;
}
.step-count {
    width: 32px;
    height: 32px;
    background: var(--cln-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--cln-font-heading);
}
.step-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.step-details p {
    font-size: 15px;
    line-height: 1.7;
}

/* Service Gallery */
.service-gallery-section {
    margin-bottom: 48px;
}
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.service-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-gallery-item:hover img {
    transform: scale(1.06);
}

/* Service Sidebar */
.service-sidebar-sticky {
    position: sticky;
    top: calc(var(--cln-header-height) + 24px);
}
.sidebar-card {
    background: #fff;
    border: 1px solid var(--cln-border);
    border-radius: var(--cln-radius);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}
.sidebar-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cln-text);
    margin-bottom: 12px;
}
.sidebar-detail svg {
    color: var(--cln-primary);
    flex-shrink: 0;
}
.sidebar-pricing {
    margin: 16px 0;
}
.sidebar-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--cln-heading);
}
.sidebar-price-old {
    font-size: 18px;
    color: #a0aec0;
    text-decoration: line-through;
    margin-left: 8px;
}
.sidebar-cta-card {
    background: var(--cln-light);
    text-align: center;
}
.sidebar-cta-card p {
    font-size: 14px;
    margin-bottom: 16px;
}
.sidebar-services-list {
    list-style: none;
    padding: 0;
}
.sidebar-services-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cln-border);
}
.sidebar-services-list li:last-child {
    border-bottom: none;
}
.sidebar-services-list a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-bottom-cta {
    padding: 60px 0;
}

/* === Breadcrumbs === */
.cleaning-breadcrumbs {
    font-size: 14px;
    margin-bottom: 8px;
}
.cleaning-breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cleaning-breadcrumbs a {
    color: var(--cln-text);
}
.cleaning-breadcrumbs a:hover {
    color: var(--cln-primary);
}
.cleaning-breadcrumbs ol li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #cbd5e1;
}
.cleaning-breadcrumbs span {
    color: var(--cln-text);
}

/* === Pagination === */
.cleaning-pagination {
    margin-top: 40px;
}
.pagination-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}
.pagination-list li a,
.pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--cln-border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--cln-text);
    text-decoration: none;
    transition: all 0.2s;
}
.pagination-list li a:hover {
    border-color: var(--cln-primary);
    color: var(--cln-primary);
}
.pagination-list li .current {
    background: var(--cln-primary);
    color: #fff;
    border-color: var(--cln-primary);
}

/* === Comments === */
.comment-list {
    list-style: none;
    padding: 0;
}
.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--cln-border);
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.comment-author img {
    border-radius: 50%;
}
.comment-author .fn {
    font-weight: 600;
    font-style: normal;
    color: var(--cln-heading);
}
.comment-metadata {
    font-size: 13px;
    color: var(--cln-text);
    margin-bottom: 12px;
}
.comment-content {
    font-size: 15px;
    line-height: 1.7;
}
.reply {
    margin-top: 8px;
}
.reply a {
    font-size: 13px;
    font-weight: 500;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .trust-badges-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 40px; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .service-layout { grid-template-columns: 1fr; }
    .content-area { grid-template-columns: 1fr; }
    .about-experience-badge { right: 0; }
}

@media (max-width: 768px) {
    :root {
        --cln-spacing: 60px;
    }

    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }

    /* Mobile menu */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    .main-navigation.active {
        right: 0;
    }
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }
    .primary-menu > li > a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--cln-border);
        border-radius: 0;
    }
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .primary-menu > li.dropdown-open > .sub-menu {
        display: block;
    }
    .menu-toggle {
        display: flex;
    }
    .header-actions .phone-text {
        display: none;
    }

    /* Hero */
    .home-hero {
        min-height: 70vh;
        padding: 100px 0 100px;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-trust {
        gap: 16px;
    }
    .hero-shape-divider svg {
        height: 40px;
    }

    /* Grids */
    .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: 1fr; }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .latest-projects-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }

    /* Header */
    .header-phone .phone-text { display: none; }
    .header-actions .cleaning-btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Footer */
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Page hero */
    .page-hero-title {
        font-size: 28px;
    }
    .service-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .cleaning-btn { width: 100%; justify-content: center; }
    .about-actions { flex-direction: column; }
    .about-actions .cleaning-btn { width: 100%; justify-content: center; }
    .footer-cta-actions { flex-direction: column; }
    .footer-cta-actions .cleaning-btn { width: 100%; justify-content: center; }
    .service-gallery-grid { grid-template-columns: 1fr; }
    .search-form { flex-direction: column; }
    .search-form input[type="search"] { border-radius: 8px; }
    .search-form button[type="submit"] { border-radius: 8px; margin-top: 8px; }
}

/* === Utility Classes === */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 24px auto; display: block; }
.text-center { text-align: center; }
.no-results {
    text-align: center;
    padding: 60px 20px;
}
.no-results h2 {
    margin-bottom: 12px;
}
.no-results p {
    color: var(--cln-text);
    font-size: 16px;
}
