/* ==========================================================================
   SwiftPro Cleaners — base styles
   Ported from the Claude Design export. Most one-off layout/color values
   stay as inline styles on the markup (matches the original design system
   and keeps visual fidelity 1:1); this file holds the truly global rules:
   resets, type defaults, responsive breakpoints, hover states and motion.
   ========================================================================== */

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,system-ui,sans-serif;color:#1C2A3A;background:#ffffff;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;overflow-x:hidden}
h1,h2,h3,h4{font-family:Poppins,sans-serif;margin:0;color:#1E3A5F;letter-spacing:-.01em}
p{margin:0}
a{color:#0F8C77;text-decoration:none}
a:hover{color:#0B7A67}
input,select,textarea{font-family:Inter,sans-serif}
::selection{background:#CDEDE5;color:#14293F}
input:focus-visible,select:focus-visible,textarea:focus-visible,button:focus-visible,a:focus-visible{outline:2px solid #0F8C77;outline-offset:2px}
input::placeholder{color:#9AA7B6}
button{font:inherit}

@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* ---- Hover states (JS "style-hover" from the export, ported to real CSS) ---- */
.btn-teal{transition:background-color .2s ease}
.btn-teal:hover{background:#0B7A67!important}
.btn-outline{transition:border-color .2s ease,color .2s ease,background-color .2s ease}
.btn-outline:hover{border-color:#0F8C77!important;color:#0F8C77!important;background:#F7FBFA!important}
.card-hover{transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.card-hover:hover{transform:translateY(-6px);box-shadow:0 22px 44px rgba(30,58,95,.1);border-color:#CDEDE5}
.card-dark-hover{transition:transform .25s ease}
.card-dark-hover:hover{transform:translateY(-6px)}
.link-teal-hover{transition:color .2s ease}
.link-teal-hover:hover{color:#0B7A67!important}
.cta-white-btn{transition:background-color .2s ease,color .2s ease}
.cta-white-btn:hover{background:#E9F7F3!important;color:#0B7A67!important}
.social-icon{transition:background-color .2s ease,color .2s ease}
.social-icon:hover{background:#0F8C77!important;color:#fff!important}
.footer-link{transition:color .2s ease}
.footer-link:hover{color:#fff!important}

/* ---- Nav / mobile menu ---- */
[data-nav-burger]{display:none}
.nav-mobile-panel{display:none}
.nav-mobile-panel.is-open{display:flex}

/* ---- Scroll reveal (progressively enhanced by main.js; content is fully
   visible without JS, so nothing here hides it by default) ---- */
[data-reveal].is-revealed{opacity:1!important;transform:none!important}

/* ---- Responsive ---- */
@media (max-width:920px){
  [data-nav-desktop]{display:none!important}
  [data-nav-burger]{display:flex!important}
  [data-hero]{grid-template-columns:1fr!important;gap:44px!important}
  .grid-3{grid-template-columns:1fr 1fr!important}
  .grid-2-fluid,.grid-why,.grid-about,.grid-form{grid-template-columns:1fr!important}
  .grid-4{grid-template-columns:1fr 1fr!important;gap:32px 24px!important}
}
@media (max-width:640px){
  .grid-3,.grid-2-fluid{grid-template-columns:1fr!important}
  .grid-4{grid-template-columns:1fr!important}
  h1{font-size:34px!important;line-height:1.12!important}
  h2{font-size:27px!important}
  [data-hero] p{font-size:17px!important}
  .pad-96{padding:60px 22px!important}
  .pad-80{padding:56px 22px!important}
  .pad-72{padding:52px 22px!important}
  .pad-64-96{padding:44px 22px 64px!important}
  .pad-80-96{padding:52px 22px 60px!important}
  .pad-66-56{padding:40px 26px!important}
  .pad-48{padding:32px 24px!important}
  .pad-52{padding:34px 24px!important}
  .pad-40{padding:26px!important}
  .services-grid-detail{grid-template-columns:1fr!important}
  .form-fields-grid{grid-template-columns:1fr!important}

  /* Floating badges on the hero / why-us photos used fixed negative
     offsets that overflowed the viewport on narrow screens. Pull them
     back inside the image edge instead of letting them hang off it. */
  .floating-badge-left{left:8px!important;bottom:16px!important;padding:11px 14px!important;gap:9px!important}
  .floating-badge-left [style*="width:44px"]{width:36px!important;height:36px!important}
  .floating-badge-right{right:8px!important;top:16px!important;padding:11px 14px!important}
  .floating-stat-corner{right:8px!important;bottom:8px!important;padding:13px 16px!important}
}
