/* =========================================
   HOWLR BRANDS — style.css (Light Theme)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue:        #1a6fc4;
  --blue-dark:   #145ba0;
  --blue-light:  #e8f1fb;
  --blue-mid:    #cfe0f5;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --surface:     #f0f4f9;
  --border:      #dde5ef;
  --text:        #1a2332;
  --text-mid:    #4a5568;
  --text-muted:  #7a8ba0;

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 14px;
  --max-width: 1120px;
  --nav-h:     68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(26,47,80,0.07);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(26,47,80,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--blue); }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: calc(var(--nav-h) + 72px) 32px 80px;
  background: linear-gradient(160deg, var(--white) 0%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,196,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { animation: fadeUp 0.7s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--blue);
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  border: 1px solid var(--border);
  background: white;
  padding: 7px 14px;
  border-radius: 100px;
}

.badge-blue {
  border-color: var(--blue-mid);
  color: var(--blue);
  background: var(--blue-light);
}

.hero-image {
  animation: fadeUp 0.7s 0.15s ease both;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,47,80,0.15);
}

.hero-image img {
  width: 100%;
  display: block;
}

/* =========================================
   BRANDS
   ========================================= */
.brands {
  padding: 96px 32px;
  background: var(--off-white);
}

.brands-header {
  text-align: center;
  margin-bottom: 56px;
}
.brands-header .section-body {
  max-width: 520px;
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.brand-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 12px 40px rgba(26,111,196,0.10);
  transform: translateY(-3px);
}
.brand-card:hover::after { transform: scaleX(1); }

.brand-logo-wrap {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px -32px 24px -32px;
  background: var(--off-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.brand-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 96px 32px;
  background: white;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(26,47,80,0.10);
}

.about-quote-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  max-width: 290px;
  box-shadow: 0 16px 48px rgba(26,111,196,0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.quote-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.quote-cite {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.about-content .section-body + .section-body { margin-top: 16px; }

/* =========================================
   WHY US
   ========================================= */
.whyus {
  padding: 96px 32px;
  background: var(--off-white);
}

.whyus-header { margin-bottom: 56px; }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 8px 32px rgba(26,111,196,0.08);
}

.why-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; }

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 96px 32px;
  background: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-body { margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 17px; height: 17px; }
.contact-detail-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  padding-top: 8px;
}

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.10);
}
.form-group textarea { height: 130px; resize: vertical; }

.turnstile-wrap { margin-bottom: 18px; }

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--blue-dark); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-message {
  margin-top: 14px;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: none;
}
.form-message.success {
  display: block;
  background: #edfbf3;
  border: 1px solid #a3e6bc;
  color: #1a7a42;
}
.form-message.error {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text);
  padding: 40px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { font-size: 1rem; font-weight: 800; color: white; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-made { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); }

  .brands-grid { grid-template-columns: 1fr; gap: 16px; }

  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-quote-card {
    position: relative;
    bottom: auto; right: auto;
    max-width: 100%;
    margin-top: 24px;
  }

  .whyus-grid { grid-template-columns: 1fr; gap: 16px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container, .hero, .brands, .about, .whyus, .contact, .footer { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 0 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
