/* ===========================
   FLONOVA HORIZON TECHNOLOGY  v2
   Palette: Dark Charcoal + Gold
   style.css
=========================== */

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

:root {
  --navy:    #111111;
  --navy2:   #1a1a1a;
  --navy3:   #0d0d0d;
  --gold:    #f5c518;
  --gold2:   #e6b800;
  --gold3:   #b38a00;
  --rust:    #c0392b;
  --teal:    #2980b9;
  --gray:    #888888;
  --white:   #fff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,197,24,.15);
}

.nav-logo img { height: 44px; display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: color .25s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: .55rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s;
  box-shadow: 0 4px 15px rgba(245,197,24,.25);
}

.nav-cta:hover { background: var(--gold2); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy2);
  padding: 2rem 5%;
  z-index: 99;
  border-bottom: 1px solid rgba(245,197,24,.15);
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu a { color: var(--gray); text-decoration: none; font-size: 1rem; }
.mobile-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

.swoosh {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 120%; height: 80%;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,.07);
  transform: rotate(-8deg);
}

.swoosh2 {
  position: absolute;
  bottom: -30%; left: -20%;
  width: 140%; height: 90%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(-5deg);
}

.hero-orb {
  position: absolute;
  right: -5%; top: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle at 60% 40%, rgba(245,197,24,.12) 0%, rgba(176,141,0,.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-orb2 {
  position: absolute;
  left: -10%; bottom: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem; }

.eyebrow-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold3), var(--gold));
}

.eyebrow-text {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}

h1 .line1 { color: var(--white); }

h1 .line2 {
  background: linear-gradient(90deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: .9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 20px rgba(245,197,24,.3);
}

.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(245,197,24,.4);
  color: var(--gold);
  padding: .9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s, border-color .2s;
}

.btn-outline:hover { background: rgba(245,197,24,.08); border-color: var(--gold); }

.hero-badges { display: flex; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; }

.badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .6rem 1.2rem;
  font-size: .8rem;
  color: var(--gray);
}

.badge strong {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

/* ---- TAGLINE BAR ---- */
.tagline-bar {
  background: var(--navy3);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245,197,24,.12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--gray);
}

.tagline-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---- SECTIONS ---- */
section { padding: 5rem 5%; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .8rem;
  padding: .3rem .8rem;
  border-radius: 4px;
}

.label-orange {
  color: var(--gold);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.2);
}

