/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #F8F9FA; /* Light gray background */
  color: #343A40; /* Standard dark text */
  line-height: 1.6;
}

/* Visually hidden element for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Main wrapper styling */
.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.logo_01 {
  width: 50px; /* Slightly adjusted */
  height: 50px;
}

/* Header container styling */
.header-container {
  width: 100%;
  background-color: #FFFFFF; /* White header */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Softer shadow */
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure header is on top */
}

.header-inner {
  max-width: 1200px; /* Max width for content */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
}

.nav-group {
  display: flex;
  gap: 5px; /* Spacing between nav items */
  padding: 0; /* No border/padding around group */
}

.nav-link {
  padding: 8px 15px; /* Increased padding */
  border-radius: 25px; /* Rounded corners */
  color: #264653; /* Dark teal/blue text */
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
  background-color: #E0F2F1; /* Light teal hover */
  color: #1A746A;
}

.nav-link-active {
  background-color: #2A9D8F; /* Primary teal */
  color: #fff;
}
.nav-link-active:hover {
  background-color: #228073; /* Darker teal on hover */
  color: #fff;
}

/* Hide nav-link2 logic if still needed, or remove if .nav-link-standalone covers it */
.nav-link2 { display: none; } /* Simplified, as it wasn't used distinctively */


.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon-link { /* Changed from .social-icon-2 */
  display: flex; /* To align image properly if needed */
  align-items: center;
}

.social-icon-img-2 {
  width: 28px; /* Slightly smaller for a cleaner look */
  height: 28px;
  transition: opacity 0.3s ease;
}
.social-icon-img-2:hover {
  opacity: 0.7;
}

.phone-number {
  border: 2px solid #2A9D8F;
  border-radius: 25px;
  padding: 6px 12px;
  color: #2A9D8F;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.phone-number:hover {
  background-color: #2A9D8F;
  color: #fff;
}


/* --- Header Media Queries --- */
@media (min-width: 768px) {
  .header-container { padding: 15px 40px; }
  .nav-menu { gap: 25px; font-size: 17px; }
  .nav-link { padding: 8px 15px; font-size: 15px; }
  .phone-number { padding: 8px 16px; font-size: 14px; }
  .social-icon-img-2 { width: 30px; height: 30px; }
}

@media (min-width: 1024px) {
  .header-container { padding: 15px 70px; }
  .nav-menu { gap: 30px; font-size: 18px; }
  .nav-link { padding: 10px 18px; font-size: 16px; }
  .contact-wrapper { gap: 15px; }
  .social-icon-img-2 { width: 32px; height: 32px; display: block; }
  .phone-number { padding: 10px 20px; font-size: 16px; }
}


/* Hero section styling */
.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 60px 20px; /* Increased padding */
  display: flex;
  justify-content: center;
  background-color: #FFFFFF; /* White background for hero */
  margin-top: 20px; /* Space from header */
  border-radius: 8px; /* Optional subtle rounding */
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Increased gap */
  align-items: center;
  text-align: center; /* Center text for mobile */
}

.hero-text-wrapper {
  flex: 1;
}

.hero-title {
  color: #2A9D8F; /* Primary teal */
  margin-bottom: 20px;
  font: 700 7vw/1.2 "Montserrat", sans-serif; /* Responsive font size with better line height */
}

