/* ABC Home 6 - Complete Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #006B7D;
    --secondary: #0097a7;
    --accent: #ffc107;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --text: #333;
    --text-light: #777
    --primary-light: #00b8d4; /* Keep for backgrounds only */
    --text-gray: #555;       /* Darker gray */
    --text-dark: #333;       /* Dark text */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text)
}

/* Top Bar */
.top-bar { background: var(--dark); color: white; padding: 12px 0; font-size: 14px; }
.top-bar-content { display: flex; justify-content: space-between; }
.top-left { display: flex; gap: 30px; }
.top-bar i { margin-right: 8px; color: var(--primary); }
.top-bar a:hover { color: var(--primary); }

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px)
}

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

.btn-appointment {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo img {
    height: 60px
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all .3s
}

.nav-menu a:hover::after,
.nav-menu li.active a::after {
    width: 100%
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0
}

.hero-section {
    padding: 150px 0;
    text-align: center;
    color: white
}

.hero-subtitle {
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase
}

.hero-section h1 {
    font-size: 64px;
    margin: 20px 0;
    line-height: 1.2
}

.hero-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 40px;
    opacity: 0.95
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center
}

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

.section-subtitle {
    display: inline-block;
    font-size: 32px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto
}

.how-work-section {
    padding: 80px 0;
    background: white
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.work-step {
    text-align: center
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px
}

.work-step h3 {
    margin-bottom: 15px;
    color: var(--dark)
}

.about-section {
    padding: 80px 0;
    background: var(--light)
}

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

.about-image img {
    border-radius: 10px;
    width: 100%
}

.about-content .section-subtitle {
    display: block;
    margin-bottom: 10px
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light)
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600
}

.feature-item i {
    color: var(--primary);
    font-size: 20px
}

.appointment-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary))
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.form-wrapper h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 40px
}

.appointment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.appointment-form input,
.appointment-form select {
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%
}

.appointment-form button {
    grid-column: 1/3
}

.services-section {
    padding: 80px 0;
    background: white
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

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

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

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

.service-card h3 {
    padding: 20px 20px 10px;
    color: var(--dark)
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light)
}

.why-choose-section {
    padding: 80px 0;
    background: var(--light)
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600
}

.feature i {
    color: var(--primary);
    font-size: 20px
}

.video-intro {
    position: relative
}

.video-intro img {
    border-radius: 10px;
    width: 100%
}

.cta-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: -100px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
}

.phone-number {
    display: block;
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 15px
}

.pricing-section {
    padding: 80px 0;
    background: white
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.pricing-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all .3s
}

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

.pricing-card h3 {
    margin-bottom: 30px;
    font-size: 24px
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px
}

.pricing-card li {
    padding: 10px 0;
    color: var(--text-light)
}

.pricing-card i {
    color: var(--primary);
    margin-right: 10px
}

.price {
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px
}

.price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400
}

.team-section {
    padding: 80px 0;
    background: var(--light)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.team-member {
    text-align: center
}

.team-member img {
    width: 255px;
    height: 255px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px
}

.team-member h3 {
    margin-bottom: 5px
}

.team-member p {
    color: var(--primary)
}

.testimonials-section {
    padding: 80px 0;
    background: white
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.testimonial {
    background: var(--light);
    padding: 40px;
    border-radius: 10px
}

.testimonial p {
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%
}

.testimonial-author h4 {
    margin-bottom: 5px
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light)
}

.blog-section {
    padding: 80px 0;
    background: var(--light)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all .3s
}

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

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

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 18px
}

.blog-meta {
    padding: 0 20px 20px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light)
}

.main-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px
}

.footer-col h3,
.footer-col h5 {
    margin-bottom: 20px
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px
}

.footer-info {
    list-style: none
}

.footer-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7)
}

.footer-info i {
    color: var(--primary);
    margin-top: 3px
}

.footer-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px
}

.footer-post img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover
}

.footer-post h5 {
    font-size: 14px;
    margin-bottom: 5px
}

.footer-post span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5)
}

.newsletter-form {
    display: flex;
    gap: 10px
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7)
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all .3s;
        z-index: 999
    }

    .nav-menu.active {
        left: 0
    }

    .hero-section h1 {
        font-size: 42px
    }

    .about-layout,
    .why-choose-layout {
        grid-template-columns: 1fr
    }

    .work-steps,
    .services-grid,
    .pricing-grid,
    .team-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr
    }

    .appointment-form {
        grid-template-columns: 1fr
    }

    .appointment-form button {
        grid-column: 1
    }

    .footer-content {
        grid-template-columns: 1fr
    }
}


