/* ===== Bea Cleaning — shared styles ===== */
:root {
  --blue: #1a56c4;
  --blue-dark: #123f92;
  --blue-light: #eaf1fc;
  --yellow: #f5c400;
  --yellow-dark: #d9ac00;
  --ink: #2a2f3a;
  --gray: #5f6675;
  --line: #e3e8f2;
  --bg: #ffffff;
  --bg-soft: #f7f9fd;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(26,86,196,0.08);
  --shadow-hover: 0 10px 32px rgba(26,86,196,0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

/* ===== NAV ===== */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem); height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 46px; width: auto; }
.nav-brand .name {
  font-size: 1.3rem; font-weight: 800; color: var(--blue);
  letter-spacing: -0.3px;
}
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  color: var(--gray); font-weight: 600; font-size: 0.96rem;
  padding: 8px 14px; border-radius: 8px; transition: all 0.18s;
}
.nav-menu a:hover { color: var(--blue); background: var(--blue-light); }
.nav-menu a.active { color: var(--blue); background: var(--blue-light); }
.lang-btn {
  margin-left: 8px;
  background: var(--blue); color: #fff; border: none;
  border-radius: 999px; padding: 9px 18px; font-weight: 700;
  font-size: 0.85rem; cursor: pointer; transition: background 0.18s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--blue-dark); }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--blue); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; font-weight: 700; font-size: 1rem;
  padding: 13px 30px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.18s; text-align: center;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--blue-dark); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-block; color: var(--blue); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.5px; color: var(--ink); }
h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--gray); }
.center { text-align: center; }
.mb-s { margin-bottom: 0.75rem; }
.mb-m { margin-bottom: 1.5rem; }
.mb-l { margin-bottom: 2.5rem; }

/* ===== HERO ===== */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.75rem; }
.pill {
  background: var(--blue-light); color: var(--blue-dark);
  font-weight: 600; font-size: 0.88rem; padding: 7px 15px; border-radius: 999px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }

/* ===== PHOTO STRIP ===== */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-strip .shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.photo-strip .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-strip .shot:hover img { transform: scale(1.06); }

/* ===== FEATURE CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--gray); font-size: 0.97rem; }

/* ===== PRICING ===== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.price-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; position: relative; transition: all 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--blue-dark); font-weight: 700;
  font-size: 0.78rem; padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card .pname { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
.price-card .amount { font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -1px; }
.price-card .amount small { font-size: 0.95rem; font-weight: 500; color: var(--gray); letter-spacing: 0; }
.price-card .pdesc { color: var(--gray); font-size: 0.93rem; margin: 0.5rem 0 1.25rem; }
.feat { list-style: none; margin-bottom: 1.75rem; }
.feat li { padding: 6px 0 6px 26px; position: relative; font-size: 0.95rem; color: #444; }
.feat li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  color: #fff; background: var(--blue); width: 18px; height: 18px;
  border-radius: 50%; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ===== FORMS ===== */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-size: 0.97rem; font-family: inherit; color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s; outline: none; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light);
}
.field textarea { resize: vertical; min-height: 90px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.success {
  display: none; background: #e8f8ee; border: 1.5px solid #46b767;
  color: #1d7a3d; border-radius: 10px; padding: 1rem; text-align: center;
  font-weight: 600; margin-top: 1rem;
}

/* ===== CALENDAR ===== */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-head button { background: var(--blue-light); border: none; color: var(--blue); width: 36px; height: 36px; border-radius: 10px; font-size: 1.2rem; cursor: pointer; transition: background 0.15s; }
.cal-head button:hover { background: #d8e5fa; }
.cal-title { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.cal { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.cal .dow { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--gray); padding: 6px 0; text-transform: uppercase; }
.cal .day {
  text-align: center; padding: 10px 0; border-radius: 9px; font-size: 0.9rem;
  cursor: pointer; border: 1.5px solid transparent; transition: all 0.13s;
}
.cal .day:hover:not(.empty):not(.past) { background: var(--blue-light); border-color: var(--blue); }
.cal .day.past { color: #c5cbd6; cursor: default; }
.cal .day.empty { cursor: default; }
.cal .day.today { border-color: var(--yellow); font-weight: 700; }
.cal .day.sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.slots { margin-top: 1.5rem; }
.slots h4 { font-size: 0.9rem; color: var(--ink); margin-bottom: 0.75rem; }
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.slot { padding: 10px 4px; text-align: center; border: 1.5px solid var(--line); border-radius: 9px; font-size: 0.86rem; cursor: pointer; transition: all 0.13s; }
.slot:hover:not(.taken) { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.slot.sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.slot.taken { background: #f3f4f7; color: #b8bdc9; cursor: default; text-decoration: line-through; }
.pickinfo { background: var(--blue-light); border-radius: 10px; padding: 12px 15px; font-size: 0.92rem; color: var(--blue-dark); font-weight: 600; margin-bottom: 1.5rem; min-height: 46px; display: flex; align-items: center; }

/* ===== CTA BANNER ===== */
.cta-band { background: var(--blue); border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.75rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand img { height: 54px; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--gray); font-size: 0.92rem; max-width: 280px; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: var(--gray); font-size: 0.94rem; }
.footer ul li a:hover { color: var(--blue); }
.footer-phone { font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.5rem; text-align: center; color: var(--gray); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.5rem 1rem 1rem; transform: translateY(-120%);
    transition: transform 0.25s; box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 12px 14px; }
  .lang-btn { margin: 0.5rem 0 0; }
  .nav-toggle { display: block; }
}
@media (max-width: 520px) {
  .row2 { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2,1fr); }
}
