/* Global styles for clippingKlub */
/* Font is loaded in index.html (Poppins) */
:root{
  --blue-1: #063d87;    /* darker blue */
  --blue-2: #0b62b8;    /* main hero blue */
  --accent: #f07340;    /* orange CTA */
  --muted: #6b7280;
  --bg: #f6f7f9;
  --max-width: 1200px;
  --radius: 8px;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color:#1f2937;
  background:var(--bg);
}

/* Utility container */
.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}

/* Header / Nav */
.site-header{
  background:linear-gradient(180deg, rgba(6,61,135,0.98), rgba(11,98,184,0.98));
  color:#fff;
  position:sticky;
  top:0;
  z-index:60;
  box-shadow:0 2px 8px rgba(3,11,34,0.08);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}

/* Logo */
.logo{
  font-weight:700;
  font-size:22px;
  letter-spacing:0.4px;
}

/* Nav links */
.main-nav ul{
  list-style:none;
  display:flex;
  gap:20px;
  margin:0;
  padding:0;
  align-items:center;
}
.main-nav a{
  color:rgba(255,255,255,0.95);
  text-decoration:none;
  font-weight:500;
  font-size:15px;
  padding:6px 8px;
  transition:opacity .18s ease;
}
.main-nav a:hover{ opacity:0.85; }

/* CTA in header */
.cta .btn-ghost{
  background:var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 6px 18px rgba(240,115,64,0.18);
  border:0;
  display:inline-block;
}

/* HERO */
.hero{
  background:linear-gradient(90deg,var(--blue-1),var(--blue-2));
  color:#fff;
  padding:72px 0;
  position:relative;
  overflow:hidden;
}

/* hero content layout */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:48px;
  align-items:center;
  min-height:520px;
}

/* left copy */
.hero-copy .eyebrow{
  display:inline-block;
  background:transparent;
  color:#d7f07a; /* subtle lime like screenshot */
  font-weight:700;
  letter-spacing:0.6px;
  margin-bottom:18px;
  font-size:14px;
}
.hero-copy h1{
  margin:0 0 18px 0;
  font-size:44px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-0.6px;
  max-width:680px;
}
.hero-copy .lead{
  color:rgba(255,255,255,0.9);
  max-width:640px;
  margin-bottom:26px;
  font-weight:400;
  opacity:0.95;
}

/* primary CTA */
.btn{
  display:inline-block;
  text-decoration:none;
  border-radius:8px;
  padding:12px 20px;
  font-weight:700;
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 30px rgba(240,115,64,0.14);
  border:0;
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 36px rgba(240,115,64,0.18); }

/* hero media card (right) */
.hero-media{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.media-card{
  width:100%;
  background:#fff;
  border-radius:6px;
  padding:28px;
  box-shadow:0 12px 36px rgba(3,11,34,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  height:420px;
  overflow:hidden;
}
.media-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:4px;
}

/* slider dots below image */
.slider-dots{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
}
.dot{
  width:8px;height:8px;border-radius:999px;background:rgba(0,0,0,0.15);
}
.dot.active{ background:rgba(0,0,0,0.8); }

/* Promo band (light) */
.promo{
  background:linear-gradient(90deg,#fbfdff,#eef3fb);
  padding:36px 0;
  border-top:1px solid rgba(11,98,184,0.05);
  border-bottom:1px solid rgba(3,11,34,0.02);
}
.promo-grid{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:28px;
  align-items:center;
}
.promo-logo img{ width:100%; max-width:220px; display:block; }

/* services section */
.services{
  padding:56px 0;
  text-align:center;
}
.section-title{
  font-size:36px;
  color:var(--blue-2);
  margin:20px 0 6px 0;
  font-weight:800;
}
.section-sub{
  color:var(--muted);
  margin:0 0 28px 0;
}

/* service cards */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
  align-items:start;
  padding:0 10px;
}
.service-card{
  background:#fff;
  border-radius:12px;
  padding:16px;
  box-shadow:0 6px 24px rgba(3,11,34,0.06);
  text-align:left;
}
.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:12px;
}
.service-card h4{ margin:6px 0; font-size:18px; color:#12202f; font-weight:700; }
.service-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.5; }

/* Footer */
.site-footer{
  padding:20px 0;
  background:transparent;
  color:var(--muted);
  border-top:1px solid rgba(3,11,34,0.04);
}
.site-footer .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.site-footer a{ color:var(--muted); text-decoration:none }

/* Floating chat button */
.chat-float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:linear-gradient(180deg,#2ecc71,#16a34a);
  color:#fff;
  border:0;
  width:64px;
  height:64px;
  border-radius:999px;
  box-shadow:0 14px 36px rgba(22,163,74,0.18);
  cursor:pointer;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Responsive adjustments */
@media (max-width:1100px){
  .hero-grid{ grid-template-columns:1fr 360px; gap:28px; padding:0 12px; }
  .hero-copy h1{ font-size:40px; }
  .media-card{ height:360px; padding:20px; }
}
@media (max-width:900px){
  .nav-row{ padding:12px 0; }
  .main-nav{ display:none; } /* hide full nav on small screens */
  .hero{
    padding:48px 0;
  }
  .hero-grid{
    grid-template-columns:1fr;
    gap:28px;
    text-align:left;
  }
  .hero-copy h1{ font-size:32px; }
  .hero-media{ order:2; }
  .media-card{ height:360px; }
  .promo-grid{ grid-template-columns:1fr; text-align:center; }
  .services-grid{ grid-template-columns:1fr; }
  .site-footer .container{ flex-direction:column; align-items:center; text-align:center; }
}
@media (max-width:480px){
  .hero-copy h1{ font-size:26px; }
  .media-card{ height:260px; padding:12px; }
  .logo{ font-size:18px; }
  .cta .btn-ghost{ padding:8px 12px; font-size:13px; }
  .btn-primary{ padding:10px 14px; font-size:14px; }
}

/* Small accessibility & niceties */
a:focus, button:focus{ outline:3px solid rgba(11,98,184,0.18); outline-offset:3px; border-radius:6px; }