/* Tee Gold Construction — public site styles */

:root {
  --brand-navy: #0A1F44;
  --brand-lime: #8BC53F;
}

html { scroll-behavior: smooth; }

.site-header {
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.55) 70%, transparent 100%);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 31, 68, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.25);
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-lime);
  transition: width 0.25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.35rem;
  background: var(--brand-lime);
  color: #0B1220;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(139, 197, 63, 0.28);
}
.cta-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  border-radius: 0.35rem;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}

.hero-surface {
  position: relative;
  min-height: 100vh;
  background-color: var(--brand-navy);
  background-image:
    linear-gradient(105deg, rgba(10, 31, 68, 0.88) 0%, rgba(10, 31, 68, 0.55) 48%, rgba(10, 31, 68, 0.35) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.section-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-lime);
}

.service-card {
  border: 1px solid rgba(10, 31, 68, 0.08);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 197, 63, 0.45);
  box-shadow: 0 22px 50px rgba(10, 31, 68, 0.12);
}

.service-icon {
  display: inline-flex;
  height: 3.25rem;
  width: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(139, 197, 63, 0.12);
  color: var(--brand-navy);
}

.step-card {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--brand-lime);
  background: #fff;
}
.step-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  color: rgba(10, 31, 68, 0.1);
}

.project-tile {
  position: relative;
  overflow: hidden;
  background: #0B1220;
}
.project-tile img {
  transition: transform 0.7s ease;
}
.project-tile:hover img {
  transform: scale(1.06);
}
.project-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10, 31, 68, 0.9) 100%);
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 32s linear infinite;
}
.client-chip {
  white-space: nowrap;
  border: 1px solid rgba(10, 31, 68, 0.1);
  background: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(10, 31, 68, 0.12);
  background: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  border-color: var(--brand-lime);
  box-shadow: 0 0 0 3px rgba(139, 197, 63, 0.2);
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.btn-loading::after {
  content: '';
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  border: 2px solid rgba(11, 18, 32, 0.2);
  border-top-color: #0B1220;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast-root {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.toast {
  min-width: 260px;
  max-width: 360px;
  border-radius: 0.75rem;
  background: #0B1220;
  color: #fff;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  animation: toast-in 0.3s ease;
}
.toast.success { border-left: 4px solid var(--brand-lime); }
.toast.error { border-left: 4px solid #e25555; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.skeleton {
  background: linear-gradient(90deg, #e8edf2 25%, #f5f7fa 50%, #e8edf2 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 0.5rem;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}

.about-media {
  position: relative;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 2px solid var(--brand-lime);
  z-index: 0;
}
.about-media img {
  position: relative;
  z-index: 1;
}

.mobile-nav {
  background: rgba(10, 31, 68, 0.98);
}
