/* ===========================
   Multi Marketing Solutions — Global Styles (Final Clean)
   =========================== */

:root {
  --aqua: #2e8fa5;
  --sand: #b38a60;
  --navy: #0b2545;
  --white: #ffffff;

  /* ▶️ Background photo (place file at /assets/mms-bg.jpg) */
  --bg-image: url('mms-bg.jpg');

  /* Overlay strength (0.00–0.60) */
  --overlay: 0.25;
}

/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  color: #2b3e50; /* easy-to-read dark content text */
  line-height: 1.6;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(46,143,165,var(--overlay)) 0%, rgba(179,138,96,var(--overlay)) 100%),
    var(--bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: clamp(120px, 14vh, 200px);
}

/* ===========================
   HEADER — Transparent floating bar
   =========================== */
header {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  padding: 22px 56px;
}

/* LOGO — large and clean */
.logo {
  height: 200px;
  filter:
    drop-shadow(0 4px 8px rgba(0,0,0,0.4))
    brightness(1.2)
    contrast(1.1)
    saturate(1.15);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.logo:hover {
  transform: scale(1.04);
  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,0.45))
    brightness(1.25)
    contrast(1.15)
    saturate(1.2);
}

/* NAVIGATION — right-aligned */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  transition: color .2s ease;
}
nav a:hover { color: var(--sand); }

/* ===========================
   HERO
   =========================== */
.hero {
  text-align: center;
  color: #fff;
  padding: 120px 20px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.hero h1 { font-size: 2.6rem; margin-bottom: 12px; }
.hero p  { font-size: 1.05rem; }

/* Keep hero and headings bright for contrast */
.hero h1,
.hero p,
h1, h2, h3 {
  color: #ffffff;
}

/* Improve section readability on lighter backgrounds */
main section p { color: #2b3e50; }

/* ===========================
   CONTENT PANELS
   =========================== */
main section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 28px 20px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(3px) saturate(1.05);
}
h2 { font-size: 1.6rem; margin-bottom: 14px; }

/* ===========================
   BUTTONS
   =========================== */
.btn, .cta-button, button[type="submit"] {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}
.btn:hover, .cta-button:hover, button[type="submit"]:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================
   SERVICE GRID (cards)
   =========================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.service-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.25);
}
.service-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.service-card p {
  color: #2b3e50;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.price { font-weight: 700; font-size: 1.1rem; color: var(--aqua); }

/* ===========================
   SERVSAFE LIST
   =========================== */
.checklist {
  list-style: none;
  margin: 12px auto 0;
  padding: 0;
  max-width: 720px;
  text-align: left;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  color: #2b3e50;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aqua);
  font-weight: 800;
}
.tiny-note {
  font-size: .82rem;
  opacity: .85;
  margin-top: 8px;
}

/* ===========================
   CONTACT BLOCKS
   =========================== */
.contact-list {
  list-style: none;
  margin: 12px auto 0;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 12px;
}
.contact-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  color: #2b3e50;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  backdrop-filter: blur(2px);
}
.contact-inline-blocks {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: left;
  color: #2b3e50;
}
.contact-inline-blocks p { margin: 8px 0; font-size: 1rem; line-height: 1.5; }
.contact-inline-blocks a { color: var(--aqua); text-decoration: underline; font-weight: 500; }
.contact-inline-blocks strong { display: inline-block; min-width: 90px; font-weight: 700; color: #2b3e50; }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--sand) 100%);
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
  border-top: 2px solid rgba(255,255,255,0.25);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 1200px) {
  .logo { height: 170px; }
}
@media (max-width: 992px) {
  header { padding: 18px 32px; }
  .logo { height: 140px; }
}
@media (max-width: 768px) {
  header { flex-direction: column; gap: 10px; padding: 14px 22px; }
  .logo { height: 100px; }
  .two-col, .service-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
} /* --- Cleaning page polish --- */
.cleaning-notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cleaning-notice p {
  margin: 6px 0;
}

.service-card .price {
  margin: 10px 0 6px;
  font-size: 1.15rem;
}

.note {
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.cleaning-contact {
  margin-top: 16px;
}

.cleaning-contact p {
  margin: 6px 0;
}