.hero-description {
  font-size: 18px;
  color: #555; /* Softer text color */
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-button, .book-button, .contact-button {
  background-color: #2A9D8F; /* Primary teal */
  color: #fff;
  border: none;
  border-radius: 30px; /* Consistent rounded buttons */
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none; /* In case it's an <a> styled as button */
  display: inline-block; /* For proper padding and centering */
}
.cta-button:hover, .book-button:hover, .contact-button:hover {
  background-color: #228073; /* Darker teal on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

.hero-image-wrapper {
  flex: 1;
  display: none; /* Hidden on small screens by default */
}
.hero-image {
  width: 100%;
  max-width: 500px; /* Max image width */
  height: auto;
  object-fit: cover;
  border-radius: 8px; /* Optional rounding for image */
}

/* --- Hero Media Queries --- */
@media (min-width: 768px) {
  .hero-container { padding: 80px 40px; }
  .hero-content { flex-direction: row; text-align: left; gap: 40px; }
  .hero-title { font-size: 3.5rem; /* Fixed size for larger screens */ }
  .hero-description { font-size: 1.1rem; }
  .cta-button { padding: 14px 30px; font-size: 17px; }
  .hero-image-wrapper { display: block; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .hero-description { font-size: 1.2rem; }
}


/* Features section */
.features-container {
  max-width: 1200px;
  width:100%;
  padding: 60px 20px;
  margin: 20px auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
  gap: 30px;
}
.feature-card {
  background-color: #FFFFFF; /* White cards */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.feature-image {
  width: 100%;
  max-width: 120px; /* Smaller, cleaner icons */
  margin-bottom: 20px;
  height: auto; /* Maintain aspect ratio */
}
.feature-title {
  margin: 15px 0 10px;
  font: 600 20px "Montserrat", sans-serif;
  color: #264653; /* Dark teal/blue */
}
.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}


/* Cleaning section */
.cleaning-section {
  background-color: #FFFFFF; /* White background for this section */
  padding: 60px 20px;
  width: 100%;
  margin-top:20px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font: 700 36px "Montserrat", sans-serif;
  color: #264653;
}
.cleaning-types-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left:auto;
  margin-right:auto;
}
.cleaning-card {
  background-color: #F8F9FA; /* Light gray cards on white bg */
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #2A9D8F; /* Accent border */
}
.cleaning-number {
  color: #2A9D8F;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}
.cleaning-title {
  margin: 10px 0;
  font: 600 22px "Montserrat", sans-serif;
  color: #264653;
}
.cleaning-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.cleaning-note {
  font-size: 14px;
  line-height: 1.5;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

@media (min-width: 768px) {
  .cleaning-types-wrapper {
    flex-direction: row;
  }
  .section-title { font-size: 40px; margin-bottom: 60px; }
}


/* Room Selector */
.room-selector {
  display: flex;
  gap: 10px; /* Spacing between buttons */
  background-color: #E0F2F1; /* Light teal background for the selector bar */
  border-radius: 30px;
  padding: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.room-button {
  flex: 1;
  min-width: 120px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px; /* Rounded buttons */
  background: transparent; /* Transparent by default */
  font-size: 16px;
  font-weight: 600;
  color: #1A746A; /* Darker teal text */
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.room-button:hover {
  background-color: #B2DFDB; /* Lighter teal on hover */
}
.room-button-active {
  background-color: #2A9D8F; /* Primary teal */
  color: #fff;
}
.room-button-active:hover {
  background-color: #228073;
}

.room-image {
  width: 100%;
  max-width: 800px; /* Control max size */
  height: auto;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
  display: block;
  transition: opacity 0.3s ease-in-out; /* For JS fade */
}
.room-image.image-fade-out {
  opacity: 0;
}


/* Package section */
.package-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 60px 20px;
  max-width: 900px; /* Constrain width */
  margin: 20px auto;
  text-align: center; /* Center title and subtitle */
}
.package-title {
  color: #2A9D8F;
  margin-bottom: 15px;
  font: 700 32px "Montserrat", sans-serif;
}
.package-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}
.package-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  text-align: left; /* Align card content to left */
}
.package-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package-details,
.package-pricing {
  flex: 1;
}
.package-name {
  font-size: 24px;
  font-weight: 600;
  color: #264653;
  margin-bottom: 15px;
}
.package-features {
  font-size: 16px;
  font-weight: 500;
  list-style: disc; /* Use standard bullets */
  margin-left: 20px; /* Indent list */
  color: #555;
}
.package-features li {
  margin-bottom: 8px;
}
.package-pricing {
  text-align: center; /* Center pricing details */
  border-top: 1px solid #EEE; /* Separator for mobile */
  padding-top: 20px; /* Spacing for mobile */
}
.package-price {
  font-size: 36px;
  font-weight: 700; /* Bolder price */
  color: #2A9D8F;
  margin-bottom: 10px;
}
.package-includes {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .package-title { font-size: 36px; }
  .package-subtitle { font-size: 18px; }
  .package-content { flex-direction: row; gap: 40px; }
  .package-pricing { text-align: right; border-top: none; padding-top: 0; } /* Align right on larger screens */
  .package-price { font-size: 42px; }
}


/* Referral section */
.referral-section {
  border-radius: 8px;
  background-color: #2A9D8F; /* Primary teal */
  color: #fff;
  padding: 40px 30px;
  margin: 40px auto;
  text-align: center;
  max-width: 900px;
  width: calc(100% - 40px); /* Full width with padding */
}
.referral-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .referral-text { font-size: 28px; }
}


/* Trust section */
.trust-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.trust-wrapper {
  background-color: #E0F2F1; /* Light teal background */
  border-radius: 12px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-heading {
  color: #264653;
  text-align: center;
  margin-bottom: 40px;
  font: 700 36px "Montserrat", sans-serif;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}
.trust-card {
  background-color: #FFFFFF; /* White cards */
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.card-number {
  color: #2A9D8F;
  margin-bottom: 15px;
  font: 700 28px "Montserrat", sans-serif; /* Bolder number */
}

.card-title {
  color: #264653;
  margin-bottom: 10px;
  font: 600 20px "Montserrat", sans-serif;
}
.card-description {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .trust-wrapper { padding: 60px 40px; }
  .trust-heading { font-size: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); } /* Force 2 columns */
}
@media (min-width: 1024px) {
   /* Keep 2 columns, or adjust if 4 items are better in a single row */
}


/* FAQ section */
.faq-container {
  max-width: 900px; /* Constrain width for readability */
  margin: 60px auto;
  padding: 0 20px;
}
.faq-heading {
  color: #264653;
  text-align: center;
  margin-bottom: 40px;
  font: 700 36px Montserrat, sans-serif;
}
.faq-content {
  background-color: #FFFFFF; /* White background for FAQ content area */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  border-bottom: 1px solid #E0E0E0; /* Lighter border */
  padding-bottom: 20px;
}
.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #264653;
  background: none;
  border: none;
  cursor: pointer;
  font: 600 18px Montserrat, sans-serif; /* Slightly smaller FAQ question */
  text-align: left;
  padding: 10px 0; /* Add some padding to trigger */
}
.faq-icon {
  color: #2A9D8F; /* Primary teal for icon */
  font-size: 20px; /* Adjust icon size */
  transition: transform 0.3s ease;
}
/* .faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); } For plus/minus toggle */
.faq-answer {
  color: #555;
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 10px; /* Indent answer slightly */
}
.price-emphasis { font-weight: 700; color: #228073; } /* Darker teal for emphasis */

.contact-button { /* Re-using .cta-button style */
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

@media (max-width: 991px) { /* Original media queries for FAQ, adapted */
  .faq-heading { font-size: 32px; margin-bottom: 30px; }
  .faq-content { padding: 20px; }
  .faq-trigger { font-size: 17px; }
  .faq-answer { font-size: 15px; }
  .contact-button { margin-top: 30px; padding: 12px 20px; width: auto; max-width: 300px; }
}


/* Price amount (generic) - currently not used directly, .price-amount-f is specific */
.price-amount {
  color: #2A9D8F; /* Primary teal */
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .price-amount { font-size: 36px; }
}

/* Contact Section on Office Page */
.contact-heading-c {
  margin-top: 60px;
  text-align: center;
  font: 700 36px Montserrat, sans-serif;
  color: #264653;
}
.contact-wrapper-c { /* This wraps the support card */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px; /* Max width for contact area */
  margin: 20px auto; /* Centered */
  padding: 0 20px;
}
.support-card {
  border-radius: 8px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.support-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within support card */
}
.support-title {
  text-align: center;
  margin-bottom: 20px;
  font: 600 28px/1.3 Montserrat, sans-serif;
  color: #264653;
}
.support-info {
  display: flex;
  margin-top: 10px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #555;
}
.status-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 15px; /* Spacing */
}
.status-dot {
  background-color: #2A9D8F; /* Primary teal */
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.social-links { /* Re-styling for contact section if needed */
  display: flex;
  gap: 15px; /* Increased gap */
  margin-top: 20px;
  margin-bottom: 10px; /* Space before phone text */
}
.social-icon { /* For social icons in contact card */
  display: flex;
}
.social-icon-img {
  width: 35px; /* Slightly larger for emphasis */
  height: 35px;
  transition: opacity 0.3s ease;
}
.social-icon-img:hover { opacity: 0.7; }

.phone-text {
  margin-top: 15px;
  font-size: 15px;
}
.phone-number-contact { /* Specific class for this phone number */
  color: #2A9D8F;
  font-size: 22px;
  font-weight: 700;
  margin-top: 8px;
  text-decoration: none;
}
.phone-number-contact:hover {
  text-decoration: underline;
}

/* Empty Content Section - visually neutral */
.content-section-f {
  /* No specific styles needed if it's just a structural wrapper */
  padding: 20px 0; /* Minimal padding if it must exist */
}


/* Promo Card F - Bottom Call to Action */
.promo-card-f {
  border-radius: 12px; /* More pronounced rounding */
  background-color: #2A9D8F; /* Primary teal background */
  display: flex;
  margin: 60px auto;
  width: calc(100% - 40px); /* Responsive width */
  max-width: 900px; /* Max width */
  padding: 40px 30px; /* Generous padding */
  flex-direction: column;
  align-items: center;
  color: #fff; /* White text */
  text-align: center;
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3); /* Themed shadow */
}
.promo-content-f {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.promo-title-f { /* Renamed from .promo-title to avoid conflict */
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.4;
  margin-bottom: 20px; /* Space below title */
}
.price-badge-f { /* New wrapper for price */
  background-color: rgba(255,255,255,0.15); /* Semi-transparent white badge */
  padding: 8px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  display: inline-block;
}
.price-amount-f {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1; /* Adjust line height */
  color: #fff; /* Ensure price is white */
  margin: 0; /* Remove default margins */
  background-color: transparent !important; /* Override previous coral */
  padding: 0 !important; /* Override previous padding */
}
.promo-description-f {
  color: rgba(255, 255, 255, 0.9); /* Slightly off-white for description */
  font-weight: 400; /* Regular weight */
  margin-top: 0; /* Adjust if needed, spacing handled by .price-badge-f */
  margin-bottom: 25px; /* Space before button */
  font-size: clamp(15px, 3vw, 17px);
}
.book-button { /* Styles already defined, ensure consistency */
  background-color: #FFFFFF; /* White button on teal bg */
  color: #2A9D8F; /* Teal text */
}
.book-button:hover {
  background-color: #F0F0F0; /* Slightly off-white hover */
  color: #1A746A;
}


/* About Section */
.about-container {
  display: flex;
  margin-top: 60px;
  flex-direction: column;
  width: 100%;
}
.about-background {
  background-color: #E0F2F1; /* Light teal background */
  border-radius: 12px 12px 0 0; /* Rounded top corners */
  padding: 50px 30px 30px;
  width: 100%;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px; /* Constrain content width */
  margin: 0 auto; /* Center content */
  text-align: center;
}
.about-heading {
  color: #264653;
  font: 700 36px "Montserrat", sans-serif; /* Consistent heading style */
  margin-bottom: 30px;
}
.about-description {
  color: #343A40;
  font-size: 17px;
  line-height: 1.7;
  text-align: left; /* Justify or left-align for readability */
  margin-bottom: 30px;
}
.about-footer {
  display: flex;
  justify-content: center; /* Center footer links */
  gap: 20px; /* Space between links */
  width: 100%;
  color: #1A746A; /* Darker teal for links */
  font-size: 16px;
  padding-top: 20px;
  border-top: 1px solid #B2DFDB; /* Subtle separator */
}
.footer-links {
  display: flex;            
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px; /* Add gap here for list items */
}
.copyright-text {
  color: #264653; /* Match other text */
}
.privacy-link {
  color: #1A746A;
  text-decoration: none;
}
.privacy-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) { /* Original media queries, adapted */
  .about-background { padding: 40px 20px 20px; }
  .about-heading { font-size: 30px; margin-bottom: 25px; }
  .about-description { font-size: 16px; margin-bottom: 25px; text-align: center;}
  .about-footer { flex-direction: column; align-items: center; gap: 10px; font-size: 15px; }
}