/* ========================================
   START OF MOBILE RESPONSIVE CSS
   ======================================== */

/* Base Mobile-First Styles */
* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

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

/* Container Fix */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.check-item::before {
  content: "✔";
  color: #2E7D32;
  font-weight: bold;
  margin-top: 2px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

/* ===============================
   SERVICE CARD
================================= */

.service-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: #00b8d4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}


.icon-lg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.service-text {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}
/* ===============================
   ICON SYSTEM (Lightweight SVG)
================================= */

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: currentColor;
  vertical-align: middle;

  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

/* Larger version if needed */
.icon-lg {
  width: 28px;
  height: 28px;
}

/* CHECK */
.icon-check {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E");
}

/* SHIELD (Bond Back Guarantee) */
.icon-shield {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2l7 4v6c0 5-3.8 9.7-7 10-3.2-.3-7-5-7-10V6l7-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2l7 4v6c0 5-3.8 9.7-7 10-3.2-.3-7-5-7-10V6l7-4z'/%3E%3C/svg%3E");
}

/* PHONE */
.icon-phone {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11.7 11.7 0 003.7.6 1 1 0 011 1V21a1 1 0 01-1 1C10.1 22 2 13.9 2 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.3.2 2.6.6 3.7a1 1 0 01-.25 1L6.6 10.8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8a15.1 15.1 0 006.6 6.6l2.2-2.2a1 1 0 011-.24 11.7 11.7 0 003.7.6 1 1 0 011 1V21a1 1 0 01-1 1C10.1 22 2 13.9 2 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.3.2 2.6.6 3.7a1 1 0 01-.25 1L6.6 10.8z'/%3E%3C/svg%3E");
}

/* STAR (Testimonials) */
.icon-star {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 17.3l-6.2 3.7 1.6-7.1L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-5.4 4.7 1.6 7.1z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 17.3l-6.2 3.7 1.6-7.1L2 9.2l7.2-.6L12 2l2.8 6.6 7.2.6-5.4 4.7 1.6 7.1z'/%3E%3C/svg%3E");
}
/* EMAIL */
.icon-email {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 00-2 2v.01l10 6 10-6V6a2 2 0 00-2-2zm0 4.24l-8 4.8-8-4.8V18a2 2 0 002 2h12a2 2 0 002-2V8.24z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 00-2 2v.01l10 6 10-6V6a2 2 0 00-2-2zm0 4.24l-8 4.8-8-4.8V18a2 2 0 002 2h12a2 2 0 002-2V8.24z'/%3E%3C/svg%3E");
}
.icon-users {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16 11c1.7 0 3-1.3 3-3S17.7 5 16 5s-3 1.3-3 3 1.3 3 3 3zM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3zm0 2c-2.7 0-8 1.3-8 4v2h10v-2c0-1.4.5-2.6 1.4-3.6C10.6 13.2 9.3 13 8 13zm8 0c-.3 0-.7 0-1 .1 1.2.8 2 2 2 3.9v2h7v-2c0-2.7-5.3-4-8-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16 11c1.7 0 3-1.3 3-3S17.7 5 16 5s-3 1.3-3 3 1.3 3 3 3zM8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3zm0 2c-2.7 0-8 1.3-8 4v2h10v-2c0-1.4.5-2.6 1.4-3.6C10.6 13.2 9.3 13 8 13zm8 0c-.3 0-.7 0-1 .1 1.2.8 2 2 2 3.9v2h7v-2c0-2.7-5.3-4-8-4z'/%3E%3C/svg%3E");
}
.icon-leaf {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8C8 8 5 15 5 15s4 3 8 3c5 0 6-7 6-7s-1-3-2-3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 8C8 8 5 15 5 15s4 3 8 3c5 0 6-7 6-7s-1-3-2-3z'/%3E%3C/svg%3E");
}

.icon-fire {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2s4 4 4 8-4 6-4 6-4-2-4-6 4-8 4-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2s4 4 4 8-4 6-4 6-4-2-4-6 4-8 4-8z'/%3E%3C/svg%3E");
}

.icon-bath {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 13h18v3H3zM7 6a3 3 0 016 0v2H7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 13h18v3H3zM7 6a3 3 0 016 0v2H7z'/%3E%3C/svg%3E");
}

.icon-kitchen-sink {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8h16v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 3v5M8 8l-4 4h8l-4-4zM16 8l4 4h-8l4-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8h16v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 3v5M8 8l-4 4h8l-4-4zM16 8l4 4h-8l4-4z'/%3E%3C/svg%3E");
}
.icon-shower {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 18v4M8 18h8'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 18v4M8 18h8'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z'/%3E%3C/svg%3E");
}
.icon-couch {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 10h18v6H3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 10h18v6H3z'/%3E%3C/svg%3E");
}

.icon-window {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 4h18v16H3zM3 9h18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 4h18v16H3zM3 9h18'/%3E%3C/svg%3E");
}

.icon-paint {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h14v4H3zM17 7h4v10h-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h14v4H3zM17 7h4v10h-4z'/%3E%3C/svg%3E");
}
.icon-vacuum {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M18 8h-1a4 4 0 0 0-4 4v6a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-6a4 4 0 0 0-4-4H2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 6a4 4 0 1 1 8 0v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2V6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M18 8h-1a4 4 0 0 0-4 4v6a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2v-6a4 4 0 0 0-4-4H2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 6a4 4 0 1 1 8 0v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2V6z'/%3E%3C/svg%3E");
}
.icon-bulb {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a6 6 0 00-6 6c0 2.5 1.5 4 3 5v3h6v-3c1.5-1 3-2.5 3-5a6 6 0 00-6-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a6 6 0 00-6 6c0 2.5 1.5 4 3 5v3h6v-3c1.5-1 3-2.5 3-5a6 6 0 00-6-6z'/%3E%3C/svg%3E");
}
.icon-bulb-solid {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7z'/%3E%3C/svg%3E");
}

.icon-door {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 3h10v18H6zM9 12h2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 3h10v18H6zM9 12h2'/%3E%3C/svg%3E");
}
.icon-door-open {
  display: inline-block;
  width: 32px;
  height: 32px;

  
  /* The SVG path converted to a data URI */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320V80c0-26.5-21.5-48-48-48H96C69.5 32 48 53.5 48 80v336c0 5.3.4 10.5 1.3 15.7L170.7 128H544c26.5 0 48 21.5 48 48v240c8.8 0 16-7.2 16-16V128zM544 320c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath d='M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320V80c0-26.5-21.5-48-48-48H96C69.5 32 48 53.5 48 80v336c0 5.3.4 10.5 1.3 15.7L170.7 128H544c26.5 0 48 21.5 48 48v240c8.8 0 16-7.2 16-16V128zM544 320c-13.3 0-24-10.7-24-24s10.7-24 24-24 24 10.7 24 24-10.7 24-24 24z'/%3E%3C/svg%3E");
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-home {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3l9 9h-3v8H6v-8H3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3l9 9h-3v8H6v-8H3z'/%3E%3C/svg%3E");
}

.icon-balcony {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v2H3V5zm0 4h18v10H3V9zm2 2v6h14v-6H5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 5h18v2H3V5zm0 4h18v10H3V9zm2 2v6h14v-6H5z'/%3E%3C/svg%3E");
}
/* ========================================
   HEADER & NAVIGATION - MOBILE
   ======================================== */

/* Top Bar - Mobile */


@media (max-width: 768px) {
    .top-bar {
        background: #2c3e50 !important;
        padding: 12px 0 !important;
    }
    
    .top-bar-content {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    
    .top-left {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .top-left span {
        color: white !important;
        font-size: 14px !important;
        justify-content: center !important;
    }
    
    .top-left span i {
               font-size: 16px !important;
    }
    
    .top-left a {
        color: white !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        text-decoration: none !important;
    }
}

/* Header - Mobile */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 50px;
        max-width: 200px;
    }
    
    /* Hamburger Menu */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: all 0.3s;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: all 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li a {
        display: block;
        padding: 20px;
        font-size: 18px;
        width: 100%;
    }
}

/* ========================================
   HERO SECTION - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px !important;
        padding: 40px 15px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-content {
        padding: 30px 10px !important;
    }
    
    .hero-badge {
        font-size: 12px !important;
        padding: 6px 15px !important;
    }
    
    .hero-section h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-section h1 br {
        display: none; /* Remove line break on mobile */
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    /* Hero Buttons - Mobile */
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 25px !important;
        font-size: 16px !important;
        justify-content: center !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Trust Badges - Mobile */
    .trust-badges {
        flex-direction: column !important;
        gap: 12px !important;
        font-size: 14px !important;
    }
    
    /* Hero Features Grid - Mobile */
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        max-width: 100% !important;
    }
}

