/* ============================================================
   Tint2You — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:        #FFD000;
  --yellow-hover:  #ffe44d;
  --black:         #0a0a0a;
  --black-card:    #111111;
  --black-deep:    #050505;
  --border:        #1e1e1e;
  --border-yellow: rgba(255,208,0,0.25);
  --grey:          #888;
  --grey-light:    #ccc;
  --white:         #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem,5.5vw,3.75rem); font-weight:900; line-height:1.08; letter-spacing:-0.02em; }
h2 { font-size: clamp(1.75rem,4vw,2.875rem); font-weight:800; line-height:1.12; letter-spacing:-0.02em; }
h3 { font-size: 1.2rem; font-weight:700; }
.text-yellow { color: var(--yellow); }

/* ── LAYOUT ── */
.container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
section { padding:5rem 0; }

/* ── SECTION HEADERS ── */
.section-header { text-align:center; max-width:580px; margin:0 auto; }
.section-header p { color:var(--grey); margin-top:.75rem; font-size:1rem; line-height:1.65; }
.section-label {
  display:inline-block;
  font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--yellow); background:rgba(255,208,0,0.08); border:1px solid var(--border-yellow);
  padding:.3rem .875rem; border-radius:100px; margin-bottom:.875rem;
}
.yellow-divider { width:44px; height:3px; background:var(--yellow); border-radius:2px; margin:1rem auto 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }
.reveal-delay-5 { transition-delay:.5s; }

