:root{
    --ink:#0b4f6c;
    --ink2:#0a3f56;
    --bg1:#aef1e8;
    --bg2:#d9f7ff;
    --card:rgba(255,255,255,.75);
    --line:rgba(0,0,0,.08);
    --muted:#5b6b73;
    --radius:18px;
  }
  
  *{ box-sizing:border-box; }
  
  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#16232a;
    background: radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 35%),
                linear-gradient(180deg, var(--bg1), var(--bg2));
    min-height:100vh;
  }
  
  .container{
    width:min(1100px, 92%);
    margin:0 auto;
  }
  
  .header{
    position:sticky;
    top:0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.65);
    border-bottom:1px solid var(--line);
    z-index:10;
  }
  
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    gap:18px;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--ink);
  }
  .brand-logo{ width:42px; height:42px; object-fit:contain; }
  .brand-name{ font-weight:900; letter-spacing:.3px; font-size:18px; }
  
  .links a{
    text-decoration:none;
    color:#1f2b33;
    font-weight:700;
    padding:8px 10px;
    border-radius:12px;
  }
  .links a:hover{ background: rgba(11,79,108,.10); color:var(--ink); }
  .links .active{ color:var(--ink); }
  
  .hero{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap:20px;
    padding:42px 0 22px;
    align-items:stretch;
  }
  
  .hero-card{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding:24px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
  }
  
  .pill{
    display:inline-block;
    padding:7px 12px;
    border-radius:999px;
    border:1px solid var(--line);
    background:#fff;
    color:var(--ink);
    font-weight:900;
    font-size:13px;
  }
  
  h1{
    margin:12px 0 10px;
    color:var(--ink);
    font-size: clamp(30px, 3.8vw, 48px);
    line-height:1.08;
  }
  
  .lead{ margin:0; color:#22323a; font-size:16px; line-height:1.6; }
  
  .cta{ display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px; }
  
  .btn{
    display:inline-block;
    text-decoration:none;
    font-weight:900;
    padding:11px 14px;
    border-radius:14px;
    border:1px solid var(--line);
  }
  .btn.primary{ background: var(--ink); color:#fff; border-color: transparent; }
  .btn.primary:hover{ background: var(--ink2); }
  .btn.ghost{ background:#fff; color:var(--ink); }
  .btn.ghost:hover{ background: rgba(255,255,255,.8); }
  
  .btn.small{ padding:9px 12px; border-radius:12px; }
  
  .checks{
    margin-top:14px;
    display:grid;
    gap:8px;
    color:#1f2b33;
    font-weight:700;
  }
  
  .hero-visual{
    position:relative;
    background: rgba(255,255,255,.45);
    border:1px solid var(--line);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.07);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
  }
  .hero-visual img{
    width: 90%;
    height:auto;
    max-height: 420px;
    object-fit:contain;
    z-index:2;
  }
  
  .bubble{
    position:absolute;
    border-radius:50%;
    background: rgba(255,255,255,.45);
    border:1px solid rgba(255,255,255,.6);
    box-shadow: inset 0 0 18px rgba(255,255,255,.65);
    z-index:1;
  }
  .b1{ width:140px; height:140px; top:18px; right:18px; }
  .b2{ width:90px; height:90px; bottom:26px; left:26px; }
  .b3{ width:60px; height:60px; bottom:120px; right:60px; }
  
  .section{ padding:26px 0 40px; }
  .section h2{ margin:0 0 8px; color:var(--ink); }
  .muted{ margin:0 0 16px; color:var(--muted); }
  
  .grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
  }
  
  .card{
    background: var(--card);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding:18px;
  }
  .card h3{ margin:0 0 8px; color:var(--ink); }
  .card p{ margin:0; line-height:1.6; color:#22323a; }
  
  .split{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
  }
  
  .soft{ background: rgba(255,255,255,.60); }
  
  ul{ margin:10px 0 0; padding-left:18px; }
  li{ margin:7px 0; }
  
  .footer{
    margin-top: 10px;
    background: rgba(255,255,255,.65);
    border-top:1px solid var(--line);
  }
  .footer-inner{
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
  }
  .footer a{ color:var(--ink); text-decoration:none; font-weight:900; }
  
  @media (max-width: 860px){
    .hero{ grid-template-columns: 1fr; }
    .grid{ grid-template-columns: 1fr; }
    .split{ grid-template-columns: 1fr; }
  }
  .page-title{
    margin: 26px 0 8px;
    color: var(--ink);
    font-size: clamp(26px, 3vw, 40px);
  }
  
  .grid2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
  }
  
  .price{
    font-size: 34px;
    font-weight: 900;
    color: var(--ink);
    margin: 8px 0 6px;
  }
  
  .smallmuted{
    color: var(--muted);
    font-size: 14px;
  }
  
  .faq{ margin-bottom: 12px; }
  
  @media (max-width: 860px){
    .grid2{ grid-template-columns: 1fr; }
  }
  /* Footer socials */
.socials{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
  }
  
  .socials a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 10px;
    border-radius:12px;
    text-decoration:none;
    font-weight:900;
    border:1px solid var(--line);
    background:#fff;
    color:var(--ink);
  }
  
  .socials a:hover{
    background: rgba(255,255,255,.8);
  }
  
  .smallnote{
    color:var(--muted);
    font-size:14px;
  }
  .input{
    width:100%;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#fff;
    font-weight:700;
    outline:none;
  }
  .input:focus{
    border-color: rgba(11,79,108,.35);
    box-shadow: 0 0 0 4px rgba(11,79,108,.10);
  }
  textarea.input{ resize: vertical; }
  
  /* Center the Perfect for section */
