/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #23688F;
    --accent-color: #77BBD0;
    --white: #FFFFFF;
    --soft-grey: #F5F5F5;
    --light-grey: #E8E8E8;
    --dark-grey: #333333;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: rgba(35, 104, 143, 0.1);
    --shadow-hover: rgba(35, 104, 143, 0.2);
    
    /* Typography */
    --font-cursive: 'Pacifico', cursive;
    --font-sans: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --border-radius-small: 8px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ===== LOADING ANIMATION ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.cleaning-animation {
    position: relative;
    margin-bottom: 60px; /* Increased from 30px for more gap */
    height: 150px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.broom-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: sweepAcross 3s ease-in-out infinite;
}

.broom-gif {
    width: 200px;
    height: auto;
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.4));
}

.loading-content h2 {
    font-size: 1.5rem;
    margin: 10px 0; /* Reduced margin instead of hiding */
    font-weight: 400;
    opacity: 0.9;
}

@keyframes sweepAcross {
    0% {
        left: -150px;
        transform: translateY(-50%) rotate(-15deg);
    }
    50% {
        left: 50%;
        transform: translateY(-50%) translateX(-50%) rotate(0deg);
    }
    100% {
        left: calc(100% + 50px);
        transform: translateY(-50%) rotate(15deg);
    }
}

@media (max-width: 600px) {
    .cleaning-animation {
        margin-bottom: 80px; /* Even more gap on small screens */
        height: 120px; /* Reduce height to help fit on small screens */
    }
    .broom-gif {
        width: 140px;
    }
    .loading-content h2 {
        font-size: 1.1rem;
        margin-top: 0;
    }
}
















/* ===== NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.1) contrast(1.2);
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(35, 104, 143, 0.05), rgba(119, 187, 208, 0.05));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-cursive);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.welcome-prefix {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.8;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

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



/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white), var(--soft-grey));
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

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

.welcome-message {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(35, 104, 143, 0.15);
    border: 1px solid rgba(119, 187, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.ann-photo {
    position: relative;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(35, 104, 143, 0.3);
    border: 3px solid var(--white);
}

.message-content {
    flex: 1;
}

.welcome-title {
    font-family: var(--font-cursive);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.welcome-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.welcome-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.welcome-signature {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-grey);
}

.signature {
    font-family: var(--font-cursive);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.title {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== HERO CAROUSEL STYLING ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    border-radius: var(--border-radius);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.banner-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-background {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.banner-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1px);
}

.banner-background h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.banner-background p {
    font-size: 1rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
    opacity: 0.9;
}

.banner-icon {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
    animation: float 2s ease-in-out infinite;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--white);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cta-button.primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.link-button {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.link-button:hover {
    border-bottom-color: var(--primary-color);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* ===== QUICK LINKS SECTION ===== */
.quick-links {
    padding: var(--section-padding);
    background-color: var(--soft-grey);
}

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

.quick-link-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
    border-color: var(--accent-color);
}

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

.quick-link-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}



/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--light-grey);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.service-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-item p:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta-section .cta-button.primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .cta-button.primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}



/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section:first-child {
    text-align: center;
}

.footer-section:first-child p {
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.footer-logo img {
    height: 75px;
    margin: 0 auto 1rem auto;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

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

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.footer-bottom .powered-by {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    opacity: 0.7;
    letter-spacing: 0.02em;
}
.footer-bottom .powered-by a {
    color: var(--accent-color);
    text-decoration: underline dotted;
    opacity: 0.85;
    transition: color 0.2s;
}
.footer-bottom .powered-by a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* ===== HOW IT WORKS PAGE STYLES ===== */
.process-steps {
    background-color: var(--soft-grey);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(135deg, var(--white), rgba(119, 187, 208, 0.03));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 25px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(119, 187, 208, 0.1);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-hover);
    border-color: var(--accent-color);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(35, 104, 143, 0.1), rgba(119, 187, 208, 0.1));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: var(--transition);
    border: 2px solid rgba(119, 187, 208, 0.2);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(35, 104, 143, 0.2), rgba(119, 187, 208, 0.2));
    border-color: var(--accent-color);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 600;
    position: absolute;
    left: 0;
}

.step-connector {
    width: 2px;
    height: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    position: relative;
}

.step-connector::before,
.step-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.step-connector::before {
    top: -4px;
}

.step-connector::after {
    bottom: -4px;
}

