/* ReFresh Cleaning Pros - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

a, button {
    -webkit-tap-highlight-color: rgba(0, 128, 128, 0.2);
}

img {
    max-width: 100%;
}

/* Top bar - contact info & CTA */
.top-bar {
    background: #006666;
    color: #fff;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar .top-bar-cta {
    background: #fff;
    color: #008080;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.top-bar .top-bar-cta:hover {
    background: #00a99d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Header & Nav */
header {
    background: #fff;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 75px;
    overflow: hidden;
}

.logo a {
    display: flex;
    height: 100%;
}

.logo img {
    height: 100%;
    max-height: 90px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #008080;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #00a99d;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00a99d;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta {
    background: linear-gradient(135deg, #008080 0%, #00a99d 100%);
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0, 128, 128, 0.3);
}

.cta:hover {
    background: linear-gradient(135deg, #006666 0%, #008080 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.4);
}

/* Mobile menu button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #008080;
    position: relative;
    transition: all 0.3s ease;
}

.menu-btn span::before,
.menu-btn span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #008080;
    transition: all 0.3s ease;
}

.menu-btn span::before {
    top: -8px;
}

.menu-btn span::after {
    bottom: -8px;
}

.menu-btn.active span {
    background: transparent;
}

.menu-btn.active span::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-btn.active span::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero slider */
.hero {
    position: relative;
    height: 85vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    display: flex;
    height: 100%;
    width: 100%;
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero overlay content (Refresh Nova style) */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-content .section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .service-area-badge {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.95;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.hero-badges li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-badges li::before {
    content: "✓";
    font-weight: bold;
    color: #90EE90;
}

.hero-content .cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content .cta-primary {
    background: #fff;
    color: #008080;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-content .cta-primary:hover {
    background: #f0f0f0;
    color: #006666;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.hero-content .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.slider-dots {
    display: none;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 13px;
    margin: -13px 0;
    transition: all 0.3s ease;
    box-sizing: content-box;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Sections */
.services, .about, .testimonials, .contact {
    padding: 60px 40px;
    text-align: center;
}

.services h2, .about h2, .testimonials h2, .contact h2 {
    font-size: 2.5rem;
    color: #006666;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-list, .testimonial-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service, .testimonial {
    width: 30%;
    min-width: 250px;
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 128, 128, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 128, 128, 0.06);
    overflow: hidden;
}

.service:hover, .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 128, 128, 0.12);
}

.service > h3,
.service > ul,
.service > a.cta {
    padding-left: 24px;
    padding-right: 24px;
}

.service > h3 {
    padding-top: 22px;
}

.service > ul {
    padding-bottom: 8px;
}

.service > a.cta {
    padding-bottom: 24px;
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 8px;
}

.testimonial {
    padding: 28px 26px 24px;
}

.service h3, .testimonial span {
    color: #008080;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.testimonial p {
    font-style: italic;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444;
    padding-left: 20px;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: rgba(0, 128, 128, 0.2);
    line-height: 1;
}

.about p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Why Moncton Chooses ReFresh - points below heading, image to side */
.why-choose-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 30px auto 0;
    text-align: left;
}

.why-choose-content {
    flex: 1;
    min-width: 0;
}

.why-choose-content .section-label {
    margin-top: 0;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.why-choose-list li::before {
    content: "✓";
    font-weight: bold;
    color: #008080;
    flex-shrink: 0;
}

.why-choose-image {
    flex-shrink: 0;
}

.why-choose-image img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.about img, .service img {
    max-width: 100%;
    border-radius: 10px;
}

/* Service card images - consistent aspect ratio */
.service {
    display: flex;
    flex-direction: column;
}

.service img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.service ul {
    text-align: left;
    margin: 0 0 8px;
}

/* About section single image (home page) */
.about img {
    max-width: 500px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Why Choose Us & Service Areas */
.why-choose, .service-areas, .faq-section {
    padding: 60px 40px;
    text-align: center;
    background: #f9f9f9;
}

.why-choose h2, .service-areas h2, .faq-section h2 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 40px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    flex: 1 1 200px;
    max-width: 280px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 128, 128, 0.12);
}

.why-item h3 {
    color: #008080;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-areas ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.service-areas li {
    padding: 14px 28px;
    background: #fff;
    border-radius: 50px;
    color: #008080;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 128, 0.08);
}

.service-areas li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.12);
    border-color: rgba(0, 128, 128, 0.2);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    padding: 24px 28px 24px 32px;
    margin-bottom: 16px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 128, 128, 0.08);
    border-left-color: #008080;
}