/* ========================================
   SECTIONS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* All Sections */
    section {
        padding: 50px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px !important;
    }
    
    .section-subtitle {
        font-size:38px !important;
        letter-spacing: 1px !important;
    }
    
    .section-header h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin: 10px 0 15px !important;
    }
    
    .section-header p {
        font-size: 16px !important;
    }
}

/* ========================================
   GRIDS - MOBILE (3 COLUMNS → 1 COLUMN)
   ======================================== */

@media (max-width: 768px) {
    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ========================================
   SERVICE CARDS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px !important;
        text-align: center;
    }
    
    .service-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin: 0 auto 15px !important;
    }
    
    .service-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .service-card p {
        font-size: 14px !important;
    }
}

/* ========================================
   FEATURE CARDS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .feature-card {
        padding: 25px 20px !important;
    }
    
    .feature-card i {
        font-size: 32px !important;
    }
    
    .feature-card h3 {
        font-size: 18px !important;
    }
    
    .feature-card p {
        font-size: 15px !important;
    }
}

/* ========================================
   PRICING CARDS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px !important;
        transform: none !important; /* Remove scale on mobile */
        margin: 0 !important;
    }
    
    .pricing-card h3 {
        font-size: 20px !important;
    }
    
    .pricing-card .price {
        font-size: 40px !important;
    }
    
    .pricing-card ul {
        font-size: 15px !important;
    }
    
    .pricing-card ul li {
        padding: 8px 0 !important;
    }
}