/* What to Expect Section */
.what-to-expect {
    background-color: var(--white);
}

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

.expectation-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--light-grey);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.expectation-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

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

.expectation-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expectation-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Preparation Tips Section */
.preparation-tips {
    background-color: var(--soft-grey);
}

.tips-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tips-column h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow);
    transition: var(--transition);
}

.tips-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.tips-list li div strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

    .tips-list li div p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    /* ===== SERVICES PAGE STYLES ===== */
    .services-overview {
        background-color: var(--soft-grey);
    }

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

    .service-card {
        background-color: var(--white);
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px var(--shadow);
        transition: var(--transition);
        overflow: hidden;
        position: relative;
    }

    .service-card.featured {
        border: 3px solid var(--accent-color);
        transform: scale(1.02);
    }

    .service-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 1;
    }

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

    .service-card.featured:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .service-header {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: var(--white);
        padding: 2rem;
        text-align: center;
    }

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

    .service-header h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .service-price {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .service-minimum {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .service-content {
        padding: 2rem;
    }

    .service-description {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .service-includes {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .service-includes li {
        color: var(--text-light);
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-includes li::before {
        content: '✓';
        color: var(--accent-color);
        font-weight: 600;
        position: absolute;
        left: 0;
    }

    .service-ideal {
        background-color: var(--soft-grey);
        padding: 1rem;
        border-radius: var(--border-radius-small);
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .service-ideal strong {
        color: var(--primary-color);
    }

    /* Important Notes */
    .important-notes {
        background-color: var(--white);
    }

    .notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.note-card:nth-child(4) {
    grid-column: 2;
    max-width: 320px;
    margin: 2rem auto 0;
    grid-row: 2;
}

    .note-card {
        background-color: var(--soft-grey);
        padding: 2rem;
        border-radius: var(--border-radius);
        text-align: center;
        border: 2px solid transparent;
        transition: var(--transition);
    }

    .note-card.highlight {
        background-color: #FFF3CD;
        border-color: #F0AD4E;
    }

    .note-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--shadow);
    }

    .note-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .note-card h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .note-card p {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    /* Pricing Calculator */
    .pricing-calculator {
        background-color: var(--soft-grey);
    }

    .calculator-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .calculator-info {
        background-color: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px var(--shadow);
    }

    .calculator-info h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .calculator-form {
        margin-top: 2rem;
    }

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

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

    .form-group select {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid var(--light-grey);
        border-radius: var(--border-radius-small);
        font-size: 1rem;
        color: var(--text-dark);
        background-color: var(--white);
        transition: var(--transition);
    }

    .form-group select:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(119, 187, 208, 0.1);
    }

    .calculator-result {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: var(--white);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        text-align: center;
        margin-top: 1.5rem;
    }

    .result-text strong {
        font-size: 1.3rem;
        display: block;
        margin-bottom: 0.5rem;
    }

    .result-note {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }

    .calculator-cta {
        background-color: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px var(--shadow);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .calculator-cta h3 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .calculator-cta p {
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    /* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        padding-top: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        margin-top: 0;
        z-index: 1100;
        position: relative;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        margin-top: 1rem;
    }

    .welcome-prefix {
        font-size: 1.4rem;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

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

    .hero-carousel {
        height: 250px;
    }

    .banner-background h3 {
        font-size: 1.2rem;
    }

    .banner-background p {
        font-size: 0.9rem;
    }

    .banner-icon {
        font-size: 2rem;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 3rem 0;
    }

    .welcome-message {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
        margin: 0 1rem;
    }

    .welcome-message::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .photo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }



    /* Loading Animation Mobile */
    .cleaning-animation {
        height: 120px;
        margin-bottom: 20px;
    }

    .broom-gif {
        width: 140px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Quick Links */
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-link-card {
        padding: 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    /* How It Works Page - Mobile */
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .step-connector {
        display: none;
    }

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

    .expectation-card {
        padding: 1.5rem;
    }

    .tips-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tips-list li {
        padding: 1.2rem;
    }

    /* Services Page - Mobile */
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .note-card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        margin: 0;
        max-width: none;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .welcome-prefix {
        font-size: 1.2rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .quick-link-card,
    .service-item {
        padding: 1.2rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.cta-button:focus,
.link-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: rgba(0, 0, 0, 0.5);
        --shadow-hover: rgba(0, 0, 0, 0.7);
    }
} 