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

html {
    background: #f8f0dd;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f0dd;
}

/* Prevent Safari from auto-styling phone numbers */
a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Prevent auto-detection of phone numbers */
* {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

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

/* Header Styles */
.header {
    background: #f8f0dd;
    color: #333;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #4a7c59;
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav a:hover {
    color: #4a7c59;
    background: rgba(74, 124, 89, 0.08);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.nav i {
    font-size: 0.7rem;
}

/* Services dropdown (desktop: hover / focus; mobile: tap to expand in hamburger) */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
    color: #4a7c59;
    background: rgba(74, 124, 89, 0.08);
    outline: none;
}

.nav-dropdown-chevron {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron,
.nav-dropdown.nav-dropdown-open .nav-dropdown-chevron {
    transform: rotate(180deg);
}

/* Desktop: invisible “bridge” so cursor can reach menu without leaving .nav-dropdown */
@media (min-width: 769px) {
    .nav-dropdown:hover::after,
    .nav-dropdown:focus-within::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
        z-index: 1105;
    }
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 240px;
    background: #fffef9;
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    z-index: 1100;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(74, 124, 89, 0.1);
    color: #4a7c59;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    /* Slight overlap: menu meets bridge with no dead pixel gap */
    .nav-dropdown-menu {
        margin-top: -1px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger: hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.hamburger:hover {
    background: rgba(74, 124, 89, 0.1);
    color: #4a7c59;
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.header.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.header.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-book {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-book:hover {
    background: #3d6b4a;
}

.phone {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/signature-cleaning-hero-background.jpg') center/cover;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-title p {
    font-size: 2.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 500;
}

/* Booking Form */
.booking-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.form-row label {
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 200px;
}

.slider {
    flex: 1;
    max-width: 300px;
    height: 6px;
    background: transparent;
    outline: none;
    border-radius: 999px;
    -webkit-appearance: none;
    appearance: none;
}

/* Rounded pill track (fixes square ends on WebKit / mobile) */
.slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    border: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    margin-top: -10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.6);
    box-sizing: border-box;
}

.slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    border: none;
}

.slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    box-sizing: border-box;
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.frequency-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 20px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}

.frequency-btn:hover {
    background: rgba(255,255,255,0.3);
}

.frequency-btn.active {
    background: #4a7c59;
    border-color: #4a7c59;
}

.frequency-btn small {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

.btn-schedule {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    margin-top: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-schedule:hover {
    background: #3d6b4a;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.services-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

/* Home page: 5 cards — row of 3 + row of 2 (centered), same card size as classic 3-col grid */
.services-grid-home {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1000px;
}

.services-grid-home > .service-card,
.services-grid-home > .service-card-link {
    grid-column: span 2;
}

/* Second row: center the last two cards */
.services-grid-home > *:nth-child(4) {
    grid-column: 2 / span 2;
}

.services-grid-home > *:nth-child(5) {
    grid-column: 4 / span 2;
}

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

    .services-grid.services-grid-home > .service-card,
    .services-grid.services-grid-home > .service-card-link,
    .services-grid.services-grid-home > *:nth-child(4),
    .services-grid.services-grid-home > *:nth-child(5) {
        grid-column: auto;
    }
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-label {
    background: linear-gradient(135deg, #f8f0dd 0%, #e6d5b8 100%);
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.service-label::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, #d4c4a8 0%, #c9b89a 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-label span {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-view-services {
    display: inline-block;
    background: #4a7c59;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-view-services:hover {
    background: #3d6b4a;
}

/* Services page */
.services-page {
    padding: 80px 0 100px;
}

.services-grid-full {
    max-width: 1100px;
    grid-template-columns: repeat(2, 1fr);
}

/* Offset anchor scroll for fixed header */
.service-anchor-target {
    scroll-margin-top: 90px;
}

.service-card-detail .service-description {
    padding: 20px;
    background: #fafafa;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    color: inherit;
}

/* Testimonials (home) */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 16px;
    font-weight: bold;
}

.testimonials-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    margin: 0;
    padding: 28px 24px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 124, 89, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(74, 124, 89, 0.12);
}

.testimonial-quote-icon {
    color: #4a7c59;
    font-size: 1.5rem;
    opacity: 0.85;
    margin-bottom: 14px;
}

.testimonial-text {
    flex: 1;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-footer {
    border-top: 1px solid rgba(74, 124, 89, 0.15);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-style: normal;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #4a7c59;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f0dd;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.about-flag {
    margin-bottom: 20px;
}

.canadian-flag {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
    width: 100%;
}

.about-tagline {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.feature-item i {
    color: #4a7c59;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.step-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-icon i {
    font-size: 1.5rem;
    color: #4a7c59;
}

.step h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 20px 0 15px 0;
    font-weight: bold;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.highlight {
    color: #4a7c59;
    font-weight: bold;
}

.btn-book-appointment {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: background 0.3s;
}

.btn-book-appointment:hover {
    background: #3d6b4a;
}

/* Features Section */
.features {
    background: #f8f0dd;
    color: #333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(51,51,51,0.1)" font-family="serif">Services</text></svg>') repeat;
    opacity: 0.1;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.priority {
    font-size: 3.5rem;
    display: block;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #ff6b6b;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

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

/* Mobile Booking Section */
.mobile-booking {
    padding: 80px 0;
    background: white;
}

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

.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 40px 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.phone-screen .subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.extra-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.extra-option:hover {
    border-color: #4a7c59;
    background: #f8f9fa;
}

.extra-option i {
    font-size: 2rem;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.extra-option span {
    font-size: 0.9rem;
    color: #666;
}

.mobile-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.mobile-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
}

.btn-mobile {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    flex: 1;
    justify-content: center;
}

.btn-mobile:hover {
    background: #3d6b4a;
}

.btn-mobile i {
    font-size: 1.1rem;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/signature-cleaning-hero-background.jpg') center/cover;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.founder-message {
    padding: 80px 0;
    background: white;
}

.founder-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-text {
    flex: 2;
}

.founder-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.founder-intro {
    font-size: 1.3rem;
    color: #4a7c59;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
    font-style: italic;
}

.founder-story p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.founder-signature {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    font-style: italic;
    margin: 40px 0 25px 0;
    padding-left: 20px;
    border-left: 4px solid #4a7c59;
}

.founder-closing {
    font-size: 1.1rem;
    color: #4a7c59;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

.founder-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.founder-image img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-name {
    margin-top: 20px;
}

.founder-name h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.founder-name p {
    color: #4a7c59;
    font-size: 1rem;
    font-weight: 500;
}

.our-story {
    padding: 80px 0;
    background: #f8f0dd;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-values {
    padding: 80px 0;
    background: #f8f0dd;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f0dd;
    border-radius: 15px;
    transition: transform 0.3s;
}

.reason-item:hover {
    transform: translateY(-3px);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a7c59;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.reason-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* Cleaning products (About page) */
.cleaning-products {
    padding: 80px 0;
    background: white;
}

.cleaning-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 24px;
    font-weight: bold;
}

.cleaning-products-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 50px;
}

.cleaning-products-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.cleaning-products-text {
    flex: 1.15;
}

.cleaning-products-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
}

.cleaning-products-text strong {
    color: #333;
}

.cleaning-products-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 24px;
}

.cleaning-products-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #444;
    line-height: 1.55;
    margin-bottom: 14px;
    padding-left: 2px;
}

.cleaning-products-list li i {
    color: #4a7c59;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.cleaning-products-note {
    font-size: 0.98rem !important;
    color: #4a7c59 !important;
    font-style: italic;
    margin-bottom: 0 !important;
    padding: 16px 18px;
    background: #f8f0dd;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
}

.cleaning-products-image {
    flex: 1;
    position: relative;
}

.cleaning-products-image img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(74, 124, 89, 0.12);
    object-fit: contain;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #fafaf7 0%, #f0f0eb 100%);
}

.our-process {
    padding: 80px 0;
    background: #f8f0dd;
}

.our-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: bold;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4a7c59;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 25px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Scent Menu Section */
.scent-menu {
    padding: 80px 0;
    background: white;
}

.scent-header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
}

.logo-subtitle span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 2px;
    line-height: 1.2;
}

.scent-title {
    font-size: 2.5rem;
    color: #333;
    margin: 30px 0 20px 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.scent-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.scent-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.scent-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #f8f0dd;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.scent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.scent-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.scent-card:nth-child(1) .scent-icon {
    background: #e3f2fd;
    color: #1976d2;
}

.scent-card:nth-child(2) .scent-icon {
    background: #fff3e0;
    color: #f57c00;
}

.scent-card:nth-child(3) .scent-icon {
    background: #f3e5f5;
    color: #7b1fa2;
}

.scent-content {
    flex: 1;
}

.scent-content h4 {
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.scent-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    background: white;
}

.service-area-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    flex: 1;
}

.service-map {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    text-align: center;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #f8f0dd;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #4a7c59;
    width: 30px;
}

.contact-item span {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
}

/* Blog Page Styles */
.blog-posts {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i {
    color: #4a7c59;
}

.blog-category {
    background: #f8f0dd;
    color: #4a7c59;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    font-size: 0.95rem;
}

.blog-read-more {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #3d6b4a;
    gap: 12px;
}

.blog-read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-newsletter {
    padding: 80px 0;
    background: #f8f0dd;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #4a7c59;
}

.btn-subscribe {
    background: #4a7c59;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #3d6b4a;
}

/* Individual Blog Post Styles */
.blog-post-content {
    padding: 80px 0;
    background: white;
}

.blog-post-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.blog-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-breadcrumb a:hover {
    color: white;
}

.blog-breadcrumb span {
    margin: 0 8px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.blog-post-meta .blog-date {
    color: rgba(255, 255, 255, 0.9);
}

.blog-post-meta .blog-category {
    color: #4a7c59;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.85rem;
}

.blog-post-article {
    background: white;
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    line-height: 1.8;
    color: #333;
}

.blog-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f0dd;
}

.blog-post-body h2 {
    font-size: 2rem;
    color: #333;
    margin: 40px 0 20px 0;
    font-weight: bold;
    padding-top: 20px;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    color: #4a7c59;
    margin: 30px 0 15px 0;
    font-weight: bold;
}

.blog-post-body p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-body li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.blog-post-body strong {
    color: #333;
    font-weight: 600;
}

/* Service add-on cards (e.g. Home Organization page) */
.service-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0 50px;
}

.addon-card {
    background: white;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 124, 89, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
    border-color: rgba(74, 124, 89, 0.35);
}

.addon-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f0dd 0%, #e6d5b8 100%);
    color: #4a7c59;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.addon-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.addon-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Home Organization pricing (service page) */
.home-org-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0 40px;
    max-width: 640px;
}