/* ========================================
   SUBURBS SECTION - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .suburbs-section > div > div {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        font-size: 14px !important;
    }
    
    .suburbs-section > div > div > div {
        padding: 8px 5px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .suburb-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
    }
    
    .suburb-grid > div {
        padding: 10px 8px !important;
        font-size: 13px !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
        min-height: 45px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ========================================
   TESTIMONIALS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px !important;
    }
    
    .testimonial-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    .testimonial-card img {
        width: 50px !important;
        height: 50px !important;
    }
}

/* ========================================
   CTA SECTIONS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .cta-section p {
        font-size: 16px !important;
        margin-bottom: 25px !important;
    }
    
    .cta-section .hero-buttons {
        flex-direction: column !important;
    }
    
    .cta-section a {
        width: 100% !important;
        padding: 16px 30px !important;
        font-size: 17px !important;
    }
}

/* ========================================
   BUTTONS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 28px !important;
        font-size: 16px !important;
        width: 100%;
        max-width: 100%;
        display: block !important;
        text-align: center !important;
    }
    
    /* CTA Buttons Container */
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .cta-buttons a {
        width: 100% !important;
    }
}

/* ========================================
   FOOTER - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 20px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        height: 50px !important;
        margin: 0 auto 15px !important;
    }
    
    .footer-col h3 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    
    .footer-col ul {
        text-align: center;
    }
    
    .footer-col ul li {
        justify-content: center;
        margin-bottom: 12px !important;
    }
    
    .newsletter-form {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .newsletter-form input {
        width: 100% !important;
    }
    
    .newsletter-form button {
        width: 100% !important;
        padding: 12px !important;
    }
    
    .footer-bottom {
        font-size: 13px !important;
        padding-top: 20px !important;
    }
}

/* ========================================
   MOBILE FLOATING BUTTON
   ======================================== */

.mobile-quote-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-quote-btn {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #00b8d4;
        color: white;
        padding: 16px 20px;
        text-align: center;
        font-weight: 800;
        font-size: 17px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
        z-index: 9999;
        text-decoration: none;
        border: none;
        width: 100%;
    }
    
    .mobile-quote-btn i {
        margin-right: 8px;
    }
    
    /* Add padding to body to prevent content being hidden */
    body {
        padding-bottom: 70px;
    }
}

/* ========================================
   TEXT & TYPOGRAPHY - MOBILE
   ======================================== */

