/* White-paper theme — Gift It Solution (2025) */
:root{
  --ink:#0F172A; --muted:#475569;
  --teal:#008C99; --teal-hover:#007C8A;
  --link:#006064;
  --border:#E5E7EB; --bg:#FFFFFF; --alt:#FAFAFA;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}

/* Layout */
.container{width:min(1100px,94%);margin:0 auto}
.page{padding:32px 0}

/* Header */
.site-header{background:#fff;border-bottom:1px solid var(--border)}
.header-row{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.logo-desktop{height:42px;display:block}
.logo-mobile{display:none;height:34px;margin:0 auto}
.site-nav{display:flex;gap:18px}
.site-nav a{font-weight:600;color:#006064;padding:8px 6px;border-bottom:2px solid transparent}
.site-nav a.active{border-color:var(--teal);text-decoration:none}
.nav-toggle{display:none}
.nav-burger{display:none;cursor:pointer;font-size:24px;line-height:1}

/* Hero */
.hero{padding:28px 0;border-bottom:1px solid var(--border);background:var(--bg)}
.hero .row{display:grid;grid-template-columns:1.1fr 0.9fr;gap:24px;align-items:center}
.hero h1{font-size:clamp(28px,4.5vw,40px);margin:0 0 10px}
.hero p{color:var(--muted);margin:0 0 18px}
.hero .media{border:border-radius:0px;overflow:hidden;}

/* Sections */
.section{padding:40px 0;border-bottom:1px solid var(--border)}
.section:last-child{border-bottom:0}
.section h2{font-size:26px;margin:0 0 10px}
.section p.lead{color:var(--muted);margin:0 0 14px}

/* Cards */
.grid{display:grid;gap:16px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.card{border:1px solid var(--border);border-radius:12px;padding:18px;background:#fff}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 20px;border-radius:10px;background:var(--teal);color:#fff;font-weight:600;border:0;box-shadow:0 4px 10px rgba(0,140,153,.25);transition:all .25s ease}
.btn:hover{background:var(--teal-hover);transform:translateY(-2px);box-shadow:0 8px 16px rgba(0,124,138,.25)}
.btn-outline{background:#fff;color:var(--ink);border:1px solid var(--border);box-shadow:none}
.btn-outline:hover{border-color:var(--teal);color:var(--teal)}

/* Footer */
.site-footer{background:#fff;margin-top:40px}
.footer-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 0}
.logo-foot{height:30px}
.tagline{color:var(--muted);font-size:14px;margin-top:6px}
.site-footer .f-right{display:flex;gap:14px;flex-wrap:wrap}
.copy{text-align:left;color:#6b7280;font-size:13px;}

/* Forms */
.input, input[type=text], input[type=email], textarea{
  width:100%;padding:12px 14px;border:1px solid var(--border);border-radius:10px;background:#fff;color:var(--ink);font:inherit
}
textarea{min-height:140px}
.form-row{display:grid;gap:14px;grid-template-columns:1fr 1fr}
.form-row .full{grid-column:1/-1}

/* Blog */
.blog-grid{display:grid;gap:18px;grid-template-columns:repeat(3,1fr)}
.blog-card{border:1px solid var(--border);border-radius:12px;padding:14px;background:#fff;display:flex;flex-direction:column}
.blog-card img{border-radius:10px;border:1px solid var(--border);margin-bottom:10px}
.blog-card h3{margin:6px 0 8px;font-size:20px}
.blog-card p{flex:1;color:var(--muted);margin:0 0 12px}

/* Kill any legacy logo strips */
.logo-strip, .logo-strip *{display:none !important;visibility:hidden !important}

/* Responsive */
@media (max-width: 900px){
  .hero .row{grid-template-columns:1fr;gap:16px}
}
@media (max-width: 768px){
  .logo-desktop{display:none}
  .logo-mobile{display:block}
  .site-header{ text-align:center }
  .nav-burger{display:block}
  .site-nav{
    position:relative; display:none; flex-direction:column; padding:10px 0; border-top:1px solid var(--border); margin-top:8px
  }
  .nav-toggle:checked ~ .nav-burger + .site-nav{display:flex}
  .grid.cols-3{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}


/* Enhanced Hero Section Styling */
.hero.enhanced {
  background: linear-gradient(120deg, #E0F7FA 0%, #E3F2FD 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero.enhanced::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,140,153,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero.enhanced .copy {
  position: relative;
  z-index: 1;
}

.hero.enhanced h1 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.hero.enhanced .accent {
  color: var(--teal);
}

.hero.enhanced p {
  color: var(--muted);
  max-width: 540px;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero.enhanced .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.hero.enhanced .hero-phone {
  font-size: 1.05rem;
  color: var(--muted);
}
.hero.enhanced .hero-phone a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

.hero.enhanced .media img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: floaty 4s ease-in-out infinite;
}

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

@media (max-width: 900px){
  .hero.enhanced { text-align: center; }
  .hero.enhanced .cta { justify-content: center; }
  .hero.enhanced .media img { margin: 0 auto; }
}

/* ================= HERO BACKGROUND VERSION ================= */
.hero.hero-bg {
  position: relative;
  color: #fff;
  padding: 120px 20px;
  text-align: left;
  background: url("images/hero-bg-aiwave.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
}

.hero.hero-bg .container {
  position: relative;
  z-index: 1;
}

.hero.hero-bg .copy {
  max-width: 620px;
}

.hero.hero-bg h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero.hero-bg .accent {
  color: var(--teal);
  background: linear-gradient(90deg, #00c9a7, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero.hero-bg p {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.hero.hero-bg .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.hero.hero-bg .btn {
  background: #00bcd4;
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px rgba(0,188,212,0.3);
}
.hero.hero-bg .btn:hover {
  background: #00a8bf;
  transform: translateY(-2px);
}

.hero.hero-bg .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.hero.hero-bg .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.hero.hero-bg .hero-phone {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #d1faff;
}
.hero.hero-bg .hero-phone a {
  color: #00e5ff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .hero.hero-bg {
    text-align: center;
    padding: 100px 20px;
  }
  .hero.hero-bg .overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
  }
  .hero.hero-bg .copy {
    max-width: 100%;
  }
}