.home-org-price-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid #e6d5b8;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-org-price-card:hover {
    border-color: #4a7c59;
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.12);
}

.home-org-price-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-org-price-duration {
    font-size: 0.95rem;
    color: #666;
}

.home-org-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #4a7c59;
    margin-top: 4px;
}

@media (max-width: 520px) {
    .home-org-pricing {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

.blog-cta {
    background: #f8f0dd;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    text-align: center;
    border: 2px solid #4a7c59;
}

.blog-cta h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-blog-cta {
    display: inline-block;
    background: #4a7c59;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-blog-cta:hover {
    background: #3d6b4a;
    transform: translateY(-2px);
}

.blog-related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f8f0dd;
}

.blog-related-posts h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 20px;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #f8f0dd;
    color: #333;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.3);
    padding: 10px 15px;
    border-radius: 25px;
    transition: background 0.3s;
}

.footer-contact .contact-item:hover {
    background: rgba(255,255,255,0.5);
}

.footer-contact .contact-item i {
    color: #4a7c59;
    font-size: 1rem;
}

.footer-contact .contact-item span {
    font-size: 1rem;
    font-weight: 500;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #4a7c59;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-links {
    text-align: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Quote Page Styles */
.quote-summary {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.quote-total:last-child {
    border-bottom: none;
}

.quote-total-final {
    font-size: 1.3rem;
    font-weight: bold;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.quote-label {
    color: white;
    font-weight: 500;
}

.quote-amount {
    color: white;
    font-weight: bold;
}

.quote-total-final .quote-label,
.quote-total-final .quote-amount {
    font-size: 1.3rem;
}

.addons-breakdown {
    padding: 10px 0 5px 0;
    margin-top: 5px;
    display: none;
}

.addon-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    padding: 2px 0;
    padding-left: 15px;
    border-left: 2px solid rgba(255,255,255,0.3);
    margin-left: 10px;
}

.addon-breakdown-item .addon-name {
    text-align: left;
    flex: 1;
    color: rgba(255,255,255,0.9);
}

.addon-breakdown-item .addon-price {
    text-align: right;
    margin-left: 10px;
    font-weight: 500;
    color: white;
    font-size: 0.85rem;
}

.addon-breakdown-item:last-child {
    margin-bottom: 5px;
}

/* Add-ons Section */
.addons-section {
    padding: 80px 0;
    background: white;
}

.addons-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.addons-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #4a7c59;
}

.addon-card.selected {
    border-color: #4a7c59;
    background: #f0f8f2;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.2);
}

.addon-icon {
    width: 80px;
    height: 80px;
    background: #f8f0dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.addon-card:hover .addon-icon,
.addon-card.selected .addon-icon {
    background: #4a7c59;
    transform: scale(1.1);
}

.addon-icon i {
    font-size: 2rem;
    color: #4a7c59;
    transition: color 0.3s;
}

.addon-card:hover .addon-icon i,
.addon-card.selected .addon-icon i {
    color: white;
}

.addon-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.addon-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 40px;
}

.addon-price {
    font-size: 1.2rem;
    color: #4a7c59;
    font-weight: bold;
    margin-bottom: 20px;
}

.addon-checkbox {
    margin-top: 15px;
}

.addon-checkbox input[type="checkbox"] {
    display: none;
}

.addon-checkbox label {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(74, 124, 89, 0.1);
    color: #4a7c59;
    border: 2px solid #4a7c59;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.addon-card:hover .addon-checkbox label {
    background: #4a7c59;
    color: white;
}

.addon-card.selected .addon-checkbox label {
    background: #4a7c59;
    color: white;
}

.addon-card.selected .addon-checkbox label::after {
    content: ' ✓';
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 0;
        row-gap: 0;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-image {
        height: 44px;
        max-width: 140px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #f8f0dd;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        padding: 12px 0;
        border-top: 1px solid rgba(74, 124, 89, 0.2);
    }

    .header.menu-open .nav {
        display: flex;
    }

    .nav a {
        font-size: 1rem;
        padding: 14px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-self: stretch;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .nav-dropdown.nav-dropdown-open {
        border-bottom: none;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 14px 20px;
        border-radius: 0;
        font-size: 1rem;
        text-align: left;
    }

    .nav-dropdown.nav-dropdown-open .nav-dropdown-trigger {
        background: rgba(74, 124, 89, 0.08);
        color: #4a7c59;
    }

    /* No ::after bridge on mobile */
    .nav-dropdown::after {
        display: none !important;
        content: none !important;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        flex: none;
        align-self: stretch;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 4px 0 10px;
        background: rgba(74, 124, 89, 0.07);
        border-top: 1px solid rgba(74, 124, 89, 0.12);
        border-left: 3px solid #4a7c59;
        box-sizing: border-box;
    }

    .nav-dropdown.nav-dropdown-open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 14px 18px 14px 28px;
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(74, 124, 89, 0.1);
        color: #2d2d2d;
    }

    .nav-dropdown-menu a:last-child {
        border-bottom: none;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:focus-visible {
        background: rgba(255, 255, 255, 0.55);
        color: #4a7c59;
    }

    .header-actions {
        margin-left: auto;
        gap: 10px;
    }

    .header-actions .btn-book {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .header-actions .phone {
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
        margin-left: 4px;
    }

    .hero-content {
        margin-top: 1em;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-title p {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .booking-form {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .slider {
        width: 100%;
        max-width: 100%;
        height: 28px;
        min-height: 28px;
    }

    /* Thinner track + smaller thumb on mobile (less chunky, matches desktop feel) */
    .slider::-webkit-slider-runnable-track {
        height: 4px;
        border-radius: 999px;
    }

    .slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
        margin-top: -8px;
        border-width: 1px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }

    .slider::-moz-range-track {
        height: 4px;
        border-radius: 999px;
    }

    .slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-width: 1px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.3);
    }

    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phone-mockup {
        order: 2;
    }
    
    .mobile-text {
        order: 1;
    }
    
    .mobile-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials-intro {
        margin-bottom: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-header {
        margin-bottom: 30px;
    }
    
    .canadian-flag {
        width: 100px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .priority {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .booking-form {
        padding: 15px;
    }
    
    .frequency-options {
        grid-template-columns: 1fr;
    }
    
    .phone-screen {
        width: 250px;
        height: 500px;
        padding: 30px 15px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        height: 250px;
    }
    
    .blog-post-body h2 {
        font-size: 1.4rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.2rem;
    }
    
    .blog-post-body p,
    .blog-post-body li {
        font-size: 1rem;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 1.5rem;
    }
    
    .service-area-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info h3 {
        font-size: 2rem;
    }
    
    .signature-text {
        font-size: 2.5rem;
    }
    
    .scent-title {
        font-size: 2rem;
    }
    
    .scent-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .scent-icon {
        align-self: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .cleaning-products h2 {
        font-size: 2rem;
    }

    .cleaning-products-intro {
        font-size: 1.05rem;
        margin-bottom: 36px;
    }

    .cleaning-products-content {
        flex-direction: column;
        gap: 36px;
        text-align: left;
    }

    .cleaning-products-image {
        order: -1;
        width: 100%;
    }

    .cleaning-products-image img {
        max-width: 100%;
        aspect-ratio: 16 / 11;
        min-height: 220px;
    }

    .cleaning-products-list li {
        text-align: left;
    }
    
    .founder-image img {
        max-width: 300px;
        height: 400px;
    }
    
    .story-content {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-featured-image {
        height: 300px;
    }
    
    .blog-post-body h2 {
        font-size: 1.6rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.3rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-text h2 {
        font-size: 2rem;
    }
    
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quote-summary {
        padding: 15px;
    }
    
    .quote-total-final .quote-label,
    .quote-total-final .quote-amount {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-section h2 {
        font-size: 2rem;
    }
    
    .addon-card {
        padding: 25px 15px;
    }
}