.split.centered{
    display: flex;
    justify-content: center;
  }
  
  .split.centered .card{
    max-width: 420px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .split.centered ul{
    list-style: none;
    padding: 0;
  }
  
  .split.centered li{
    margin: 10px 0;
  }
  /* Home hero background mascot (washed-out) */
  .hero-bg{
    position: relative;
    overflow: hidden;
  }
  
  
  .hero-bg::before{
    content: "";
    position: absolute;
    inset: -60px;                 /* lets it bleed bigger without resizing hero */
    background-image: url("../Images/spotout-mascot.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 950px auto;  /* big mascot, fixed size */
    opacity: 0.06;
    filter: grayscale(100%) blur(2px);
    pointer-events: none;
  }
  
  
  
  .hero-bg > *{
    position: relative;
    z-index: 1;
  }
  /* Product image scroll gallery */
.product-gallery {
    max-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 8px;
  }
  
  .product-gallery img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .footer {
    background: #111;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
  }
  
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
  }
  
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    opacity: 0.7;
  }
  /* ===== SpotOut Footer Styling (drop-in) ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 28px 18px;
  margin-top: 40px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand h3 {
  margin: 0;
  font-size: 18px;
}

.footer-brand p {
  margin: 8px 0 0;
  opacity: 0.8;
  max-width: 320px;
  line-height: 1.4;
}

.footer-links h4,
.footer-socials h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.footer-links p {
  margin: 0;
  line-height: 1.7;
}

.footer-socials a {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 18px;
  padding-top: 14px;
  text-align: center;
  opacity: 0.7;
  font-size: 13px;
}

/* Mobile stack */
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
  }
}
.center-single {
  display: flex;
  justify-content: center;
}
.center-single .card {
  max-width: 420px;
  width: 100%;
}

/* =========================
   Professional Contact Form
   ========================= */

/* Container card */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Title + helper text */
.form-card h2,
.form-card h3 {
  margin: 0 0 6px 0;
}

.form-hint {
  margin: 0 0 16px 0;
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Form layout */
.contact-form {
  display: grid;
  gap: 14px;
}

/* Two-column row (desktop), single column (mobile) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .form-card {
    padding: 22px;
  }
}

/* Fields */
.form-field label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px 0;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: #111;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  outline: none;

  /* Mobile friendliness */
  min-height: 44px; /* good tap target */
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Focus states */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0,0,0,0.45);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* Optional small text under inputs */
.field-help {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
}

/* Button row */
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

/* Primary button */
.btn-primary {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;

  background: #111;
  color: #fff;

  width: 100%; /* mobile */
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(1px);
}

@media (min-width: 720px) {
  .btn-primary {
    width: auto;
    min-width: 180px;
  }
}

/* Secondary text (e.g., “or email us directly…”) */
.form-alt {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
}

/* Validation (optional) */
.input-error {
  border-color: rgba(220, 38, 38, 0.8) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
}
.error-text {
  color: rgba(220, 38, 38, 0.95);
  font-size: 0.85rem;
  margin-top: 6px;
}