/* ── BUTTONS ── */
.btn-primary, .btn-secondary, .btn-dark, .btn-outline-dark {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.875rem 1.75rem; border-radius:8px;
  font-weight:800; font-size:1rem; font-family:'Inter',sans-serif;
  text-decoration:none; cursor:pointer; border:none;
  transition:background .2s, box-shadow .2s, transform .15s, color .2s;
}
.btn-primary { background:var(--yellow); color:#000; }
.btn-primary:hover { background:var(--yellow-hover); box-shadow:0 0 32px rgba(255,208,0,.55); transform:translateY(-2px); }
.btn-secondary { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.28); }
.btn-secondary:hover { border-color:var(--yellow); background:rgba(255,208,0,.07); transform:translateY(-2px); }
.btn-dark { background:#000; color:#fff; }
.btn-dark:hover { background:#1a1a1a; transform:translateY(-2px); box-shadow:0 6px 24px rgba(0,0,0,.5); }
.btn-outline-dark { background:transparent; color:#000; border:2px solid rgba(0,0,0,.35); }
.btn-outline-dark:hover { border-color:#000; background:rgba(0,0,0,.07); transform:translateY(-2px); }

/* ── FLOATING CALL ── */
.floating-call {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:90;
  display:flex; align-items:center; gap:.6rem;
  background:var(--yellow); color:#000;
  padding:.875rem 1.375rem; border-radius:100px;
  font-weight:800; font-size:.9rem; text-decoration:none;
  box-shadow:0 4px 24px rgba(255,208,0,.4);
  transition:transform .2s, box-shadow .2s;
  animation:pulse-btn 2.8s ease-in-out infinite;
}
.floating-call:hover { transform:scale(1.06); box-shadow:0 6px 36px rgba(255,208,0,.65); animation:none; }
@keyframes pulse-btn {
  0%,100% { box-shadow:0 4px 24px rgba(255,208,0,.4); }
  50%      { box-shadow:0 4px 44px rgba(255,208,0,.72); }
}

/* ── NAVBAR ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:1.125rem 0;
  transition:background .35s, backdrop-filter .35s, box-shadow .35s;
}
.navbar.scrolled {
  background:rgba(8,8,8,.95);
  backdrop-filter:blur(18px);
  box-shadow:0 1px 0 rgba(255,208,0,.12);
}
.navbar-inner { max-width:1200px; margin:0 auto; padding:0 1.5rem; display:flex; align-items:center; justify-content:space-between; }
.navbar-logo img { height:50px; width:auto; object-fit:contain; }
.navbar-links { display:flex; align-items:center; gap:1.75rem; list-style:none; }
.navbar-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:.875rem; font-weight:500; letter-spacing:.01em; transition:color .2s; }
.navbar-links a:hover, .navbar-links a.active { color:var(--yellow); }
.btn-nav { background:var(--yellow)!important; color:#000!important; padding:.55rem 1.125rem!important; border-radius:6px; font-weight:700!important; font-size:.85rem!important; transition:background .2s,box-shadow .2s!important; }
.btn-nav:hover { background:var(--yellow-hover)!important; box-shadow:0 0 18px rgba(255,208,0,.45); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:1px; transition:all .3s; }
.mobile-menu {
  display:none; position:fixed; inset:0;
  background:rgba(8,8,8,.98); z-index:99;
  flex-direction:column; align-items:center; justify-content:center; gap:2rem;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--white); text-decoration:none; font-size:1.5rem; font-weight:700; transition:color .2s; }
.mobile-menu a:hover { color:var(--yellow); }
.mobile-close { position:absolute; top:1.5rem; right:1.5rem; cursor:pointer; color:var(--white); background:none; border:none; }
@media(max-width:768px){ .navbar-links{display:none;} .hamburger{display:flex;} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position:relative; height:52vh; min-height:340px;
  display:flex; align-items:flex-end;
  overflow:hidden; background:var(--black);
}
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.92) 0%,rgba(0,0,0,0.55) 60%,rgba(0,0,0,0.3) 100%); }
.page-hero-content { position:relative; z-index:2; padding:2.5rem 0 3.5rem; width:100%; }
.page-hero-content .section-label { display:block; margin-bottom:.75rem; }
.page-hero-content h1 { margin-bottom:.75rem; }
.page-hero-content p { color:rgba(255,255,255,.7); font-size:1.1rem; line-height:1.6; max-width:540px; }

/* ── CTA SECTION ── */
.cta-section { background:var(--yellow); padding:5.5rem 0; }
.cta-inner { text-align:center; }
.cta-sub { color:rgba(0,0,0,.62); font-size:1.1rem; margin:.875rem 0 2.25rem; }
.cta-btns { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }

/* ── FOOTER ── */
footer { background:#000; border-top:1px solid var(--border); padding:3.5rem 0 1.5rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; margin-bottom:2.5rem; }
@media(max-width:768px){ .footer-grid{grid-template-columns:1fr 1fr;} .footer-brand{grid-column:1/-1;} }
@media(max-width:480px){ .footer-grid{grid-template-columns:1fr;} .footer-brand{grid-column:auto;} }
.footer-logo img { height:54px; width:auto; margin-bottom:1.125rem; }
.footer-brand p { font-size:.875rem; color:var(--grey); line-height:1.65; max-width:290px; }
.footer-col h5 { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--grey); margin-bottom:1.25rem; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.footer-links a { color:rgba(255,255,255,.6); text-decoration:none; font-size:.875rem; transition:color .2s; }
.footer-links a:hover { color:var(--yellow); }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:1.5rem;
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center;
  gap:.75rem; font-size:.78rem; color:var(--grey);
}

/* ── FORM STYLES ── */
.form-group { margin-bottom:1.125rem; }
.form-group label { display:block; font-size:.72rem; font-weight:700; color:var(--grey); margin-bottom:.4rem; text-transform:uppercase; letter-spacing:.07em; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; background:rgba(255,255,255,.04); border:1px solid var(--border);
  border-radius:9px; padding:.8rem 1rem; color:var(--white);
  font-family:'Inter',sans-serif; font-size:.9rem;
  transition:border-color .2s, background .2s; -webkit-appearance:none;
}
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--yellow); background:rgba(255,208,0,.03); }
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(255,255,255,.22); }
.form-group textarea { resize:vertical; min-height:88px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:480px){ .form-row{grid-template-columns:1fr;} }
.form-submit {
  width:100%; background:var(--yellow); color:#000;
  padding:.9rem; border-radius:9px; border:none; cursor:pointer;
  font-family:'Inter',sans-serif; font-size:1rem; font-weight:800;
  transition:background .2s, box-shadow .2s, transform .15s; margin-top:.5rem;
}
.form-submit:hover { background:var(--yellow-hover); box-shadow:0 0 24px rgba(255,208,0,.4); transform:translateY(-1px); }
.form-success { display:none; text-align:center; padding:2.25rem; background:rgba(255,208,0,.06); border:1px solid var(--border-yellow); border-radius:14px; }
.form-success.show { display:block; }
.form-success p { color:var(--grey); font-size:.9rem; margin-top:.5rem; }
.form-success a { color:var(--yellow); }

/* ── CONTACT INFO ITEMS ── */
.ci-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.375rem; }
.ci-icon { width:42px; height:42px; flex-shrink:0; background:rgba(255,208,0,.08); border-radius:11px; border:1px solid var(--border-yellow); display:flex; align-items:center; justify-content:center; }
.ci-icon svg { width:18px; height:18px; stroke:var(--yellow); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.ci-label { font-size:.72rem; font-weight:700; color:var(--grey); text-transform:uppercase; letter-spacing:.08em; margin-bottom:.25rem; }
.ci-value { font-weight:600; color:var(--white); }
.ci-value a { color:var(--yellow); text-decoration:none; }
.ci-value a:hover { text-decoration:underline; }

/* ── REDUCED MOTION ── */
@media(prefers-reduced-motion:reduce){ *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; } }
