/* ============================
   FLYGOCOM BRAND COLORS
   Primary: #1A8AF3
   Font: Lucida Bright (headings) + Inter (body)
   ============================ */

:root {
  --brand: #1A8AF3;
  --brand-dark: #0F5FB8;
  --brand-darker: #0A3D75;
  --brand-light: #E8F3FE;
  --brand-glow: rgba(26, 138, 243, 0.15);
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #5a6472;
  --grey: #f5f8fc;
  --border: #e5e9f0;
  --radius: 12px;
  --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 760px; }

/* ============================
   NAV
   ============================ */

.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links a.btn-primary {
  color: var(--white);
}

.nav-links a.btn-primary:hover {
  color: var(--white);
}

/* ============================
   BUTTONS
   ============================ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--brand-dark);
}
.btn-white:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ============================
   HERO
   ============================ */

.hero {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  color: var(--white);
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
  display: inline-block;
}

.hero h1 {
  font-family: 'Lucida Bright', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================
   TRUST BAR (ACCREDITED & PARTNERED WITH)
   ============================ */

.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 0.3s;
}

.trust-logos:hover { opacity: 0.9; }

.trust-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* ============================
   SECTIONS
   ============================ */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--grey);
}

.section h2 {
  font-family: 'Lucida Bright', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section p strong {
  color: var(--brand-dark);
  font-weight: 600;
}

.clients-dark p {
  color: #ffffff;
}

/* ============================
   GRID
   ============================ */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ============================
   CARDS
   ============================ */

.card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--brand-glow);
  border-color: var(--brand);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Lucida Bright', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* ============================
   BENEFITS
   ============================ */

.benefit {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.benefit:hover {
  border-color: var(--brand);
}

.benefit span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit strong {
  display: block;
  font-family: 'Lucida Bright', Georgia, serif;
  color: var(--brand-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}

.benefit p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================
   METRICS
   ============================ */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.metric {
  background: var(--white);
  padding: 40px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.metric:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--brand-glow);
}

.metric-value {
  font-family: 'Lucida Bright', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================
   CLIENTS (BLUE GRADIENT)
   ============================ */

.clients-dark {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  position: relative;
  overflow: hidden;
}

.clients-dark::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.clients-dark .container {
  position: relative;
  z-index: 1;
}

.clients-dark h2 {
  color: var(--white);
}

.client-intro {
  text-align: center;
  max-width: 640px;
  margin: -20px auto 48px;
  color: #ffffff !important;
  font-size: 1rem;
}

.client-categories {
  display: grid;
  gap: 44px;
}

.client-category h3 {
  font-family: 'Lucida Bright', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-align: center;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.client {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  border-radius: var(--radius);
  font-family: 'Lucida Bright', Georgia, serif;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.95rem;
  line-height: 1.3;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: none;
}

.client:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  color: var(--brand);
}

/* ============================
   PROCESS
   ============================ */

.process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  min-width: 90px;
}

.step span {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
}

.arrow {
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================
   CTA SECTION
   ============================ */

.cta-section {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Lucida Bright', Georgia, serif;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* ============================
   FORM
   ============================ */

.contact-form {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.18);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info a:hover { color: var(--brand-light); }

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--brand-darker);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 56px;
  width: auto;
  display: block;
}

.footer-meta {
  text-align: right;
  line-height: 1.5;
}

.footer-company {
  font-family: 'Lucida Bright', Georgia, serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.footer-rc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 2px 0 0;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin: 6px 0 0;
}

@media (max-width: 768px) {
  .footer-meta {
    text-align: center;
  }
}

/* ============================
   MOBILE
   ============================ */

@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .logo-img { height: 44px; }
  .hero { padding: 60px 0 50px; }
  .hero-logo { height: 80px; }
  .section { padding: 60px 0; }
  .process { gap: 8px; }
  .arrow { display: none; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .contact-info { flex-direction: column; gap: 12px; align-items: center; }
}

/* ============================
   FORM SUCCESS MESSAGE
   ============================ */

.form-success {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.form-success h3 {
  font-family: 'Lucida Bright', Georgia, serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}