/* =============================================
   YADIRA'S CLEANING - Main Stylesheet
   Brand Colors: Teal #0891B2 | Dark #1e293b | White #fff
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --teal: #0891B2;
  --teal-dark: #0E7490;
  --teal-deeper: #164E63;
  --teal-light: #CFFAFE;
  --teal-pale: #f0faff;
  --dark: #1e293b;
  --dark-soft: #334155;
  --gray: #64748b;
  --gray-light: #f8fafc;
  --border: #e2e8f0;
  --white: #fff;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: var(--gray-light); }
.section-dark { background: var(--teal-deeper); color: #fff; }
.section-teal { background: var(--teal); color: #fff; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-dark .section-label,
.section-teal .section-label { color: rgba(255,255,255,0.8); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle,
.section-teal .section-subtitle { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-phone {
  background: #16a34a;
  color: #fff;
}
.btn-phone:hover { background: #15803d; transform: translateY(-1px); }

.btn-sms {
  background: #2563eb;
  color: #fff;
}
.btn-sms:hover { background: #1d4ed8; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 12px 28px;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

.btn-nav {
  background: var(--teal);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--teal-dark); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  transition: box-shadow 0.3s;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.navbar-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.navbar-logo span.logo-highlight { color: var(--teal); }

.navbar-links {
  display: flex;
  gap: 28px;
}

.navbar-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--teal); }

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.phone-link:hover { color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-phone .phone-link { display: none; }
  .hamburger { display: flex; }

  .navbar.nav-mobile-open .navbar-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 0;
  }
  .navbar.nav-mobile-open .navbar-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deeper) 0%, #0c6b8a 50%, var(--teal-dark) 100%);
}

/* Decorative floating circles */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

/* Sparkle decorations */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-sparkles span {
  position: absolute;
  color: rgba(255,255,255,0.15);
  font-size: clamp(20px, 3vw, 40px);
  animation: float 6s ease-in-out infinite;
}
.hero-sparkles span:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s; }
.hero-sparkles span:nth-child(2) { top: 25%; right: 12%; animation-delay: 1s; }
.hero-sparkles span:nth-child(3) { top: 60%; left: 6%;  animation-delay: 2s; }
.hero-sparkles span:nth-child(4) { top: 70%; right: 8%; animation-delay: 0.5s; }
.hero-sparkles span:nth-child(5) { top: 40%; right: 5%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 1.1;
}

.hero h1 .highlight { color: var(--teal-light); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-outline { display: none; }
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card-link { display: block; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(8,145,178,0.12);
  border-color: var(--teal);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--teal);
  padding: 24px 0;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.trust-item-icon { font-size: 28px; }

.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-item-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.trust-item-text span {
  font-size: 13px;
  opacity: 0.85;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 24px rgba(8,145,178,0.1);
  border-color: var(--teal);
}

.why-icon { font-size: 36px; margin-bottom: 16px; }

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
}

.stars { font-size: 20px; color: #fbbf24; margin-bottom: 16px; }

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-visual {
  position: relative;
}

.about-visual-box {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-visual-icon { font-size: 72px; }

.about-visual-box h3 {
  font-size: 26px;
  color: #fff;
}

.about-visual-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 280px;
  line-height: 1.7;
}

.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--teal);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(8,145,178,0.3);
}

.about-badge strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.about-badge span { font-size: 12px; opacity: 0.9; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-feature-text strong { display: block; font-size: 15px; margin-bottom: 4px; }
.about-feature-text span { font-size: 14px; color: var(--gray); }

/* =============================================
   SERVICE AREA
   ============================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.area-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}

.area-item:hover { background: rgba(255,255,255,0.18); }

/* =============================================
   CROSS-SELL BANNER
   ============================================= */
.crosssell {
  background: var(--gray-light);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.crosssell-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.crosssell-icon { font-size: 40px; flex-shrink: 0; }

.crosssell-text { flex: 1; min-width: 200px; }

.crosssell-text .eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}

.crosssell-text h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 6px;
}

.crosssell-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--teal-pale); }
.faq-question.open { background: var(--teal-pale); color: var(--teal-dark); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding: 16px 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-text strong { display: block; font-size: 15px; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: 14px; color: var(--gray); }
.contact-detail-text a:hover { color: var(--teal); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.form-title { font-size: 24px; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .check { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--gray); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--teal); }

.footer-contact-item div { color: rgba(255,255,255,0.75); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  padding: 12px 16px;
  gap: 10px;
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
}

.mobile-cta-bar a {
  flex: 1;
  padding: 13px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-cta-bar .call-btn { background: #16a34a; color: #fff; }
.mobile-cta-bar .book-btn { background: var(--teal); color: #fff; }

/* =============================================
   HERO - BACKGROUND IMAGE WITH OVERLAY
   ============================================= */
.hero {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Teal overlay sits between image and content */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,78,99,0.88) 0%, rgba(8,145,178,0.78) 60%, rgba(14,116,144,0.85) 100%);
  z-index: 0;
}

/* Ensure all hero children stack above overlay */
.hero > *:not(.hero-overlay) {
  position: relative;
  z-index: 1;
}

/* =============================================
   ABOUT - REAL PHOTO REPLACING GRADIENT BOX
   ============================================= */
.about-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  min-height: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* =============================================
   PHOTO GALLERY STRIP
   ============================================= */
.photo-strip {
  padding: 0;
  overflow: hidden;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 768px) {
  .photo-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

.photo-strip-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,116,144,0.85) 0%, transparent 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 24px 16px 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-strip-item:hover .photo-strip-label {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SERVICE CARDS WITH TOP PHOTO
   ============================================= */
.service-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.service-card.has-photo .service-card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card.has-photo:hover .service-card-photo {
  transform: scale(1.04);
}

.service-card.has-photo .service-card-body {
  padding: 24px;
}

/* =============================================
   CLEANER SMILING - BOTTOM BANNER IMAGE
   ============================================= */
.team-banner {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}


/* ---- Nav Dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 230px;
  padding: 8px 0;
  z-index: 999;
  border: 1px solid #e8f4f8;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  color: #333 !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f0faff;
  color: var(--teal, #0891B2) !important;
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-menu.mobile-open { display: block; }
  .nav-dropdown-menu a { font-size: 14px; padding: 8px 0; color: rgba(255,255,255,0.85) !important; }
  .nav-dropdown-menu a:hover { background: transparent; color: #fff !important; }
}

/* ---- Service Card Learn More Link ---- */
.service-learn-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal, #0891B2);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s, gap 0.2s;
}

.service-learn-more:hover {
  color: var(--teal-dark, #0E7490);
  text-decoration: underline;
}

/* ---- Logo Images ---- */
.navbar-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .navbar-logo-img { height: 34px; }
}

/* ---- Fully Clickable Service Cards ---- */
.service-card {
  position: relative;
  cursor: pointer;
}

/* Stretch the learn-more anchor to cover the entire card invisibly */
.service-card .service-learn-more::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
