/* =============================================================
   Lino Professional Cleaning Services — Tampa, FL
   Design system: Trust Blue + Fresh Mint + Sunshine
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --color-primary: #1E88E5;
  --color-primary-dark: #1565C0;
  --color-primary-light: #64B5F6;
  --color-secondary: #4DB6AC;
  --color-secondary-dark: #00897B;
  --color-accent: #FFC107;
  --color-bg: #F7FAFC;
  --color-surface: #FFFFFF;
  --color-text: #1F2937;
  --color-text-soft: #4B5563;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-error: #EF4444;

  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 10px 25px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 20px 40px rgba(17, 24, 39, 0.12);

  --container: 1200px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus { color: var(--color-primary-dark); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--color-primary-light); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--color-text-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
  margin-bottom: .5rem;
}

.accent { color: var(--color-primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 600;
  font-family: var(--font-head);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  line-height: 1;
}
.btn i { width: 18px; height: 18px; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo {
  height: 52px;
  width: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  background: #F5EDE8;
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: 'Poppins', sans-serif;
}
.logo-wordmark strong {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo-tagline {
  font-size: .7rem;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}
@media (max-width: 520px) {
  .logo-wordmark { display: none; }
}

.main-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0; padding: 0;
}
.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
}
.nav-list a:hover { color: var(--color-primary); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  transition: transform .2s, opacity .2s;
  border-radius: 2px;
}

.header-cta { white-space: nowrap; }

/* ---------- Hero ---------- */
.hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #EAF5FE 0%, #F7FAFC 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-soft);
  max-width: 50ch;
  margin-bottom: 1.75rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.pricing-hook {
  color: var(--color-text);
  background: #FFF8E1;
  border-left: 4px solid var(--color-accent);
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  max-width: 380px;
  margin-bottom: 1.5rem;
}
.trust-bar {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  color: var(--color-text-soft);
  font-size: .9rem;
}
.trust-bar li {
  display: inline-flex; align-items: center; gap: .4rem;
}
.trust-bar i { width: 18px; height: 18px; color: var(--color-secondary); }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Sections base ---------- */
section {
  padding: 4rem 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-intro {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

/* ---------- About / Stats ---------- */
.about { background: var(--color-surface); }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.stat {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .85rem;
  color: var(--color-text-soft);
}

/* ---------- Services ---------- */
.services { background: var(--color-bg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 { color: var(--color-primary-dark); }
.service-body p { flex: 1; }
.service-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; font-size: .9rem;
  margin-top: auto;
}
.service-cta i { width: 16px; height: 16px; transition: transform .2s; }
.service-cta:hover i { transform: translateX(4px); }

/* ---------- Why Us / Benefits ---------- */
.why-us { background: var(--color-surface); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.benefit {
  padding: 1.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  text-align: left;
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon i { width: 26px; height: 26px; }
.benefit h3 { margin-bottom: .4rem; }

/* ---------- Services Poster ---------- */
.services-poster-wrap {
  margin: 3rem auto 0;
  max-width: 900px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  overflow: hidden;
}
.services-poster {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-md);
}
@media (max-width: 640px) {
  .services-poster-wrap { padding: .5rem; margin-top: 2rem; }
}

/* ---------- How It Works / Steps ---------- */
.how-it-works { background: var(--color-bg); }
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  counter-reset: step;
}
.step {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

/* ---------- Service Area ---------- */
.service-area { background: var(--color-surface); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.area-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.cities {
  list-style: none;
  padding: 0; margin: 1rem 0 0;
  display: flex; flex-wrap: wrap;
  gap: .5rem;
}
.cities li {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--color-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.review-card p { font-style: italic; color: var(--color-text); margin-bottom: 1rem; }
.review-card cite { font-style: normal; color: var(--color-text-soft); font-size: .9rem; }
.stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: .5rem; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Guarantee ---------- */
.guarantee { background: linear-gradient(135deg, #EAF5FE 0%, #E0F2F1 100%); }
.guarantee-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.guarantee-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.seals {
  list-style: none;
  padding: 0; margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.seals li {
  display: flex; align-items: center; gap: .5rem;
  background: var(--color-surface);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
}
.seals i { color: var(--color-secondary); width: 20px; height: 20px; }

/* ---------- Contact / Form ---------- */
.contact { background: var(--color-surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-info {
  list-style: none;
  padding: 0; margin: 1.5rem 0 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact-info li {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .75rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}
.contact-info i { color: var(--color-primary); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info .info-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-soft);
  font-weight: 600;
  margin-bottom: .1rem;
}
.contact-info a { color: var(--color-text); font-weight: 500; }
.contact-info a:hover { color: var(--color-primary); }

.contact-socials {
  display: flex; gap: .75rem;
  margin-top: 1rem;
}
.contact-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  transition: background .15s, color .15s;
}
.contact-socials a:hover {
  background: var(--color-primary);
  color: #fff;
}
.contact-socials i { width: 22px; height: 22px; }

/* Form */
.quote-form {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: .35rem;
  color: var(--color-text);
}
.form-field .req { color: var(--color-error); }
.form-field .optional { color: var(--color-text-soft); font-weight: 400; font-size: .85rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .95rem;
  padding: .7rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30,136,229,0.15);
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: var(--color-error);
}
.field-error {
  display: block;
  color: var(--color-error);
  font-size: .85rem;
  margin-top: .35rem;
}
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-legal {
  font-size: .8rem;
  color: var(--color-text-soft);
  margin-top: 1rem;
  margin-bottom: 0;
}
.form-message {
  margin-top: 1rem;
  padding: 0;
}
.form-message.visible {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.form-message.success {
  background: #D1FAE5;
  color: #065F46;
}
.form-message.error {
  background: #FEE2E2;
  color: #991B1B;
}

/* ---------- FAQ ---------- */
.faq { background: var(--color-bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 1.5rem 1.3rem;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0F172A;
  color: #CBD5E1;
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: .5rem;
}
.footer-col a {
  color: #CBD5E1;
  font-size: .95rem;
}
.footer-col a:hover { color: #fff; }
.footer-brand img,
.footer-logo {
  background: #F5EDE8;
  padding: 0;
  border-radius: 18px;
  height: 88px;
  width: 88px;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  display: block;
}
.footer-brand p { color: #CBD5E1; margin-bottom: .5rem; font-size: .9rem; }
.footer-tagline { color: #fff !important; font-style: italic; }
.footer-socials {
  display: flex; flex-direction: column; gap: .65rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #CBD5E1;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-socials a:hover { color: #fff; transform: translateX(2px); }
.footer-socials .social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: currentColor;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 1.25rem 0;
  font-size: .85rem;
  color: #94A3B8;
  text-align: center;
}
.footer-bottom p { margin: 0; color: inherit; }

/* ---------- Floating Mobile CTA ---------- */
.floating-call {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff !important;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: .5rem;
  z-index: 40;
}
.floating-call:hover { background: var(--color-primary-dark); color: #fff; }
.floating-call i { width: 18px; height: 18px; }

/* =============================================================
   Responsive
   ============================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .guarantee-inner,
  .area-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .hero { padding: 2rem 0 3rem; }
  .section-head { margin-bottom: 2rem; }

  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: var(--header-