@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }
    
    h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
    
    h4 {
        font-size: 18px !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* ========================================
   INTRO SECTION - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .intro-section {
        padding: 50px 0 !important;
    }
    
    .intro-content {
        padding: 0 15px !important;
    }
    
    .intro-content h2 {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
    
    .intro-content p {
        font-size: 16px !important;
        margin-bottom: 18px !important;
    }
}

/* ========================================
   STEP CARDS - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .step-card {
        padding: 30px 20px !important;
    }
    
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 28px !important;
        margin: 0 auto 15px !important;
    }
    
    .step-card h3 {
        font-size: 19px !important;
        margin-bottom: 12px !important;
    }
    
    .step-card p {
        font-size: 15px !important;
    }
}

/* ========================================
   UTILITIES - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile-only elements */
    .mobile-only {
        display: block !important;
    }
    
    /* Full width on mobile */
    .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Remove margins on mobile */
    .mobile-no-margin {
        margin: 0 !important;
    }
    
    /* Center text on mobile */
    .mobile-text-center {
        text-align: center !important;
    }
}

/* ========================================
   FIX HORIZONTAL SCROLL
   ======================================== */

@media (max-width: 768px) {
    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100vw;
    }
    
    /* Fix common overflow issues */
    .container,
    section,
    div {
        overflow-x: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix wide tables */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
}

/* ========================================
   TOUCH OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) {
    /* Larger touch targets */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch */
    @media (hover: none) {
        a:hover,
        button:hover,
        .btn:hover {
            transform: none !important;
        }
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
}

/* ========================================
   LANDSCAPE MODE (PHONES)
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px !important;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
}

/* ========================================
   SMALL MOBILE (< 375px)
   ======================================== */

@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 24px !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .hero-buttons a {
        font-size: 15px !important;
        padding: 14px 20px !important;
    }
    
    .section-header h2 {
        font-size: 22px !important;
    }
    
    .container {
        padding: 0 10px !important;
    }
}

/* ========================================
   END OF MOBILE RESPONSIVE CSS
   ======================================== */

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Service Detail Sections */
.service-detail-section {
    padding: 80px 0;
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #333;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-detail-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-icon-large {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

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

.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-start;
}

.check-list .check-icon {
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    min-width: 20px;
}

.check-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Info Box */
.info-box {
    background: rgba(0, 184, 212, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid #00b8d4;
}

.info-box p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

/* General Cleaning Grid */
.general-cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.general-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.general-service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.general-service-card ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: #555;
    text-align: left;
}

.general-service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Additional Services Grid */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.addon-service-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
}

.addon-service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.addon-service-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: #00b8d4;
    margin-bottom: 10px;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #00b8d4;
    margin-bottom: 10px;
}

.stat-label {
    color: #555;
    font-size: 16px;
    margin: 0;
}

/* Standards Section */
.standards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00b8d4, #0097a7);
    color: white;
    text-align: center;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.standards-grid > div {
    text-align: center;
}

.standards-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.standards-grid p {
    opacity: 0.9;
    font-size: 15px;
}

/* ========================================
   COLLAPSIBLE FAQ STYLES
   ======================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    background: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    font-size: 24px;
    color: #00b8d4;
    font-weight: bold;
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* ========================================
   MOBILE RESPONSIVE - SERVICES PAGE
   ======================================== */

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Swap order on mobile for better UX */
    .service-detail-grid > div:first-child {
        order: 2;
    }
    
    .service-detail-grid > div:last-child {
        order: 1;
    }
    
    .service-detail-content h2 {
        font-size: 28px !important;
    }
    
    .service-icon-large {
        font-size: 40px !important;
    }
    
    .general-cleaning-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .stat-number {
        font-size: 36px !important;
    }
    
    .standards-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .faq-question h3 {
        font-size: 16px !important;
    }
    
    .faq-icon {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .additional-services-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Mobile Responsive CSS for Hero Form -*/

@media (max-width: 968px) {
    .hero-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .hero-section h1 {
        font-size: 36px !important;
    }
    
    .hero-section p {
        font-size: 18px !important;
    }
    
    /* Make form full width on tablet */
    .hero-section > .container > div > div:last-child {
        max-width: 100% !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px 50px !important;
    }
    
    .hero-section h1 {
        font-size: 28px !important;
    }
    
    .hero-section h1 span {
        font-size: 26px !important;
    }
    
    .hero-section > .container > div > div:first-child p {
        font-size: 16px !important;
    }
    
    .hero-section > .container > div > div:last-child {
        padding: 25px 20px !important;
    }
    
    .hero-section > .container > div > div:last-child h3 {
        font-size: 20px !important;
    }
    
    /* Stack form fields on mobile */
    .hero-section form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}