.label-blue {
  color: #aaa;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.section-sub { color: var(--gray); font-size: .97rem; line-height: 1.7; max-width: 600px; }

/* ---- SERVICES ---- */
.services { background: var(--navy2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.s-card {
  border-radius: 14px;
  padding: 2rem;
  transition: transform .3s;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}

.s-card:hover { transform: translateY(-5px); border-color: rgba(245,197,24,.3); }
.s-card-inner { position: absolute; inset: 0; border-radius: 14px; z-index: 0; }
.s-card > * { position: relative; z-index: 1; }

.s-card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.icon-o { background: rgba(245,197,24,.12); }
.icon-b { background: rgba(255,255,255,.08); }

.s-card-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; }
.icon-o svg { stroke: var(--gold); }
.icon-b svg { stroke: #aaa; }

.s-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}

.s-card p { color: var(--gray); font-size: .88rem; line-height: 1.65; }

/* ---- PILLARS ---- */
.pillars-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.pillars-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.5rem; }
.pillar-item { display: flex; gap: 1rem; align-items: flex-start; }

.pillar-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.pillar-text h4 { font-weight: 700; margin-bottom: .25rem; font-size: .95rem; }
.pillar-text p  { color: var(--gray); font-size: .85rem; line-height: 1.5; }

.pillar-visual { display: flex; flex-direction: column; gap: 1rem; }

.bar-label-heading {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.pillar-bar { display: flex; align-items: center; gap: 1rem; }

.pillar-bar-label { font-size: .82rem; color: var(--gray); width: 110px; text-align: right; flex-shrink: 0; }

.pillar-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  overflow: hidden;
}

.pillar-bar-fill { height: 100%; border-radius: 4px; }
.fill-1 { width: 99%; background: linear-gradient(90deg, var(--gold3), var(--gold)); }
.fill-2 { width: 97%; background: linear-gradient(90deg, var(--gold2), var(--gold)); }
.fill-3 { width: 95%; background: linear-gradient(90deg, var(--gold3), var(--gold2)); }
.fill-4 { width: 92%; background: linear-gradient(90deg, var(--gold3), var(--gold)); }
.fill-5 { width: 98%; background: linear-gradient(90deg, var(--gold2), var(--gold)); }

.pillar-bar-val { font-size: .82rem; color: var(--white); font-weight: 700; flex-shrink: 0; width: 40px; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--navy2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1.8rem;
  position: relative;
}

.testi-card::after {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-text { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { color: var(--gray); font-size: .78rem; }

/* ---- CONTACT ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; color: var(--gray); font-size: .9rem; }
.contact-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.tagline-strip { margin-top: 1.5rem; font-family: 'Rajdhani', sans-serif; font-size: 1rem; letter-spacing: .08em; color: var(--gray); }
.ts-blue   { color: var(--gold2); }
.ts-orange { color: var(--gold); }
.ts-white  { color: var(--white); }

form { display: flex; flex-direction: column; gap: 1rem; }

input, textarea, select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .85rem 1rem;
  color: var(--white);
  font-size: .92rem;
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}

input::placeholder, textarea::placeholder { color: var(--gray); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select option { background: var(--navy); }

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

button[type="submit"] {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: .9rem;
  border: none;
  border-radius: 8px;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: .03em;
  box-shadow: 0 4px 15px rgba(245,197,24,.25);
}

button[type="submit"]:hover { background: var(--gold2); transform: translateY(-2px); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy3);
  padding: 3rem 5% 2rem;
  border-top: 1px solid rgba(245,197,24,.1);
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo img { height: 40px; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { color: var(--gray); font-size: .82rem; text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06); }
.footer-copy span { color: var(--gold); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 1rem 1.6rem;
  border-radius: 10px;
  transform: translateY(150%);
  transition: transform .4s;
  z-index: 999;
  font-size: .92rem;
  box-shadow: 0 6px 20px rgba(245,197,24,.35);
}

.toast.show { transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .pillars-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tagline-bar { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ---- SITE NAME IN NAV ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.site-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f5c518;
  letter-spacing: .01em;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .site-name { font-size: .78rem; }
}

/* ---- LIGHT CLIENT REFRESH: CHAMPAGNE GOLD ---- */
:root {
  --navy:    #fffdf7;
  --navy2:   #fff6df;
  --navy3:   #f8edd3;
  --gold:    #c98a00;
  --gold2:   #a96f00;
  --gold3:   #f5c45b;
  --rust:    #d95f2b;
  --teal:    #238f9d;
  --gray:    #756954;
  --white:   #241b0b;
  --panel:   #ffffff;
  --line:    rgba(201,138,0,.18);
  --soft:    rgba(201,138,0,.1);
  --lift:    0 18px 45px rgba(64,44,11,.08);
}

body {
  background: var(--navy);
  color: var(--white);
}

nav,
.mobile-menu {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(64,44,11,.07);
}

.nav-links a,
.mobile-menu a,
.hero-sub,
.section-sub,
.badge,
.tagline-item,
.s-card p,
.pillar-text p,
.bar-label-heading,
.pillar-bar-label,
.testi-text,
.testi-role,
.contact-info p,
.contact-item,
.tagline-strip,
.footer-links a,
.footer-copy {
  color: var(--gray);
}

.site-name,
.nav-links a:hover,
.mobile-menu a:hover,
.eyebrow-text,
.label-orange,
.tagline-item::before,
.badge strong,
.pillar-num,
.contact-item svg,
.footer-links a:hover,
.footer-copy span,
.ts-orange {
  color: var(--gold);
}

.hamburger span {
  background: var(--white);
}

.hero {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 52%, #fff3d4 100%);
}

.swoosh {
  border-color: rgba(201,138,0,.13);
}

.swoosh2 {
  border-color: rgba(35,143,157,.1);
}

.hero-orb {
  background: radial-gradient(circle at 60% 40%, rgba(201,138,0,.17) 0%, rgba(217,95,43,.09) 50%, transparent 70%);
}

.hero-orb2 {
  background: radial-gradient(circle, rgba(35,143,157,.1) 0%, transparent 70%);
}

h1,
h1 .line1,
.section-title,
.s-card h3,
.pillar-text h4,
.testi-name,
.footer-copy {
  color: var(--white);
}

h1 .line2 {
  background: linear-gradient(90deg, var(--rust), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow-line,
.pillar-bar-fill,
.fill-1,
.fill-2,
.fill-3,
.fill-4,
.fill-5 {
  background: linear-gradient(90deg, var(--rust), var(--gold));
}

.btn-primary,
.nav-cta,
button[type="submit"],
.toast {
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(201,138,0,.23);
}

.btn-primary:hover,
.nav-cta:hover,
button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--gold2), #bd4d23);
}

.btn-outline {
  border-color: rgba(201,138,0,.35);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(201,138,0,.09);
  border-color: var(--gold);
}

.tagline-bar,
.services,
.testimonials,
footer {
  background: var(--navy2);
  border-color: var(--line);
}

.label-orange,
.label-blue,
.s-card,
.testi-card,
input,
textarea,
select {
  background: rgba(255,255,255,.9);
  border-color: var(--line);
  box-shadow: var(--lift);
}

.label-blue,
.ts-blue {
  color: var(--teal);
}

.s-card:hover,
.testi-card:hover {
  border-color: rgba(201,138,0,.34);
}

.icon-o {
  background: rgba(201,138,0,.12);
}

.icon-b {
  background: rgba(35,143,157,.1);
}

.icon-o svg {
  stroke: var(--gold);
}

.icon-b svg {
  stroke: var(--teal);
}

.pillar-bar-track {
  background: rgba(201,138,0,.14);
}

.pillar-bar-val {
  color: var(--white);
}

.testi-avatar {
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: #ffffff;
}

input,
textarea,
select {
  color: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: #96866e;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

select option {
  background: #ffffff;
}