.faq-item h3 {
    color: #008080;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
}

/* Contact info block */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item strong {
    display: block;
    color: #008080;
    margin-bottom: 5px;
}

/* About page - image grid */
.about-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.about-images img {
    width: 100%;
    max-width: 380px;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact input:focus, .contact textarea:focus {
    outline: none;
    border-color: #008080;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

.contact button {
    background: #008080;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #006666;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* Page header (inner pages) */
.page-header {
    background: linear-gradient(135deg, #008080 0%, #00a99d 100%);
    color: #fff;
    text-align: center;
    padding: 80px 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Home intro section */
.home-intro {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-intro h2 {
    color: #008080;
    font-size: 2rem;
    margin-bottom: 20px;
}

.home-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.home-intro .cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section labels (small caps style) */
.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #008080;
    margin-bottom: 12px;
    font-weight: 600;
    opacity: 0.9;
}

/* Work Process section */
.work-process {
    padding: 60px 40px;
    background: #f9f9f9;
    text-align: center;
}

.work-process h2 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 200px;
    max-width: 250px;
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.process-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, #008080 0%, #00a99d 100%);
    color: #fff;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.35);
    transition: all 0.3s ease;
}

.process-step:hover .step-num {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(0, 128, 128, 0.45);
}

.process-step h3 {
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

/* Promo banner */
.promo-banner {
    background: linear-gradient(135deg, #008080 0%, #006666 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banner h2 {
    font-size: 2.1rem;
    margin-bottom: 14px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-banner p {
    font-size: 1.2rem;
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.promo-banner strong {
    color: #a8f5e8;
}

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

/* Service cards with bullet lists */
.service ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.service ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer - multi column (Refresh Nova style) */
/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #008080;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #006666;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 128, 128, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
    display: none;
    padding-bottom: env(safe-area-inset-bottom, 0);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #008080;
    padding: 12px 20px;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    background: #fff;
    color: #008080;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-bar a:last-child {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
}

.mobile-cta-bar a:first-child {
    background: #fff;
    color: #008080;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
    }

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom, 0));
        overflow-x: hidden;
    }
}

footer {
    background: #006666;
    color: #fff;
    padding: 50px 40px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 8px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

/* Social links with icons */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-links .fab {
    font-size: 1.4rem;
}

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

/* Tablet / small desktop - like Refresh Nova */
@media (max-width: 991px) {
    .services, .about, .testimonials, .contact, .why-choose, .service-areas, .faq-section {
        padding: 50px 24px;
    }

    .service, .testimonial {
        min-width: 280px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Top bar - compact, hide on very small or simplify */
    .top-bar {
        padding: 8px 16px;
        font-size: 0.8rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .top-bar span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-bar a[href^="tel"] {
        font-weight: 700;
        white-space: nowrap;
    }

    .top-bar .top-bar-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Section spacing - more breathing room */
    .services, .about, .testimonials, .contact, .why-choose, .service-areas, .faq-section {
        padding: 48px 20px;
    }

    .services h2, .about h2, .testimonials h2, .contact h2, .work-process h2 {
        font-size: 1.65rem;
        margin-bottom: 28px;
        line-height: 1.25;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    /* Hero - like Refresh Nova: full content overlay, clean spacing */
    .hero {
        min-height: 70vh;
        min-height: 70dvh;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 24px 20px 40px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-content .section-label {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    /* Hide intro paragraph on mobile - reduces clutter */
    .hero-content p:not(.service-area-badge):not(.section-label) {
        display: none;
    }

    .hero-content .service-area-badge {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 18px;
        opacity: 0.95;
    }

    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-badges li {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero-content .cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 300px;
        padding: 0;
        margin: 0 auto;
    }

    .hero-content .cta-group .cta {
        width: 100%;
        text-align: center;
        padding: 14px 22px;
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 80px; /* Above mobile CTA bar */
        gap: 10px;
    }


    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        min-width: 48px;
        min-height: 48px;
    }

    /* Service cards - full width, better spacing */
    .service-list, .testimonial-list {
        gap: 24px;
    }

    .service, .testimonial {
        width: 100%;
        min-width: 100%;
        padding: 24px 20px;
    }

    .service img {
        width: 100%;
        height: 180px;
        min-height: 140px;
        max-height: 50vw;
        object-fit: cover;
        object-position: center;
        border-radius: 12px 12px 0 0;
    }

    .service h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .service ul li {
        font-size: 0.9rem;
    }

    .about img {
        max-width: 100%;
        max-height: 240px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .about-images img {
        width: 100%;
        max-width: 100%;
        height: 200px;
        min-height: 160px;
        object-fit: cover;
        object-position: center;
    }

    .why-grid, .about-images {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-block {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .why-choose-content {
        text-align: center;
    }

    .why-choose-list {
        text-align: left;
        display: inline-block;
        margin: 12px auto 0;
    }

    .why-choose-image img {
        max-width: 100%;
    }

    .why-item {
        max-width: 100%;
    }

    /* Work process - stack on mobile */
    .work-process {
        padding: 40px 20px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }

    /* Promo banner */
    .promo-banner {
        padding: 40px 20px;
    }

    .promo-banner h2 {
        font-size: 1.4rem;
    }

    .promo-banner p {
        font-size: 1rem;
    }

    .promo-banner .cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Footer */
    footer {
        padding: 40px 20px 30px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    /* Page header (inner pages) */
    .page-header {
        padding: 50px 20px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact form */
    .contact form {
        padding: 0;
    }

    .contact input, .contact textarea {
        padding: 12px 16px;
    }

    .map iframe {
        height: 300px;
    }

    /* Header */
    header {
        padding: 12px 16px;
        height: auto;
        min-height: 65px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .menu-btn {
        display: block;
        grid-column: 1;
        justify-self: start;
        width: 44px;
        height: 44px;
    }

    .logo {
        grid-column: 2;
    }

    .logo img {
        max-height: 65px;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        padding: 90px 24px 120px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 18px 20px;
        font-size: 1.1rem;
        min-height: 52px;
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a.cta {
        margin: 16px auto 0;
        max-width: 200px;
        border-radius: 30px;
    }

    .cta {
        padding: 16px 28px;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-slider {
        height: 100%;
    }

    /* FAQ */
    .faq-item {
        padding: 18px 20px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    /* Service areas */
    .service-areas ul {
        gap: 10px 16px;
    }

    .service-areas li {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Top bar - compact strip like Refresh Nova (phone + Book Today) */
    .top-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .top-bar span {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }

    .top-bar .top-bar-cta {
        flex-shrink: 0;
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    header {
        padding: 10px 16px;
        min-height: 56px;
    }

    .logo img {
        max-height: 50px;
    }

    .services, .about, .testimonials, .contact, .why-choose, .service-areas, .faq-section {
        padding: 36px 16px;
    }

    .services h2, .about h2, .testimonials h2, .contact h2, .work-process h2 {
        font-size: 1.45rem;
    }

    .hero-content {
        padding: 20px 16px 36px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

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

    .hero-content .service-area-badge {
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

    /* Hide badges on smallest screens - headline + area + CTAs only */
    .hero-badges {
        display: none;
    }

    .hero-content .cta-group {
        max-width: 280px;
        margin-top: 4px;
    }

    .hero-content .cta-group .cta {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .service img {
        height: 150px;
        min-height: 120px;
        max-height: 45vw;
    }

    .about img {
        max-height: 180px;
    }

    .about-images img {
        height: 160px;
        min-height: 130px;
    }

    .mobile-cta-bar {
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
        gap: 12px;
    }

    .mobile-cta-bar a {
        padding: 14px 16px;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .page-header {
        padding: 36px 16px;
    }

    .page-header h1 {
        font-size: 1.45rem;
    }

    .promo-banner {
        padding: 36px 16px;
    }

    .promo-banner h2 {
        font-size: 1.2rem;
    }

    .process-step .step-num {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 1.25rem;
    }

    .map iframe {
        height: 260px;
    }

    body {
        padding-bottom: 80px;
    }

    .back-to-top {
        right: 12px;
        bottom: 95px;
        width: 46px;
        height: 46px;
    }
}
