/* ═══════════════════════════════════════════
   THE EXPERT TEAM — Global Styles
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --yellow: #F5A623;
  --yellow-bright: #FFD000;
  --yellow-glow: #FFBF00;
  --yellow-dim: rgba(245,166,35,0.08);
  --black: #0A0A0A;
  --black-soft: #111111;
  --dark-gray: #1A1A1A;
  --mid-gray: #2A2A2A;
  --gray: #888;
  --light-gray: #bbb;
  --white: #FFFFFF;
  --nav-height: 80px;
}

/* ═══ SKIP TO CONTENT ═══ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ═══ FOCUS STYLES ═══ */
:focus-visible {
  outline: 3px solid var(--yellow-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow-bright);
  outline-offset: 3px;
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Background texture ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 0 12px rgba(245,166,35,0.25);
}
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-text .accent { color: var(--yellow-bright); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

.nav-cta {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em !important;
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--yellow-bright) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(245,166,35,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 16px; }
}

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 60px) 48px 80px;
  text-align: center;
}
.hero-content { max-width: 800px; }

.hero-logo {
  display: block;
  margin: 0 auto 28px;
  width: 140px; height: 140px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 0 40px rgba(245,166,35,0.25);
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50px;
  padding: 8px 24px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--yellow-bright);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
.hero-badge span {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 .accent {
  color: var(--yellow-bright);
  text-shadow: 0 0 60px rgba(255,208,0,0.2);
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--light-gray);
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ═══ BUTTONS ═══ */
.btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ═══ SECTIONS ═══ */
.section {
  position: relative; z-index: 1;
  padding: 100px 48px;
}
.section-dark { background: var(--black-soft); }
.section-darker { background: var(--black); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  margin: 20px auto 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ═══ SERVICES GRID ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(245,166,35,0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--yellow);
}
.service-card ul {
  list-style: none;
}
.service-card li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: '⚡';
  position: absolute; left: 0;
  font-size: 0.7rem;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: rgba(245,166,35,0.12);
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ═══ ABOUT ═══ */
.about-content {
  max-width: 780px;
  margin: 0 auto;
}
.about-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 28px 24px;
}
.value-card h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--yellow);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

/* ═══ CONTACT ═══ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 1.1rem;
}
.contact-item-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.contact-item-value a {
  color: var(--yellow);
  text-decoration: none;
}
.contact-item-value a:hover { text-decoration: underline; }

/* ═══ FORM ═══ */
.quote-form {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 40px 32px;
}
.quote-form h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark-gray); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ═══ FOOTER ═══ */
.footer {
  position: relative; z-index: 1;
  background: var(--black-soft);
  border-top: 1px solid rgba(245,166,35,0.08);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
}
.footer-brand img {
  width: 36px; height: 36px; object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--yellow); }

/* ═══ PAGE HEADER (for inner pages) ═══ */
.page-header {
  position: relative; z-index: 1;
  padding: calc(var(--nav-height) + 60px) 48px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,166,35,0.04) 0%, transparent 100%);
}
.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-header h1 .accent { color: var(--yellow-bright); }
.page-header p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.will-animate {
  opacity: 0;
  transform: translateY(20px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ MISC ═══ */
@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .hero { padding: calc(var(--nav-height) + 40px) 24px 60px; }
  .page-header { padding: calc(var(--nav-height) + 40px) 24px 40px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }

  /* Hide logo text on small screens so logo image + hamburger fit */
  .nav-logo-text { display: none; }

  /* Make hamburger lines more visible */
  .nav-hamburger span { background: var(--yellow); }
}
.footer-phone {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-phone a {
  color: var(--yellow-bright);
  text-decoration: none;
}
.footer-phone a:hover {
  text-decoration: underline;
}
