/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

/* Prevent any element from being contenteditable */
* {
    -webkit-user-modify: read-only;
}

*:not(input):not(textarea):not([contenteditable="true"]) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

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

/* Allow text selection only for readable content */
p:not(.btn), h1, h2, h3, h4, h5, h6,
.contact-detail p,
.contact-detail a,
.testimonial-content p,
.about-text p,
.feature p,
.service-features li,
.blog-content,
.blog-content p,
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content li {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* Form elements should have their default cursor behavior */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

/* Ensure buttons and interactive elements don't show text cursor */
button, .btn, a, .nav-menu a, .social-link,
.scroll-arrow, .process-step, .service-card,
.testimonial-card, .logo-svg, .nav-toggle {
    cursor: pointer !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -1px;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    transition: var(--transition);
}

.skip-link:focus {
    position: absolute;
    top: 0;
    left: 6px;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-svg {
    height: 40px;
    width: auto;
    max-width: 150px;
    display: block;
    transition: var(--transition);
}

.logo-svg:hover {
    opacity: 0.8;
}

.nav-logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 4rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}

/* Homepage hero background */
.hero-homepage {
    background: url('/assets/house-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.65);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Main Content - Fix header overlap */
.main-content {
    padding-top: 80px;
}

/* Hero Section Extensions */
.hero-section {
    padding: 4rem 0 4rem;
    background: url('/assets/airbnb-cleaning-service-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}

.hero-section .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* Page-specific hero backgrounds */
body[data-page="eco-friendly-cleaners-malta"] .hero {
    background: url('/assets/eco-friendly-house-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/* Careers page hero background */
body[data-page="careers"] .hero-section {
    background: url('/assets/cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/* After-party cleaning page hero background */
.hero-after-party-cleaning {
    background: url('/assets/after-party-clean-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* After-party cleaning page - white background for all sections */
.hero-after-party-cleaning ~ .service-intro,
.hero-after-party-cleaning ~ .services-detailed,
.hero-after-party-cleaning ~ .event-types,
.hero-after-party-cleaning ~ .cleanup-process,
.hero-after-party-cleaning ~ .emergency-response,
.hero-after-party-cleaning ~ .service-areas,
.hero-after-party-cleaning ~ .pricing-section,
.hero-after-party-cleaning ~ .testimonials {
    background: var(--bg-white) !important;
}

/* After-party cleaning page - white background for cards and items */
.hero-after-party-cleaning ~ .event-types .event-type,
.hero-after-party-cleaning ~ .emergency-response .area-card,
.hero-after-party-cleaning ~ .service-areas .area-card,
.hero-after-party-cleaning ~ .testimonials .testimonial-card {
    background: var(--bg-white) !important;
    border: 1px solid var(--border-color);
}

/* Apartment cleaning page hero background */
.hero-apartment-cleaning {
    background: url('/assets/mordern-apartment-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Best home cleaning service page hero background */
.hero-best-home-cleaning {
    background: url('/assets/best-home-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Bi-weekly cleaning service page hero background */
.hero-bi-weekly-cleaning {
    background: url('/assets/bi-weekly-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Carpet cleaning service page hero background */
.hero-carpet-cleaning {
    background: url('/assets/carpet-and-rug-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Child-safe cleaning service page hero background */
.hero-child-safe-cleaning {
    background: url('/assets/child-safe-cleaning-services-malta-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Cleaners in Malta service page hero background */
.hero-cleaners-in-malta {
    background: url('/assets/cleaners-in-malta-hero-image-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Cleaning company Malta service page hero background */
.hero-cleaning-company-malta {
    background: url('/assets/cleaning-company-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Cleaning for elderly Malta service page hero background */
.hero-cleaning-for-elderly {
    background: url('/assets/cleaning-for-elderly-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Cleaning services for seniors Malta service page hero background */
.hero-cleaning-services-for-seniors {
    background: url('/assets/cleaning-services-for-seniors-malta-1-hero.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-cleaning-services-malta {
    background: url('/assets/cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-deep-cleaning-for-high-end-homes {
    background: url('/assets/deep-cleaning-for-high-end-homes-malta-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-discreet-home-cleaning-for-executives {
    background: url('/assets/discreet-home-cleaning-for-executives-home-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-domestic-cleaning {
    background: url('/assets/domestic-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-eco-friendly-house-cleaning {
    background: url('/assets/eco-friendly-house-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-elderly-assistance-cleaning {
    background: url('/assets/elderly-assistance-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-emergency-cleaning {
    background: url('/assets/emergency-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-executive-cleaning-service {
    background: url('/assets/executive-cleaning-service-malta-hero-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-full-service-house-cleaning {
    background: url('/assets/full-service-house-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-high-end-residential-maid-services {
    background: url('/assets/luxury-maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-household-management-and-cleaning-service {
    background: url('/assets/house-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-house-cleaning-services-malta {
    background: url('/assets/house-cleaning-services-malta-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-luxury-apartment-cleaning-services {
    background: url('/assets/luxury-apartment-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-maid-service-malta {
    background: url('/assets/maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-monthly-maid-service-malta {
    background: url('/assets/maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-one-time-deep-cleaning-large-homes {
    background: url('/assets/one-time-deep-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-one-time-cleaning-malta {
    background: url('/assets/one-time-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-move-in-cleaning-services-for-villas-malta {
    background: url('/assets/move-in-services-for-villas-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-personalized-cleaning-plans-for-vip-clients-malta {
    background: url('/assets/personalized-cleaning-plan-for-vip-clients-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-pet-friendly-cleaning {
    background: url('/assets/pet-friendly-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-premium-elderly-home-cleaning-solutions-malta {
    background: url('/assets/premium-elderly-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-private-housekeeper-for-luxury-homes-malta {
    background: url('/assets/private-house-keeper-for-luxury-properties-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-professional-house-cleaning-for-disabled-elderly-malta {
    background: url('/assets/premium-house-keeping-for-disabled-elderly-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-real-estate-cleaning-services {
    background: url('/assets/real-estate-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-scheduled-maid-service-for-professionals {
    background: url('/assets/scheduled-maid-service-for-professionals-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-seasonal-cleaning-for-second-homes {
    background: url('/assets/seasonal-cleaning-for-second-homes-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-trusted-home-cleaners-for-seniors {
    background: url('/assets/trusted-home-cleaning-services-for-seniors-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-weekly-cleaning-malta {
    background: url('/assets/weekly-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-weekly-domestic-cleaning-for-busy-parents {
    background: url('/assets/weekly-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-weekly-maid-service-malta {
    background: url('/assets/weekly-maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-window-cleaning-malta {
    background: url('/assets/window-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-airbnb-cleaning {
    background: url('/assets/airbnb-cleaning-service-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-airbnb-cleaning-service-malta {
    background: url('/assets/airbnb-cleaning-service-hero-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-airbnb-host-cleaning-service-malta {
    background: url('/assets/airbnb-cleaning-services-host-hero.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-airbnb-linen-towel-service-malta {
    background: url('/assets/airbnb-linen-and-towel-service-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-airbnb-same-day-cleaning-malta {
    background: url('/assets/airbnb-same-day-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-fast-airbnb-cleaning-malta {
    background: url('/assets/fast-airbnb-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}
.hero-guest-ready-cleaning-malta {
    background: url('/assets/guest-ready-cleaning-airbnb-hero-malta-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-professional-bnb-cleaners-malta {
    background: url('/assets/professional-bnb-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-short-let-cleaning-malta {
    background: url('/assets/airbnb-short-let-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-turnover-cleaning-airbnb-malta {
    background: url('/assets/turnover-cleaning-for-airbnb-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-vacation-rental-cleaning-malta {
    background: url('/assets/vacation-rental-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-apartment-cleaning-for-expats-malta {
    background: url('/assets/apartment-cleaning-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-cleaners-who-speak-english-malta {
    background: url('/assets/cleaners-who-speak-english-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-cleaning-help-for-expats-malta {
    background: url('/assets/cleaning-help-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-cleaning-service-near-expat-areas-malta {
    background: url('/assets/cleaning-service-near-expat-areas-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-cleaning-services-for-expats-malta {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-domestic-cleaning-malta-for-expats {
    background: url('/assets/domestic-cleaning-malta-for-expats-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-english-speaking-cleaners-malta {
    background: url('/assets/english-speaking-cleaners-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-maid-service-for-expats-malta {
    background: url('/assets/maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-reliable-cleaners-for-expats-malta {
    background: url('/assets/reliable-cleaners-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-home-cleaning-for-foreigners-malta {
    background: url('/assets/domestic-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-attard-cleaning-services {
    background: url('/assets/attard-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

/* Service Introduction Section */
.service-intro {
    padding: 4rem 0;
    background: var(--bg-white);
}

.service-intro .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-intro .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-intro .section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.service-overview {
    margin-top: 3rem;
}

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

.overview-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.overview-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.overview-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Services Detailed Section */
.services-detailed {
    padding: 4rem 0;
    background: var(--bg-white);
}

.services-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

/* Service Card Bullet Points Fix */
.service-card ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    padding: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Section Spacing Consistency */
.services + .services {
    padding-top: 3rem;
}

/* Enhanced styling for sections with shorter content */
.service-card p:only-of-type {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 3.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Event Types Section */
.event-types {
    padding: 4rem 0;
    background: var(--bg-light);
}

.event-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-type {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.event-type h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.event-type p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Cleanup Process Section */
.cleanup-process {
    padding: 4rem 0;
    background: var(--bg-white);
}

.cleanup-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Emergency Response Section */
.emergency-response {
    padding: 4rem 0;
    background: var(--bg-light);
}

.emergency-response h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.emergency-overview h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.emergency-overview p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.emergency-services {
    display: grid;
    gap: 1.5rem;
}

.emergency-service {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.emergency-service h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.emergency-service p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background: var(--bg-white);
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.area-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.area-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.area-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.pricing-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Quality Standards Section */
.quality-standards {
    padding: 5rem 0 4rem 0;
    background: var(--bg-white);
    margin-top: 2rem;
}

/* Customer Satisfaction Section */
.customer-satisfaction {
    padding: 5rem 0;
    background: var(--bg-white);
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.testimonial-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-section > p {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-detail {
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-detail h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-detail p {
    color: var(--text-medium);
    font-size: 1.125rem;
    margin: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.contact-detail strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--primary-dark);
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* Form Styles */
.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

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

/* Reduce spacing for first 3 form groups (name, email, phone) by 30% */
.contact-form .form-group-reduced {
    margin-bottom: 1.05rem !important;
}

/* Higher specificity desktop override */
form.contact-form div.form-group-reduced {
    margin-bottom: 1.05rem !important;
}

/* Maximum specificity override using form ID */
form#contact-form div.form-group-reduced {
    margin-bottom: 1.05rem !important;
}

/* Desktop-specific media query override */
@media (min-width: 769px) {
    .contact-form .form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
    
    form#contact-form div.form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
}

/* Mobile-first override for form groups - aggressive iOS Safari targeting */
@media (max-width: 768px) {
    .contact-form .form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Form Accessibility */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.25rem;
}

.help-text {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    line-height: 1.4;
}

/* Remove automatic validation styles - they'll be handled by JavaScript */
.form-group input:not(:focus):not(:placeholder-shown):invalid,
.form-group select:not(:focus):invalid {
    /* Don't show error states automatically */
}

.form-group input.error,
.form-group select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Enhanced Focus Styles */
.nav-menu a:focus,
.btn:focus,
.social-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066cc;
        --secondary-color: #006600;
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #666666;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .process-step,
    .testimonial-card {
        border: 2px solid var(--border-color);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0f172a 100%);
    color: white;
    padding: 2.5rem 0 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section h5 {
    color: white;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.footer-brand p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

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

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
}

.contact-item a:hover {
    color: white;
}

.contact-item p {
    color: #d1d5db;
    margin: 0;
    font-size: 0.9rem;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer .contact-icon {
    font-size: 1rem;
}

.footer .contact-item a,
.footer .contact-item span {
    color: #d1d5db;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer .contact-item a:hover {
    color: white;
}

.footer-resources ul {
    margin-top: 0.5rem;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.8rem;
}

.cert-icon {
    font-size: 1rem;
}

.footer-bottom {
    padding-bottom: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    transition: var(--transition);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.8rem;
}


/* Service Images */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    z-index: 1;
}

.service-icon {
    position: relative;
    z-index: 2;
}

/* About Section Images */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Testimonial Images */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* Removed old process-step styles - now using the main process section styles */

/* Image placeholders that look professional */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

/* Hero placeholder for service pages */
.hero-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    text-align: center;
    padding: 2rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    margin: 1rem 0 1.5rem;
}

.process-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.process-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.process-step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        width: 80%;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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



    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-arrow {
        font-size: 0.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        margin-bottom: 1.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-certifications {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .certification-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* New sections responsive */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        padding: 2rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding-top: 60px;
    }
    
    .hero {
        padding: 2rem 0 3rem;
        margin-top: 60px;
        min-height: 50vh;
    }
    
    .hero-section {
        padding: 2rem 0 3rem;
        min-height: 50vh;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section .hero-content p {
        font-size: 1rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services,
    .about,
    .contact,
    .process,
    .testimonials {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Only target first 3 form groups (name, email, phone) for reduced spacing */
    .contact-form .form-group-reduced {
        margin-bottom: 1.05rem !important;
    }

    /* iOS Safari specific targeting for first 3 fields only */
    @supports (-webkit-appearance: none) {
        .contact-form .form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
    }

    /* Ultra-specific selectors for iOS - first 3 fields only */
    .contact-form div.form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
    
    /* Additional iOS Safari targeting approaches - first 3 fields only */
    @media screen and (-webkit-min-device-pixel-ratio: 1) {
        .contact-form .form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
    }
    
    /* Target iOS devices specifically - first 3 fields only */
    @supports (-webkit-overflow-scrolling: touch) {
        .contact-form .form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
    }
    
    /* Force override with maximum specificity - first 3 fields only */
    form.contact-form div.form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
    
    /* Target first three form groups specifically (name, email, phone) */
    .contact-form .form-group-reduced {
        margin-bottom: 1.05rem !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Extremely aggressive iOS Safari targeting with padding approach */
    @media screen and (-webkit-min-device-pixel-ratio: 1) and (max-width: 768px) {
        form#contact-form div.form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
        
        /* Target by label text content */
        .contact-form .form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
    }
    
    /* Nuclear option - target every possible selector combination */
    form.contact-form > div.form-group-reduced {
        margin-bottom: 1.05rem !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Target iOS Safari specifically with device detection */
    @supports (-webkit-touch-callout: none) {
        .contact-form .form-group-reduced {
            margin-bottom: 1.05rem !important;
        }
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Only target first 3 form groups for reduced spacing */
    .contact-form .form-group-reduced {
        margin-bottom: 1.05rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Blog Styles */
.blog-hero {
    background: url('/assets/images/blog/blog-hero-image-cleaning-tips-1.png'), linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
} */

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-listing {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-header time {
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 500;
}

.reading-time {
    color: var(--text-medium);
    font-size: 0.875rem;
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.featured-posts {
    padding: 4rem 0;
    background: white;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.featured-post-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.featured-post-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.featured-post-category {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-post-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-post-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.featured-post-card h3 a:hover {
    color: var(--primary-color);
}

.featured-post-excerpt {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.featured-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-post-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.featured-post-cta:hover {
    color: var(--primary-dark);
}

.featured-posts-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.featured-posts-cta::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-header {
    display: block !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
}

.cta-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.featured-posts-cta h3 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: white !important;
    text-align: center !important;
}

.cta-subtitle {
    font-size: 1.125rem !important;
    opacity: 0.9 !important;
    margin-bottom: 0 !important;
    color: white !important;
    text-align: center !important;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center;
    color: white;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 180px;
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.blog-cta {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* Blog-specific CTA styling - highest specificity */
.featured-posts .container .featured-posts-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.featured-posts .container .featured-posts-cta::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}

.featured-posts .container .featured-posts-cta .cta-content {
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.featured-posts .container .featured-posts-cta .cta-header {
    justify-content: center !important;
    text-align: center !important;
    display: block !important;
    margin-bottom: 2rem !important;
}

.featured-posts .container .featured-posts-cta h3 {
    text-align: center !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    color: white !important;
}

.featured-posts .container .featured-posts-cta .cta-subtitle {
    text-align: center !important;
    font-size: 1.125rem !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    color: white !important;
}

/* Additional fallback rules */
.blog-listing .featured-posts-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

.blog-listing .featured-posts-cta::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

.blog-listing .featured-posts-cta .cta-content {
    text-align: center;
}

.blog-listing .featured-posts-cta .cta-header {
    justify-content: center;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

.blog-listing .featured-posts-cta h3 {
    text-align: center !important;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.blog-listing .featured-posts-cta .cta-subtitle {
    text-align: center !important;
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

/* Individual Blog Post Styles */
.blog-post {
    padding: 2rem 0 4rem;
}

.blog-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.blog-content {
    max-width: 800px;
    line-height: 1.8;
    font-size: 1.125rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.blog-content h1 {
    font-size: 2rem;
}

.blog-content h2 {
    font-size: 1.75rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.blog-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-medium);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin: 1.5rem 0;
    display: block;
}

.blog-content code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.blog-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-footer .blog-cta {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
}

.blog-footer .blog-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-footer .blog-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.blog-share {
    text-align: center;
}

.blog-share h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0;
    }
    
    .blog-hero h1 {
        font-size: 2.25rem;
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: white;
        background-clip: text;
        color: white;
    }
    
    .blog-hero p {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats .stat {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .cta-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        min-width: auto;
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        padding: 1rem;
    }
    
    .blog-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-posts-cta {
        padding: 2rem 1rem;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-content h1 {
        font-size: 1.75rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-content img {
        margin: 1rem 0;
        border-radius: 0.5rem;
        box-shadow: var(--shadow-sm);
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 200px;
        text-align: center;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: none;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.floating-cta:active {
    transform: translateY(0);
}

/* Show floating CTA only on mobile */
@media (max-width: 768px) {
    .floating-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    }
    
    .floating-cta:hover {
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    }
}

/* CRITICAL: Final override rules for blog CTA - maximum specificity */
section.featured-posts div.container div.featured-posts-cta::before,
.featured-posts-cta::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

section.featured-posts div.container div.featured-posts-cta h3,
.featured-posts-cta h3 {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: block !important;
}

section.featured-posts div.container div.featured-posts-cta .cta-subtitle,
.featured-posts-cta .cta-subtitle {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: block !important;
}

section.featured-posts div.container div.featured-posts-cta .cta-header,
.featured-posts-cta .cta-header {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    display: block !important;
    flex-direction: column !important;
}

/* Careers sections now use standard .services class */

/* Child-Safe Cleaning Service Sections */
.child-safety-focus {
    padding: 4rem 0;
    background: var(--bg-white);
}

.products-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.age-specific-services {
    padding: 4rem 0;
    background: var(--bg-white);
}

.benefits-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.hero-balzan-cleaning-services {
    background: url('/assets/balzan-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-bidnija-cleaning-services {
    background: url('/assets/bidnija-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-birgu-cleaning-services {
    background: url('/assets/birgu-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-birkirkara-cleaning-services {
    background: url('/assets/birkirkara-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-birzebbuga-cleaning-services {
    background: url('/assets/domestic-cleaning-malta-for-expats-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-bormla-cleaning-services {
    background: url('/assets/real-estate-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-dingli-cleaning-services {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-fgura-cleaning-services {
    background: url('/assets/seasonal-cleaning-for-second-homes-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-floriana-cleaning-services {
    background: url('/assets/mordern-apartment-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-fontana-gozo-cleaning-services {
    background: url('/assets/balzan-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-ghajnsielem-gozo-cleaning-services {
    background: url('/assets/cleaning-help-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-gharb-gozo-cleaning-services {
    background: url('/assets/domestic-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-gharghur-cleaning-services {
    background: url('/assets/cleaning-company-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-ghasri-gozo-cleaning-services {
    background: url('/assets/english-speaking-cleaners-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-ghaxaq-cleaning-services {
    background: url('/assets/luxury-apartment-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-gudja-cleaning-services {
    background: url('/assets/real-estate-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-gzira-cleaning-services {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-hamrun-cleaning-services {
    background: url('/assets/full-service-house-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-iklin-cleaning-services {
    background: url('/assets/mordern-apartment-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-kalkara-cleaning-services {
    background: url('/assets/bi-weekly-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-kercem-gozo-cleaning-services {
    background: url('/assets/best-home-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-kirkop-cleaning-services {
    background: url('/assets/balzan-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-lija-cleaning-services {
    background: url('/assets/attard-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-luqa-cleaning-services {
    background: url('/assets/bidnija-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-marsa-cleaning-services {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-marsaskala-cleaning-services {
    background: url('/assets/english-speaking-cleaners-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-marsaxlokk-cleaning-services {
    background: url('/assets/full-service-house-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mdina-cleaning-services {
    background: url('/assets/balzan-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mellieha-cleaning-services {
    background: url('/assets/child-safe-cleaning-services-malta-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mgarr-cleaning-services {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mosta-cleaning-services {
    background: url('/assets/domestic-cleaning-malta-for-expats-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mqabba-cleaning-services {
    background: url('/assets/house-cleaning-services-malta-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-msida-cleaning-services {
    background: url('/assets/deep-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-mtarfa-cleaning-services {
    background: url('/assets/balzan-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-munxar-gozo-cleaning-services {
    background: url('/assets/birgu-cleaning-services-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-nadur-gozo-cleaning-services {
    background: url('/assets/cleaning-company-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-naxxar-cleaning-services {
    background: url('/assets/english-speaking-cleaners-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-paola-cleaning-services {
    background: url('/assets/cleaning-service-near-expat-areas-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-pembroke-cleaning-services {
    background: url('/assets/cleaning-services-for-expats-in-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-pieta-cleaning-services {
    background: url('/assets/one-time-cleaning-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-qala-gozo-cleaning-services {
    background: url('/assets/vacation-rental-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-qormi-cleaning-services {
    background: url('/assets/window-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-qrendi-cleaning-services {
    background: url('/assets/discreet-home-cleaning-for-executives-home-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-rabat-malta-cleaning-services {
    background: url('/assets/scheduled-maid-service-for-professionals-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-safi-cleaning-services {
    background: url('/assets/seasonal-cleaning-for-second-homes-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-san-gwann-cleaning-services {
    background: url('/assets/house-cleaning-services-malta-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-san-lawrenz-gozo-cleaning-services {
    background: url('/assets/monthly-maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-sannat-gozo-cleaning-services {
    background: url('/assets/reliable-cleaners-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-santa-lucia-cleaning-services {
    background: url('/assets/mordern-apartment-cleaning-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-santa-venera-cleaning-services {
    background: url('/assets/house-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-senglea-cleaning-services {
    background: url('/assets/full-service-house-cleaning-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-siggiewi-cleaning-services {
    background: url('/assets/house-cleaning-services-malta-2.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-sliema-cleaning-services {
    background: url('/assets/luxury-apartment-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-st-julians-cleaning-services {
    background: url('/assets/reliable-cleaners-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-st-pauls-bay-cleaning-services {
    background: url('/assets/weekly-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-swieqi-cleaning-services {
    background: url('/assets/weekly-maid-service-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-ta-xbiex-cleaning-services {
    background: url('/assets/real-estate-cleaning-services-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}

.hero-tarxien-cleaning-services {
    background: url('/assets/reliable-cleaners-for-expats-malta-hero-1.png'), linear-gradient(135deg, var(--bg-light) 0%, rgba(37, 99, 235, 0.05) 100%) !important;
    background-size: cover, cover !important;
    background-position: center, center !important;
    background-repeat: no-repeat, no-repeat !important;
    background-blend-mode: overlay;
}